use tap_get_tms_path_len() instead of fix # of 7. Not tested if this builds, but at least we're looking at a build error instead of a runtime error.
git-svn-id: svn://svn.berlios.de/openocd/trunk@1833 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
@@ -161,8 +161,9 @@ void bitq_state_move(tap_state_t new_state)
|
||||
}
|
||||
|
||||
tms_scan = tap_get_tms_path(tap_get_state(), new_state);
|
||||
int tms_count = tap_get_tms_path_len(tap_get_state(), tap_get_end_state());
|
||||
|
||||
for (i = 0; i<7; i++)
|
||||
for (i = 0; i<tms_count; i++)
|
||||
{
|
||||
bitq_io(tms_scan & 1, 0, 0);
|
||||
tms_scan >>= 1;
|
||||
|
||||
Reference in New Issue
Block a user