]> sigrok.org Git - libsigrok.git/commitdiff
uni-t-ut32x: Accept SR_CONF_CONN, fixing scan.
authorBert Vermeulen <redacted>
Tue, 21 Mar 2017 19:45:46 +0000 (20:45 +0100)
committerBert Vermeulen <redacted>
Tue, 21 Mar 2017 19:45:46 +0000 (20:45 +0100)
src/hardware/uni-t-ut32x/api.c

index da53be9e6161afa10f1da758a711b76b3a8ad2a5..25f142b49d9da9a9ff60cacbf430c89c21b50c42 100644 (file)
 #include <string.h>
 #include "protocol.h"
 
+static const uint32_t scanopts[] = {
+       SR_CONF_CONN,
+};
+
 static const uint32_t devopts[] = {
        SR_CONF_THERMOMETER,
        SR_CONF_CONTINUOUS,
@@ -210,6 +214,10 @@ static int config_list(uint32_t key, GVariant **data, const struct sr_dev_inst *
        (void)cg;
 
        switch (key) {
+       case SR_CONF_SCAN_OPTIONS:
+               *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
+                               scanopts, ARRAY_SIZE(scanopts), sizeof(uint32_t));
+               break;
        case SR_CONF_DEVICE_OPTIONS:
                *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
                                devopts, ARRAY_SIZE(devopts), sizeof(uint32_t));