X-Git-Url: http://sigrok.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=decoders%2Fjtag%2Fpd.py;h=2bbe9a474886b00eee8c6f2da98bb9b2147e322a;hb=c5213e2632847750695bca0b3a97b5b03573435e;hp=16d0c4741eb5f0a1195624428d90fa3ea79e4371;hpb=4c180223a8ae12feb7bc3601e07e848fb9cdb493;p=libsigrokdecode.git diff --git a/decoders/jtag/pd.py b/decoders/jtag/pd.py index 16d0c47..2bbe9a4 100644 --- a/decoders/jtag/pd.py +++ b/decoders/jtag/pd.py @@ -62,7 +62,7 @@ class Decoder(srd.Decoder): license = 'gplv2+' inputs = ['logic'] outputs = ['jtag'] - tags = ['Logic', 'MCU Debugging', 'Bus'] + tags = ['Debug/trace'] channels = ( {'id': 'tdi', 'name': 'TDI', 'desc': 'Test data input'}, {'id': 'tdo', 'name': 'TDO', 'desc': 'Test data output'}, @@ -83,8 +83,8 @@ class Decoder(srd.Decoder): annotation_rows = ( ('bits-tdi', 'Bits (TDI)', (16,)), ('bits-tdo', 'Bits (TDO)', (17,)), - ('bitstrings-tdi', 'Bitstring (TDI)', (18,)), - ('bitstrings-tdo', 'Bitstring (TDO)', (19,)), + ('bitstrings-tdi', 'Bitstrings (TDI)', (18,)), + ('bitstrings-tdo', 'Bitstrings (TDO)', (19,)), ('states', 'States', tuple(range(15 + 1))), )