X-Git-Url: http://sigrok.org/gitweb/?a=blobdiff_plain;f=decoders%2Farm_tpiu%2Fpd.py;h=eac932fe9be7a8e7899d8c3da2af85408992ec74;hb=9dc13f0da80e72c6f2fc3a50aadbbd80d8b93f51;hp=cda3b093303a36b9280d068e9d1fa8701d502b59;hpb=4c180223a8ae12feb7bc3601e07e848fb9cdb493;p=libsigrokdecode.git diff --git a/decoders/arm_tpiu/pd.py b/decoders/arm_tpiu/pd.py index cda3b09..eac932f 100644 --- a/decoders/arm_tpiu/pd.py +++ b/decoders/arm_tpiu/pd.py @@ -28,7 +28,7 @@ class Decoder(srd.Decoder): license = 'gplv2+' inputs = ['uart'] outputs = ['uart'] # Emulate uart output so that arm_itm/arm_etm can stack. - tags = ['Logic', 'MCU Debugging'] + tags = ['Debug/trace'] options = ( {'id': 'stream', 'desc': 'Stream index', 'default': 1}, {'id': 'sync_offset', 'desc': 'Initial sync offset', 'default': 0}, @@ -38,8 +38,8 @@ class Decoder(srd.Decoder): ('data', 'Stream data'), ) annotation_rows = ( - ('stream', 'Current stream', (0,)), - ('data', 'Stream data', (1,)), + ('streams', 'Current streams', (0,)), + ('data-vals', 'Stream data', (1,)), ) def __init__(self):