diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2012-06-12 20:38:08 +0200 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2012-06-12 20:40:39 +0200 |
commit | 71077f34ffbd7d4015886a229edb2f2f827cb442 (patch) | |
tree | 010a5984f412f6ab76929ae8dcfc242aa8900b4f /decoders/jtag | |
parent | 74244cdae2309d444034fc7647171afab9dddf75 (diff) | |
download | libsigrokdecode-71077f34ffbd7d4015886a229edb2f2f827cb442.tar.gz libsigrokdecode-71077f34ffbd7d4015886a229edb2f2f827cb442.zip |
srd: Cosmetics.
Diffstat (limited to 'decoders/jtag')
-rw-r--r-- | decoders/jtag/__init__.py | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/decoders/jtag/__init__.py b/decoders/jtag/__init__.py index 79fc6c1..4a53502 100644 --- a/decoders/jtag/__init__.py +++ b/decoders/jtag/__init__.py @@ -33,16 +33,16 @@ JTAG packet: [<packet-type>, <data>] <packet-type> is one of: - - 'NEW STATE': <data> 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', - 'EXIT2-IR', 'UPDATE-IR'. - - 'IR TDI': Bitstring that was clocked into the IR register. - - 'IR TDO': Bitstring that was clocked out of the IR register. - - 'DR TDI': Bitstring that was clocked into the DR register. - - 'DR TDO': Bitstring that was clocked out of the DR register. - - ... + - 'NEW STATE': <data> 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', + 'EXIT2-IR', 'UPDATE-IR'. + - 'IR TDI': Bitstring that was clocked into the IR register. + - 'IR TDO': Bitstring that was clocked out of the IR register. + - 'DR TDI': Bitstring that was clocked into the DR register. + - 'DR TDO': Bitstring that was clocked out of the DR register. + - ... All bitstrings are a sequence of '1' and '0' characters. The right-most character in the bitstring is the LSB. Example: '01110001' (1 is LSB). |