diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2014-04-15 08:43:22 +0200 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2014-04-15 10:46:10 +0200 |
commit | bf69977d12886794ac597083403859ac99ab38ac (patch) | |
tree | fc89f22d320eab929873c33c35523e5be5a25d23 /decoders/jtag | |
parent | ce71bf0e29e9c3890eb74725ceb963ff35a29639 (diff) | |
download | libsigrokdecode-bf69977d12886794ac597083403859ac99ab38ac.tar.gz libsigrokdecode-bf69977d12886794ac597083403859ac99ab38ac.zip |
All PDs: More consistent OUTPUT_PYTHON format docs.
Diffstat (limited to 'decoders/jtag')
-rw-r--r-- | decoders/jtag/pd.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/decoders/jtag/pd.py b/decoders/jtag/pd.py index 95e5d28..25f2634 100644 --- a/decoders/jtag/pd.py +++ b/decoders/jtag/pd.py @@ -23,11 +23,11 @@ import sigrokdecode as srd ''' OUTPUT_PYTHON format: -JTAG packet: -[<packet-type>, <data>] +Packet: +[<ptype>, <pdata>] -<packet-type> is one of: - - 'NEW STATE': <data> is the new state of the JTAG state machine. +<ptype>: + - 'NEW STATE': <pdata> is the new state of the JTAG state machine. Valid values: 'TEST-LOGIC-RESET', 'RUN-TEST/IDLE', 'SELECT-DR-SCAN', 'CAPTURE-DR', 'SHIFT-DR', 'EXIT1-DR', 'PAUSE-DR', 'EXIT2-DR', 'UPDATE-DR', 'SELECT-IR-SCAN', 'CAPTURE-IR', 'SHIFT-IR', 'EXIT1-IR', 'PAUSE-IR', |