]> sigrok.org Git - libsigrokdecode.git/blobdiff - decoders/ad79x0/pd.py
ad79x0: Reduce unnecessarily many voltage formats.
[libsigrokdecode.git] / decoders / ad79x0 / pd.py
index 13a29723e7f0ffda362f62a521067a0e504e7ae6..d966ed947e9aa12e10531a84a95ddc265ae298f2 100644 (file)
@@ -25,7 +25,7 @@ modes = {
     2: ['Power Up Mode', 'Power Up', 'PU'],
 }
 
-input_voltage_format = ['%fV', '%fV', '%.6fV', '%.2fV']
+input_voltage_format = ['%.6fV', '%.2fV']
 
 validation = {
     'invalid': ['Invalid data', 'Invalid', 'N/A'],
@@ -42,7 +42,7 @@ class Decoder(srd.Decoder):
     license = 'gplv2+'
     inputs = ['spi']
     outputs = []
-    tags = ['Display']
+    tags = ['IC', 'Analog/digital']
     annotations = (
         ('mode', 'Mode'),
         ('voltage', 'Voltage'),