X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=decoders%2Fcec%2Fpd.py;h=84166eb0e94e002fd7e354e0cf4197a0e2f87a36;hb=HEAD;hp=da04997fa6ec556129e336220a0f7cc2325d0f02;hpb=4c180223a8ae12feb7bc3601e07e848fb9cdb493;p=libsigrokdecode.git diff --git a/decoders/cec/pd.py b/decoders/cec/pd.py index da04997..84166eb 100644 --- a/decoders/cec/pd.py +++ b/decoders/cec/pd.py @@ -55,8 +55,8 @@ class Decoder(srd.Decoder): desc = 'HDMI Consumer Electronics Control (CEC) protocol.' license = 'gplv2+' inputs = ['logic'] - outputs = ['cec'] - tags = ['Logic', 'Bus', 'Video'] + 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)),