]> sigrok.org Git - libsigrokdecode.git/blobdiff - decoders/edid/pd.py
Doxyfile: Set version to 0.4.0.
[libsigrokdecode.git] / decoders / edid / pd.py
index 7c5f19c4973002fe113f7736a68d1e8f1cfdf53b..b154de7e4e0ad82204afa32b4618646df69ec290 100644 (file)
@@ -85,6 +85,10 @@ class Decoder(srd.Decoder):
         ('fields', 'EDID structure fields'),
         ('sections', 'EDID structure sections'),
     )
+    annotation_rows = (
+        ('sections', 'Sections', (1,)),
+        ('fields', 'Fields', (0,)),
+    )
 
     def __init__(self, **kwargs):
         self.state = None
@@ -329,7 +333,7 @@ class Decoder(srd.Decoder):
                     modestr += est_modes[i] + ', '
         if modestr:
             self.ann_field(offset, offset+2,
-                           'Supported establised modes: %s' % modestr[:-2])
+                           'Supported established modes: %s' % modestr[:-2])
 
     def decode_std_timing(self, offset):
         modestr = ''