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.
This commit is contained in:
Mike Williams 2018-12-05 12:47:52 -05:00 committed by Uwe Hermann
parent 0bad836f95
commit 08e8c0e5bf
1 changed files with 6 additions and 0 deletions

View 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)