]> sigrok.org Git - libsigrokdecode.git/commitdiff
ltc242x: Use plural for annotation rows, avoid duplicates.
authorUwe Hermann <redacted>
Fri, 10 Apr 2020 20:13:15 +0000 (22:13 +0200)
committerUwe Hermann <redacted>
Sat, 11 Apr 2020 13:09:15 +0000 (15:09 +0200)
Since recent libsigrokdecode changes, annotation classes and rows must
not have overlapping IDs.

decoders/ltc242x/pd.py

index 9bb6cc35096ae17c5bf6264237d74a160aa9330a..dec8b29d1a578934a9b9c6956c14807e70056279 100644 (file)
@@ -37,8 +37,8 @@ class Decoder(srd.Decoder):
         ('input', 'Input voltage'),
     )
     annotation_rows = (
-        ('channel', 'Channel', (0,)),
-        ('input', 'Input voltage', (1,)),
+        ('channels', 'Channels', (0,)),
+        ('inputs', 'Input voltages', (1,)),
     )
     options = (
         {'id': 'vref', 'desc': 'Reference voltage (V)', 'default': 1.5},