diff options
author | Soeren Apel <soeren@apelpie.net> | 2018-12-28 11:41:41 +0100 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2019-03-13 19:22:52 +0100 |
commit | 4c180223a8ae12feb7bc3601e07e848fb9cdb493 (patch) | |
tree | e1102c76fa4ee2d5623b0a8cd17d069889350b94 /decoders/arm_tpiu | |
parent | 49d3e6f83c68e62138621f94bf5e22c9d7717fca (diff) | |
download | libsigrokdecode-4c180223a8ae12feb7bc3601e07e848fb9cdb493.tar.gz libsigrokdecode-4c180223a8ae12feb7bc3601e07e848fb9cdb493.zip |
Add PD tags handling and some tags
Diffstat (limited to 'decoders/arm_tpiu')
-rw-r--r-- | decoders/arm_tpiu/pd.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/decoders/arm_tpiu/pd.py b/decoders/arm_tpiu/pd.py index f50af65..cda3b09 100644 --- a/decoders/arm_tpiu/pd.py +++ b/decoders/arm_tpiu/pd.py @@ -28,6 +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'] options = ( {'id': 'stream', 'desc': 'Stream index', 'default': 1}, {'id': 'sync_offset', 'desc': 'Initial sync offset', 'default': 0}, |