X-Git-Url: http://sigrok.org/gitweb/?a=blobdiff_plain;f=decoders%2Fst7735%2Fpd.py;h=626d2eb16d2c4d3ca3ebe3ba6ecba989b9a399ba;hb=487b3d847da9a3a4d60366413447332d74f8ab6d;hp=999038a3a18b7178b8747a52d9f8e85460f08abb;hpb=ef10cea73bd05b44a213b76c6c4abb9b543cd46d;p=libsigrokdecode.git diff --git a/decoders/st7735/pd.py b/decoders/st7735/pd.py index 999038a..626d2eb 100644 --- a/decoders/st7735/pd.py +++ b/decoders/st7735/pd.py @@ -72,7 +72,8 @@ class Decoder(srd.Decoder): desc = 'Sitronix ST7735 TFT controller protocol.' license = 'gplv2+' inputs = ['logic'] - outputs = ['st7735'] + outputs = [] + tags = ['Display', 'IC'] channels = ( {'id': 'cs', 'name': 'CS#', 'desc': 'Chip-select'}, {'id': 'clk', 'name': 'CLK', 'desc': 'Clock'}, @@ -88,7 +89,7 @@ class Decoder(srd.Decoder): annotation_rows = ( ('bits', 'Bits', (Ann.BITS,)), ('fields', 'Fields', (Ann.CMD, Ann.DATA)), - ('description', 'Description', (Ann.DESC,)), + ('descriptions', 'Descriptions', (Ann.DESC,)), ) def __init__(self):