From: Uwe Hermann Date: Fri, 10 Apr 2020 23:37:19 +0000 (+0200) Subject: ltc26x7: Reduce unnecessarily many voltage formats. X-Git-Url: http://sigrok.org/gitweb/?a=commitdiff_plain;h=a430f3a9175c85faeb85cb45655a73503580fabf;p=libsigrokdecode.git ltc26x7: Reduce unnecessarily many voltage formats. --- diff --git a/decoders/ltc26x7/pd.py b/decoders/ltc26x7/pd.py index 7883ccc..4b023b0 100644 --- a/decoders/ltc26x7/pd.py +++ b/decoders/ltc26x7/pd.py @@ -39,7 +39,7 @@ addresses = { 0x0F: ['All DACs', 'All'], } -input_voltage_format = ['%fV', '%fV', '%.6fV', '%.2fV'] +input_voltage_format = ['%.6fV', '%.2fV'] class Decoder(srd.Decoder): api_version = 3