]> sigrok.org Git - libsigrokdecode.git/commitdiff
ltc242x: Reduce unnecessarily many voltage formats.
authorUwe Hermann <redacted>
Fri, 10 Apr 2020 20:27:11 +0000 (22:27 +0200)
committerUwe Hermann <redacted>
Sat, 11 Apr 2020 13:09:15 +0000 (15:09 +0200)
decoders/ltc242x/pd.py

index a1ef389d557cf4a9f455ab710bff606db0bfad8a..27ae5b99a23e82591c12cec78395b7f59b377fb8 100644 (file)
@@ -19,7 +19,7 @@
 
 import sigrokdecode as srd
 
-input_voltage_format = ['%fV', '%fV', '%.6fV', '%.2fV']
+input_voltage_format = ['%.6fV', '%.2fV']
 
 class Decoder(srd.Decoder):
     api_version = 3