X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=decoders%2Fcec%2Fpd.py;h=84166eb0e94e002fd7e354e0cf4197a0e2f87a36;hb=e144452bcdd5f2abbe6b6f3da41ad64f67e39def;hp=4b5ccee620a799dbfd69358b634dd8c8d5d593c1;hpb=d6d8a8a440ea2a81e6ddde33d16bc84d01cdb432;p=libsigrokdecode.git diff --git a/decoders/cec/pd.py b/decoders/cec/pd.py index 4b5ccee..84166eb 100644 --- a/decoders/cec/pd.py +++ b/decoders/cec/pd.py @@ -55,7 +55,7 @@ class Decoder(srd.Decoder): desc = 'HDMI Consumer Electronics Control (CEC) protocol.' license = 'gplv2+' inputs = ['logic'] - outputs = ['cec'] + outputs = [] tags = ['Display', 'PC'] channels = ( {'id': 'cec', 'name': 'CEC', 'desc': 'CEC bus data'}, @@ -66,11 +66,11 @@ class Decoder(srd.Decoder): ('eom-1', 'Message continued'), ('nack', 'ACK not set'), ('ack', 'ACK set'), - ('bits', 'Bits'), - ('bytes', 'Bytes'), - ('frames', 'Frames'), - ('sections', 'Sections'), - ('warnings', 'Warnings') + ('bit', 'Bit'), + ('byte', 'Byte'), + ('frame', 'Frame'), + ('section', 'Section'), + ('warning', 'Warning') ) annotation_rows = ( ('bits', 'Bits', (0, 1, 2, 3, 4, 5)),