From: Mike Williams Date: Wed, 5 Dec 2018 17:47:52 +0000 (-0500) Subject: scpi-dmm: add experimental Keysight 34465A support X-Git-Url: https://sigrok.org/gitweb/?a=commitdiff_plain;h=08e8c0e5bfe86ec951a7ba50e88e3bc09b856fad;p=libsigrok.git scpi-dmm: add experimental Keysight 34465A support Tested DC current, DC voltage, and resistance. Instrument gives an error only on first measurement but the output of the measurements is correct. --- diff --git a/src/hardware/scpi-dmm/api.c b/src/hardware/scpi-dmm/api.c index fcaa1e69..7bb134c6 100644 --- a/src/hardware/scpi-dmm/api.c +++ b/src/hardware/scpi-dmm/api.c @@ -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)