]> sigrok.org Git - libsigrok.git/commitdiff
scpi-dmm: add experimental Keysight 34465A support
authorMike Williams <redacted>
Wed, 5 Dec 2018 17:47:52 +0000 (12:47 -0500)
committerUwe Hermann <redacted>
Fri, 28 Dec 2018 12:10:05 +0000 (13:10 +0100)
Tested DC current, DC voltage, and resistance. Instrument gives an error
only on first measurement but the output of the measurements is correct.

src/hardware/scpi-dmm/api.c

index fcaa1e69bafcb9a6da335a7eb7cca425cf5eec38..7bb134c645cdd92f8f3b7bc94dd74f37ee30a498 100644 (file)
@@ -69,6 +69,12 @@ SR_PRIV const struct scpi_dmm_model models[] = {
                scpi_dmm_get_meas_agilent,
                ARRAY_AND_SIZE(devopts_generic),
        },
+       {
+               "Keysight", "34465A",
+               1, 5, cmdset_agilent, ARRAY_AND_SIZE(mqopts_agilent_34405a),
+               scpi_dmm_get_meas_agilent,
+               ARRAY_AND_SIZE(devopts_generic),
+       },
 };
 
 static const struct scpi_dmm_model *is_compatible(const char *vendor, const char *model)