From: Gerhard Sittig Date: Sun, 4 Nov 2018 00:38:42 +0000 (+0100) Subject: main: synchronize --get output for MQ with --show output X-Git-Url: http://sigrok.org/gitweb/?p=sigrok-cli.git;a=commitdiff_plain;h=0bdb08fd3d1b0b410cb1d33b90f531c35008bd4d main: synchronize --get output for MQ with --show output The --show output used to print human readable text for measured quantities, --get printed raw numbers for quantity and flags. Adjust main.c:get_option() to follow the show.c:show_dev_detail() model for consistency and usability. --- diff --git a/main.c b/main.c index 689c2d5..c038b6f 100644 --- a/main.c +++ b/main.c @@ -117,6 +117,10 @@ static void get_option(void) int ret; char *s; struct sr_dev_driver *driver; + const struct sr_key_info *srci, *srmqi, *srmqfi; + uint32_t mq; + uint64_t mask, mqflags; + unsigned int j; if (!(devices = device_scan())) { g_critical("No devices found."); @@ -143,9 +147,27 @@ static void get_option(void) if ((ret = maybe_config_get(driver, sdi, cg, ci->key, &gvar)) != SR_OK) g_critical("Failed to get '%s': %s", opt_get, sr_strerror(ret)); - s = g_variant_print(gvar, FALSE); - printf("%s\n", s); - g_free(s); + srci = sr_key_info_get(SR_KEY_CONFIG, ci->key); + if (srci && srci->datatype == SR_T_MQ) { + g_variant_get(gvar, "(ut)", &mq, &mqflags); + if ((srmqi = sr_key_info_get(SR_KEY_MQ, mq))) + printf("%s", srmqi->id); + else + printf("%d", mq); + for (j = 0, mask = 1; j < 32; j++, mask <<= 1) { + if (!(mqflags & mask)) + continue; + if ((srmqfi = sr_key_info_get(SR_KEY_MQFLAGS, mqflags & mask))) + printf("/%s", srmqfi->id); + else + printf("/%" PRIu64, mqflags & mask); + } + printf("\n"); + } else { + s = g_variant_print(gvar, FALSE); + printf("%s\n", s); + g_free(s); + } g_variant_unref(gvar); sr_dev_close(sdi);