Skip to content

Commit

Permalink
[scripts] Fix incorrect TR1 transition (#172)
Browse files Browse the repository at this point in the history
On TMS bit "1", the transition from UPDATE_IR should be to SELECT_DR_SCAN instead of SELECT_IR_SCAN
  • Loading branch information
bluez-sh authored Aug 25, 2020
1 parent 7cf7039 commit 72304ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion software/scripts/axiom_jtag.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ class JTag:
(RUN_TEST_IDLE, SELECT_DR_SCAN, SELECT_IR_SCAN,
TEST_LOGIC_RESET, TEST_LOGIC_RESET),
(CAPTURE_DR, EXIT_1_DR, UPDATE_DR, SELECT_DR_SCAN),
(CAPTURE_IR, EXIT_1_IR, UPDATE_IR, SELECT_IR_SCAN),
(CAPTURE_IR, EXIT_1_IR, UPDATE_IR, SELECT_DR_SCAN),
(SHIFT_DR, EXIT_1_DR), (SHIFT_IR, EXIT_1_IR),
(PAUSE_DR, EXIT_2_DR, UPDATE_DR),
(PAUSE_IR, EXIT_2_IR, UPDATE_IR) ]
Expand Down

0 comments on commit 72304ce

Please sign in to comment.