From: Bert Vermeulen Date: Sat, 19 May 2012 23:11:09 +0000 (+0200) Subject: hantek-dso: enable SR_HWCAP_COUPLING X-Git-Tag: dsupstream~936 X-Git-Url: https://sigrok.org/gitweb/?p=libsigrok.git;a=commitdiff_plain;h=4a090d722d7d3f2d1011fc5ff1c9a39c809f07bd hantek-dso: enable SR_HWCAP_COUPLING --- diff --git a/hardware/hantek-dso/api.c b/hardware/hantek-dso/api.c index 0f193113..4ab64ef6 100644 --- a/hardware/hantek-dso/api.c +++ b/hardware/hantek-dso/api.c @@ -50,6 +50,7 @@ static int capabilities[] = { SR_HWCAP_HORIZ_TRIGGERPOS, SR_HWCAP_FILTER, SR_HWCAP_VDIV, + SR_HWCAP_COUPLING, 0, }; @@ -391,6 +392,9 @@ static void *hw_get_device_info(int dev_index, int dev_info_id) case SR_DI_VDIVS: info = vdivs; break; + case SR_DI_COUPLING: + info = coupling; + break; /* TODO remove this */ case SR_DI_CUR_SAMPLERATE: info = &tmp; @@ -424,7 +428,7 @@ static int hw_dev_config_set(int dev_index, int hwcap, void *value) float tmp_float; uint64_t tmp_u64; int ret, i; - char *tmp_str, **targets; + char **targets; if (!(sdi = sr_dev_inst_get(dev_insts, dev_index))) return SR_ERR; @@ -479,10 +483,9 @@ static int hw_dev_config_set(int dev_index, int hwcap, void *value) ret = SR_ERR_ARG; break; case SR_HWCAP_TRIGGER_SOURCE: - tmp_str = value; for (i = 0; trigger_sources[i]; i++) { - if (!strcmp(tmp_str, trigger_sources[i])) { - ctx->triggersource = g_strdup(tmp_str); + if (!strcmp(value, trigger_sources[i])) { + ctx->triggersource = g_strdup(value); break; } } @@ -525,9 +528,8 @@ static int hw_dev_config_set(int dev_index, int hwcap, void *value) break; case SR_HWCAP_COUPLING: /* TODO not supporting coupling per channel yet */ - tmp_str = value; for (i = 0; coupling[i]; i++) { - if (!strcmp(tmp_str, coupling[i])) { + if (!strcmp(value, coupling[i])) { ctx->coupling_ch1 = i; ctx->coupling_ch2 = i; break;