From e3c852854f9b7eea8276328cd611f44821a8db23 Mon Sep 17 00:00:00 2001 From: Gerhard Sittig Date: Thu, 20 May 2021 23:11:56 +0200 Subject: [PATCH] scpi-dmm: Keysight 34465A is a 6.5 digit meter, bump digits count Increase the default digit count in the 34465A model description. Though most measurements get the precision from the current reading, this data is used as a fallback when the response won't provide the detail. --- src/hardware/scpi-dmm/api.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hardware/scpi-dmm/api.c b/src/hardware/scpi-dmm/api.c index 7bd1db94..6fb4090f 100644 --- a/src/hardware/scpi-dmm/api.c +++ b/src/hardware/scpi-dmm/api.c @@ -238,7 +238,7 @@ SR_PRIV const struct scpi_dmm_model models[] = { }, { "Keysight", "34465A", - 1, 5, cmdset_agilent, ARRAY_AND_SIZE(mqopts_agilent_34405a), + 1, 6, cmdset_agilent, ARRAY_AND_SIZE(mqopts_agilent_34405a), scpi_dmm_get_meas_agilent, ARRAY_AND_SIZE(devopts_generic), 0, 0, FALSE, -- 2.30.2