]> sigrok.org Git - libsigrokdecode.git/commitdiff
ltc26x7: Reduce unnecessarily many voltage formats.
authorUwe Hermann <redacted>
Fri, 10 Apr 2020 23:37:19 +0000 (01:37 +0200)
committerUwe Hermann <redacted>
Sat, 11 Apr 2020 12:51:57 +0000 (14:51 +0200)
decoders/ltc26x7/pd.py

index 7883ccc1c2bcd8e41eea785683605434a69319de..4b023b082f452eb08fa43311774627686425b934 100644 (file)
@@ -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