diff options
Diffstat (limited to 'decoders/edid')
-rw-r--r-- | decoders/edid/edid.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/decoders/edid/edid.py b/decoders/edid/edid.py index b4b5f84..c11d41a 100644 --- a/decoders/edid/edid.py +++ b/decoders/edid/edid.py @@ -101,6 +101,9 @@ class Decoder(srd.Decoder): def start(self, metadata): self.out_ann = self.add(srd.OUTPUT_ANN, 'edid') + def report(self): + pass + def decode(self, ss, es, data): if type(data) != int: raise Exception('malformed ddc2 input: expected 1 byte') |