gwinstek-gds-800: Allow retrieving frame limit

This commit is contained in:
Valentin Ochs 2020-06-27 22:44:04 +02:00
parent 025bd56f10
commit 7c48d434f0
1 changed files with 4 additions and 1 deletions

View File

@ -30,7 +30,7 @@ static const uint32_t drvopts[] = {
};
static const uint32_t devopts[] = {
SR_CONF_LIMIT_FRAMES | SR_CONF_SET,
SR_CONF_LIMIT_FRAMES | SR_CONF_GET | SR_CONF_SET,
SR_CONF_SAMPLERATE | SR_CONF_GET,
};
@ -132,6 +132,9 @@ static int config_get(uint32_t key, GVariant **data,
case SR_CONF_SAMPLERATE:
*data = g_variant_new_uint64(devc->sample_rate);
break;
case SR_CONF_LIMIT_FRAMES:
*data = g_variant_new_uint64(devc->frame_limit);
break;
default:
return SR_ERR_NA;
}