rohde-schwarz-sme-0x: Add support for SR_CONF_SIGNAL_GENERATOR.

This commit is contained in:
Uwe Hermann 2017-03-02 14:38:19 +01:00
parent 6928c4a928
commit 0d9841ddd6
1 changed files with 11 additions and 0 deletions

View File

@ -71,6 +71,10 @@ static const uint32_t scanopts[] = {
SR_CONF_SERIALCOMM,
};
static const uint32_t drvopts[] = {
SR_CONF_SIGNAL_GENERATOR,
};
static const uint32_t devopts[] = {
SR_CONF_OUTPUT_FREQUENCY | SR_CONF_GET | SR_CONF_SET | SR_CONF_LIST,
SR_CONF_AMPLITUDE | SR_CONF_GET | SR_CONF_SET | SR_CONF_LIST,
@ -240,6 +244,13 @@ static int config_list(uint32_t key, GVariant **data,
(void)sdi;
(void)cg;
/* Return drvopts without sdi (and devopts with sdi, see below). */
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;
}
switch (key) {
case SR_CONF_SCAN_OPTIONS:
*data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,