]> sigrok.org Git - libsigrok.git/commitdiff
hp-3478a: Only match when conn= is given to avoid false probe positives.
authorFrank Stettner <redacted>
Mon, 24 May 2021 10:56:52 +0000 (12:56 +0200)
committerGerhard Sittig <redacted>
Wed, 30 Jun 2021 18:34:21 +0000 (20:34 +0200)
The HP 3478A device would not reliably identify by means of SCPI queries. The
previous scan() implementation would have matched any connected SCPI device,
then upset these devices by emitting non-SCPI requests.

Tighten the scope of the hp-3478a probe, only scan for devices when a conn=
spec was provided. This avoids false positives and malfunction of other
devices, and still lets users address the problematic device. This is similar
to serial-dmm and unspecific cables and has proven to work there.

src/hardware/hp-3478a/api.c

index f9419a6e09ced36fb7625a24990b2a50ae4387e4..1fd3ff203ad7a872fa451a7361fc1485d277a019 100644 (file)
@@ -129,6 +129,14 @@ static struct sr_dev_inst *probe_device(struct sr_scpi_dev_inst *scpi)
        struct sr_dev_inst *sdi;
        struct dev_context *devc;
 
+       /*
+        * The device cannot get identified by means of SCPI queries.
+        * Neither shall non-SCPI requests get emitted before reliable
+        * identification of the device. Assume that we only get here
+        * when user specs led us to believe it's safe to communicate
+        * to the expected kind of device.
+        */
+
        sdi = g_malloc0(sizeof(struct sr_dev_inst));
        sdi->vendor = g_strdup("Hewlett-Packard");
        sdi->model = g_strdup("3478A");
@@ -152,6 +160,14 @@ static struct sr_dev_inst *probe_device(struct sr_scpi_dev_inst *scpi)
 
 static GSList *scan(struct sr_dev_driver *di, GSList *options)
 {
+       const char *conn;
+
+       /* Only scan for a device when conn= was specified. */
+       conn = NULL;
+       (void)sr_serial_extract_options(options, &conn, NULL);
+       if (!conn)
+               return NULL;
+
        return sr_scpi_scan(di->context, options, probe_device);
 }