X-Git-Url: http://sigrok.org/gitweb/?a=blobdiff_plain;f=src%2Fscpi%2Fscpi.c;h=ce3cb99d2362be792549d8e1970a76ebb1b35f57;hb=4fb0a5f8a022b4b551f0dcac5c458c7108ea613c;hp=645062152622682d77c095de1d90da496caa3be3;hpb=9092e66888ffd9dad76f4c491f5ad080cfd3e5c9;p=libsigrok.git diff --git a/src/scpi/scpi.c b/src/scpi/scpi.c index 64506215..ce3cb99d 100644 --- a/src/scpi/scpi.c +++ b/src/scpi/scpi.c @@ -148,8 +148,10 @@ SR_PRIV GSList *sr_scpi_scan(struct drv_context *drvc, GSList *options, for (l = resources; l; l = l->next) { res = g_strsplit(l->data, ":", 2); if (res[0] && (sdi = sr_scpi_scan_resource(drvc, res[0], - serialcomm ? serialcomm : res[1], probe_device))) + serialcomm ? serialcomm : res[1], probe_device))) { devices = g_slist_append(devices, sdi); + sdi->connection_id = g_strdup(l->data); + } g_strfreev(res); } g_slist_free_full(resources, g_free); @@ -381,7 +383,7 @@ SR_PRIV int sr_scpi_get_string(struct sr_scpi_dev_inst *scpi, char buf[256]; int len; GString *response; - gint64 start; + gint64 laststart; unsigned int elapsed_ms; if (command) @@ -391,7 +393,7 @@ SR_PRIV int sr_scpi_get_string(struct sr_scpi_dev_inst *scpi, if (sr_scpi_read_begin(scpi) != SR_OK) return SR_ERR; - start = g_get_monotonic_time(); + laststart = g_get_monotonic_time(); response = g_string_new(""); @@ -400,13 +402,15 @@ SR_PRIV int sr_scpi_get_string(struct sr_scpi_dev_inst *scpi, while (!sr_scpi_read_complete(scpi)) { len = sr_scpi_read_data(scpi, buf, sizeof(buf)); if (len < 0) { + sr_err("Incompletely read SCPI response."); g_string_free(response, TRUE); return SR_ERR; + } else if (len > 0) { + laststart = g_get_monotonic_time(); } g_string_append_len(response, buf, len); - elapsed_ms = (g_get_monotonic_time() - start) / 1000; - if (elapsed_ms >= scpi->read_timeout_ms) - { + elapsed_ms = (g_get_monotonic_time() - laststart) / 1000; + if (elapsed_ms >= scpi->read_timeout_ms) { sr_err("Timed out waiting for SCPI response."); g_string_free(response, TRUE); return SR_ERR; @@ -424,7 +428,7 @@ SR_PRIV int sr_scpi_get_string(struct sr_scpi_dev_inst *scpi, *scpi_response = response->str; g_string_free(response, FALSE); - sr_spew("Got response: '%.70s'.", *scpi_response); + sr_spew("Got response: '%.70s', length %d.", *scpi_response, strlen(*scpi_response)); return SR_OK; } @@ -740,12 +744,7 @@ SR_PRIV int sr_scpi_get_hw_id(struct sr_scpi_dev_inst *scpi, } g_free(response); - hw_info = g_try_malloc(sizeof(struct sr_scpi_hw_info)); - if (!hw_info) { - g_strfreev(tokens); - return SR_ERR_MALLOC; - } - + hw_info = g_malloc0(sizeof(struct sr_scpi_hw_info)); hw_info->manufacturer = g_strdup(tokens[0]); hw_info->model = g_strdup(tokens[1]); hw_info->serial_number = g_strdup(tokens[2]);