]> sigrok.org Git - libsigrokdecode.git/blobdiff - decoders/max7219/pd.py
All PDs: Consistently use singular/plural for annotation classes/rows.
[libsigrokdecode.git] / decoders / max7219 / pd.py
index 7484034a75ecac2f20c820d0757d99237af83d05..eb26e10511e0a2b43cd8596243b85637fe0f24c2 100644 (file)
@@ -48,12 +48,12 @@ class Decoder(srd.Decoder):
     desc = 'Maxim MAX72xx series 8-digit LED display driver.'
     license = 'gplv2+'
     inputs = ['spi']
-    outputs = ['max7219']
+    outputs = []
     tags = ['Display']
     annotations = (
-        ('register', 'Registers written to the device'),
-        ('digit', 'Digits displayed on the device'),
-        ('warnings', 'Human-readable warnings'),
+        ('register', 'Register write'),
+        ('digit', 'Digit displayed'),
+        ('warning', 'Warning'),
     )
     annotation_rows = (
         ('commands', 'Commands', (ann_reg, ann_digit)),