dreamsourcelab-dslogic: config_list: Handle SR_CONF_TRIGGER_MATCH.
This fixes bug #1032.
This commit is contained in:
parent
7bf81cb7a9
commit
bc98407b8f
|
@ -67,6 +67,14 @@ static const uint32_t devopts[] = {
|
||||||
SR_CONF_CLOCK_EDGE | SR_CONF_GET | SR_CONF_SET | SR_CONF_LIST,
|
SR_CONF_CLOCK_EDGE | SR_CONF_GET | SR_CONF_SET | SR_CONF_LIST,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static const int32_t trigger_matches[] = {
|
||||||
|
SR_TRIGGER_ZERO,
|
||||||
|
SR_TRIGGER_ONE,
|
||||||
|
SR_TRIGGER_RISING,
|
||||||
|
SR_TRIGGER_FALLING,
|
||||||
|
SR_TRIGGER_EDGE,
|
||||||
|
};
|
||||||
|
|
||||||
static const char *signal_edges[] = {
|
static const char *signal_edges[] = {
|
||||||
[DS_EDGE_RISING] = "rising",
|
[DS_EDGE_RISING] = "rising",
|
||||||
[DS_EDGE_FALLING] = "falling",
|
[DS_EDGE_FALLING] = "falling",
|
||||||
|
@ -514,6 +522,9 @@ static int config_list(uint32_t key, GVariant **data,
|
||||||
case SR_CONF_SAMPLERATE:
|
case SR_CONF_SAMPLERATE:
|
||||||
*data = std_gvar_samplerates(devc->samplerates, devc->num_samplerates);
|
*data = std_gvar_samplerates(devc->samplerates, devc->num_samplerates);
|
||||||
break;
|
break;
|
||||||
|
case SR_CONF_TRIGGER_MATCH:
|
||||||
|
*data = std_gvar_array_i32(ARRAY_AND_SIZE(trigger_matches));
|
||||||
|
break;
|
||||||
case SR_CONF_CLOCK_EDGE:
|
case SR_CONF_CLOCK_EDGE:
|
||||||
*data = g_variant_new_strv(ARRAY_AND_SIZE(signal_edges));
|
*data = g_variant_new_strv(ARRAY_AND_SIZE(signal_edges));
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in New Issue