lecroy-xstream: Fix capabilities listing in config_list()

This fixes bug #913.
This commit is contained in:
Soeren Apel 2017-02-26 21:01:26 +01:00 committed by Uwe Hermann
parent 9a17c23bc9
commit 90230cfa7f
3 changed files with 45 additions and 40 deletions

View File

@ -32,6 +32,26 @@ static const uint32_t scanopts[] = {
SR_CONF_CONN, SR_CONF_CONN,
}; };
static const uint32_t drvopts[] = {
SR_CONF_OSCILLOSCOPE,
};
static const uint32_t devopts[] = {
SR_CONF_LIMIT_FRAMES | SR_CONF_GET | SR_CONF_SET,
SR_CONF_TRIGGER_SOURCE | SR_CONF_GET | SR_CONF_SET | SR_CONF_LIST,
SR_CONF_TIMEBASE | SR_CONF_GET | SR_CONF_SET | SR_CONF_LIST,
SR_CONF_NUM_HDIV | SR_CONF_GET,
SR_CONF_TRIGGER_SLOPE | SR_CONF_GET | SR_CONF_SET | SR_CONF_LIST,
SR_CONF_HORIZ_TRIGGERPOS | SR_CONF_GET | SR_CONF_SET,
SR_CONF_SAMPLERATE | SR_CONF_GET,
};
static const uint32_t analog_devopts[] = {
SR_CONF_NUM_VDIV | SR_CONF_GET,
SR_CONF_COUPLING | SR_CONF_GET | SR_CONF_SET | SR_CONF_LIST,
SR_CONF_VDIV | SR_CONF_GET | SR_CONF_SET | SR_CONF_LIST,
};
static int check_manufacturer(const char *manufacturer) static int check_manufacturer(const char *manufacturer)
{ {
unsigned int i; unsigned int i;
@ -402,24 +422,38 @@ static int config_list(uint32_t key, GVariant **data,
(void)cg; (void)cg;
if (sdi) { /* SR_CONF_SCAN_OPTIONS is always valid, regardless of sdi or channel group. */
devc = sdi->priv; if (key == SR_CONF_SCAN_OPTIONS) {
model = devc->model_config;
}
switch (key) {
case SR_CONF_SCAN_OPTIONS:
*data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32, *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
scanopts, ARRAY_SIZE(scanopts), sizeof(uint32_t)); scanopts, ARRAY_SIZE(scanopts), sizeof(uint32_t));
break; return SR_OK;
}
/* If sdi is NULL, nothing except SR_CONF_DEVICE_OPTIONS can be provided. */
if (key == SR_CONF_DEVICE_OPTIONS && !sdi) {
*data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
drvopts, ARRAY_SIZE(drvopts), sizeof(uint32_t));
return SR_OK;
}
/* Every other option requires a valid device instance. */
if (!sdi)
return SR_ERR_ARG;
devc = sdi->priv;
model = devc->model_config;
switch (key) {
case SR_CONF_DEVICE_OPTIONS: case SR_CONF_DEVICE_OPTIONS:
if (!cg) { if (!cg) {
/* If cg is NULL, only the SR_CONF_DEVICE_OPTIONS that are not
* specific to a channel group must be returned. */
*data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32, *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
model->devopts, model->num_devopts, sizeof(uint32_t)); devopts, ARRAY_SIZE(devopts), sizeof(uint32_t));
break; return SR_OK;
} }
*data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32, *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
model->analog_devopts, model->num_analog_devopts, analog_devopts, ARRAY_SIZE(analog_devopts),
sizeof(uint32_t)); sizeof(uint32_t));
break; break;
case SR_CONF_COUPLING: case SR_CONF_COUPLING:

View File

@ -74,23 +74,6 @@ struct lecroy_wavedesc {
}; };
} __attribute__((packed)); } __attribute__((packed));
static const uint32_t devopts[] = {
SR_CONF_OSCILLOSCOPE,
SR_CONF_LIMIT_FRAMES | SR_CONF_GET | SR_CONF_SET,
SR_CONF_TRIGGER_SOURCE | SR_CONF_GET | SR_CONF_SET | SR_CONF_LIST,
SR_CONF_TIMEBASE | SR_CONF_GET | SR_CONF_SET | SR_CONF_LIST,
SR_CONF_NUM_HDIV | SR_CONF_GET,
SR_CONF_TRIGGER_SLOPE | SR_CONF_GET | SR_CONF_SET | SR_CONF_LIST,
SR_CONF_HORIZ_TRIGGERPOS | SR_CONF_GET | SR_CONF_SET,
SR_CONF_SAMPLERATE | SR_CONF_GET,
};
static const uint32_t analog_devopts[] = {
SR_CONF_NUM_VDIV | SR_CONF_GET,
SR_CONF_COUPLING | SR_CONF_GET | SR_CONF_SET | SR_CONF_LIST,
SR_CONF_VDIV | SR_CONF_GET | SR_CONF_SET | SR_CONF_LIST,
};
static const char *coupling_options[] = { static const char *coupling_options[] = {
"A1M", // AC with 1 MOhm termination "A1M", // AC with 1 MOhm termination
"D50", // DC with 50 Ohm termination "D50", // DC with 50 Ohm termination
@ -200,12 +183,6 @@ static const struct scope_config scope_models[] = {
.analog_channels = 4, .analog_channels = 4,
.analog_names = &scope_analog_channel_names, .analog_names = &scope_analog_channel_names,
.devopts = &devopts,
.num_devopts = ARRAY_SIZE(devopts),
.analog_devopts = &analog_devopts,
.num_analog_devopts = ARRAY_SIZE(analog_devopts),
.coupling_options = &coupling_options, .coupling_options = &coupling_options,
.trigger_sources = &trigger_sources, .trigger_sources = &trigger_sources,
.trigger_slopes = &scope_trigger_slopes, .trigger_slopes = &scope_trigger_slopes,

View File

@ -38,12 +38,6 @@ struct scope_config {
const char *(*analog_names)[]; const char *(*analog_names)[];
const uint32_t (*devopts)[];
const uint8_t num_devopts;
const uint32_t (*analog_devopts)[];
const uint8_t num_analog_devopts;
const char *(*coupling_options)[]; const char *(*coupling_options)[];
const uint8_t num_coupling_options; const uint8_t num_coupling_options;