diff options
author | Bert Vermeulen <bert@biot.com> | 2014-12-16 14:51:47 +0100 |
---|---|---|
committer | Bert Vermeulen <bert@biot.com> | 2014-12-16 14:51:47 +0100 |
commit | be42cffca100c00d0d5510b08dcb66655f8a5746 (patch) | |
tree | e45d38f9b900d40b77b99d056160ddf4dc579334 /decoders | |
parent | 2ef800662842775738659e72ade594713cfb849b (diff) | |
download | libsigrokdecode-be42cffca100c00d0d5510b08dcb66655f8a5746.tar.gz libsigrokdecode-be42cffca100c00d0d5510b08dcb66655f8a5746.zip |
edid: Add annotation rows.
Diffstat (limited to 'decoders')
-rw-r--r-- | decoders/edid/pd.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/decoders/edid/pd.py b/decoders/edid/pd.py index 7c5f19c..3c1ede2 100644 --- a/decoders/edid/pd.py +++ b/decoders/edid/pd.py @@ -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 |