Mercurial > avr_jtag
annotate py_avrjtag/tms_ptns.py @ 12:68ecd42850d3
Start shifting when TAP transiting from CAP to SHIFT states.
- It assumes last bit is shifted when transiting from SHIFT states to
EXIT1.
author | Thinker K.F. Li <thinker@branda.to> |
---|---|
date | Tue, 24 Feb 2009 18:53:16 +0800 |
parents | cc106f278d7d |
children | 1ea479d26fce |
rev | line source |
---|---|
10
cc106f278d7d
Get identify of components
Thinker K.F. Li <thinker@branda.to>
parents:
6
diff
changeset
|
1 TMS_IDLE_SEQ = ('\x1f', 6) |
cc106f278d7d
Get identify of components
Thinker K.F. Li <thinker@branda.to>
parents:
6
diff
changeset
|
2 TMS_RESET_SEQ = ('\x1f', 5) |
cc106f278d7d
Get identify of components
Thinker K.F. Li <thinker@branda.to>
parents:
6
diff
changeset
|
3 TMS_RESET_2_IDLE = ('\x00', 1) |
cc106f278d7d
Get identify of components
Thinker K.F. Li <thinker@branda.to>
parents:
6
diff
changeset
|
4 |
cc106f278d7d
Get identify of components
Thinker K.F. Li <thinker@branda.to>
parents:
6
diff
changeset
|
5 TMS_CAP_DR = ('\x01', 2) |
cc106f278d7d
Get identify of components
Thinker K.F. Li <thinker@branda.to>
parents:
6
diff
changeset
|
6 TMS_CAP_IR = ('\x03', 3) |
cc106f278d7d
Get identify of components
Thinker K.F. Li <thinker@branda.to>
parents:
6
diff
changeset
|
7 TMS_SHIFT_2_IDLE = ('\x03', 3) |
6
42dec3428c77
Define TMS transition patterns
Thinker K.F. Li <thinker@branda.to>
parents:
diff
changeset
|
8 TMS_SHIFT_DR_2_IDLE = TMS_SHIFT_2_IDLE |
42dec3428c77
Define TMS transition patterns
Thinker K.F. Li <thinker@branda.to>
parents:
diff
changeset
|
9 TMS_SHIFT_IR_2_IDLE = TMS_SHIFT_2_IDLE |
10
cc106f278d7d
Get identify of components
Thinker K.F. Li <thinker@branda.to>
parents:
6
diff
changeset
|
10 TMS_SHIFT_DR_2_CAP_IR = ('\x0f', 5) |
cc106f278d7d
Get identify of components
Thinker K.F. Li <thinker@branda.to>
parents:
6
diff
changeset
|
11 TMS_SHIFT_IR_2_CAP_DR = ('\x07', 4) |
6
42dec3428c77
Define TMS transition patterns
Thinker K.F. Li <thinker@branda.to>
parents:
diff
changeset
|
12 |
10
cc106f278d7d
Get identify of components
Thinker K.F. Li <thinker@branda.to>
parents:
6
diff
changeset
|
13 TMS_SHIFT_DR = ('\x01', 3) |
cc106f278d7d
Get identify of components
Thinker K.F. Li <thinker@branda.to>
parents:
6
diff
changeset
|
14 TMS_SHIFT_IR = ('\x03', 4) |
cc106f278d7d
Get identify of components
Thinker K.F. Li <thinker@branda.to>
parents:
6
diff
changeset
|
15 TMS_EXIT1_2_IDLE = ('\x01', 2) |
cc106f278d7d
Get identify of components
Thinker K.F. Li <thinker@branda.to>
parents:
6
diff
changeset
|
16 TMS_EXIT1_DR_2_IDLE = TMS_EXIT1_2_IDLE |
cc106f278d7d
Get identify of components
Thinker K.F. Li <thinker@branda.to>
parents:
6
diff
changeset
|
17 TMS_EXIT1_IR_2_IDLE = TMS_EXIT1_2_IDLE |
cc106f278d7d
Get identify of components
Thinker K.F. Li <thinker@branda.to>
parents:
6
diff
changeset
|
18 TMS_EXIT1_2_PAUSE = ('\x00', 1) |
cc106f278d7d
Get identify of components
Thinker K.F. Li <thinker@branda.to>
parents:
6
diff
changeset
|
19 TMS_EXIT1_DR_2_PAUSE = TMS_EXIT1_2_PAUSE |
cc106f278d7d
Get identify of components
Thinker K.F. Li <thinker@branda.to>
parents:
6
diff
changeset
|
20 TMS_EXIT1_IR_2_PAUSE = TMS_EXIT1_2_PAUSE |
cc106f278d7d
Get identify of components
Thinker K.F. Li <thinker@branda.to>
parents:
6
diff
changeset
|
21 TMS_EXIT1_IR_2_SHIFT_DR = ('\x03', 3) |
cc106f278d7d
Get identify of components
Thinker K.F. Li <thinker@branda.to>
parents:
6
diff
changeset
|
22 TMS_EXIT1_DR_2_SHIFT_IR = ('\x07', 4) |