From: Bert Vermeulen Date: Tue, 21 Mar 2017 19:45:46 +0000 (+0100) Subject: uni-t-ut32x: Accept SR_CONF_CONN, fixing scan. X-Git-Tag: libsigrok-0.5.0~83 X-Git-Url: https://sigrok.org/gitweb/?a=commitdiff_plain;h=40bbf635fadac32d1e702f02fe571d95338d582b;hp=df3e608a20620836ecad6d8d4dc6c0b27b1658a8;p=libsigrok.git uni-t-ut32x: Accept SR_CONF_CONN, fixing scan. --- diff --git a/src/hardware/uni-t-ut32x/api.c b/src/hardware/uni-t-ut32x/api.c index da53be9e..25f142b4 100644 --- a/src/hardware/uni-t-ut32x/api.c +++ b/src/hardware/uni-t-ut32x/api.c @@ -21,6 +21,10 @@ #include #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));