X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=decoders%2Fedid%2Fedid.py;h=835f300dc39cc6ac5664de708d9ebf0a4339ea9b;hb=080243a8224c8453c4993ad22f5bdc63e1dba2de;hp=b4b5f844698b581d8e0c72de44b2c43d046d4995;hpb=09059016e02db5d83b4862a3adcf8ddf101f6991;p=libsigrokdecode.git diff --git a/decoders/edid/edid.py b/decoders/edid/edid.py index b4b5f84..835f300 100644 --- a/decoders/edid/edid.py +++ b/decoders/edid/edid.py @@ -79,7 +79,7 @@ class Decoder(srd.Decoder): id = 'edid' name = 'EDID' longname = 'Extended display identification data' - desc = 'A data structure describing the capabilities of a display device.' + desc = 'Data structure describing display device capabilities.' license = 'gplv3+' inputs = ['ddc2'] outputs = ['edid'] @@ -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')