diff py_avrjtag/tms_ptns.py @ 13:1ea479d26fce tip

Make sure shifting phase and add bypass.py. - shifting phase is started after entering SHIFT state Transition from CAP to SHIFT does not induce shifting. - shifting phase is stoped after leaving SHIFT state. Transition from SHIFT to EXIT1 also induce a bit of shifting.
author Thinker K.F. Li <thinker@branda.to>
date Wed, 25 Feb 2009 20:08:29 +0800
parents cc106f278d7d
children
line wrap: on
line diff
--- a/py_avrjtag/tms_ptns.py	Tue Feb 24 18:53:16 2009 +0800
+++ b/py_avrjtag/tms_ptns.py	Wed Feb 25 20:08:29 2009 +0800
@@ -18,5 +18,13 @@
 TMS_EXIT1_2_PAUSE = ('\x00', 1)
 TMS_EXIT1_DR_2_PAUSE = TMS_EXIT1_2_PAUSE
 TMS_EXIT1_IR_2_PAUSE = TMS_EXIT1_2_PAUSE
-TMS_EXIT1_IR_2_SHIFT_DR = ('\x03', 3)
-TMS_EXIT1_DR_2_SHIFT_IR = ('\x07', 4)
+TMS_EXIT1_IR_2_SHIFT_DR = ('\x03', 4)
+TMS_EXIT1_DR_2_SHIFT_IR = ('\x07', 5)
+TMS_EXIT1_2_EXIT2 = ('\x02', 2)
+TMS_EXIT1_DR_2_EXIT2_DR = TMS_EXIT1_2_EXIT2
+TMS_EXIT1_IR_2_EXIT2_IR = TMS_EXIT1_2_EXIT2
+TMS_EXIT1_2_SHIFT = ('\x02', 3)
+TMS_EXIT1_DR_2_SHIFT_DR = TMS_EXIT1_2_SHIFT
+TMS_EXIT1_IR_2_SHIFT_IR = TMS_EXIT1_2_SHIFT
+TMS_EXIT1_DR_2_CAP_IR = ('\x07', 4)
+TMS_EXIT1_IR_2_CAP_DR = ('\x03', 3)