diff options
author | oharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2009-09-11 18:34:15 +0000 |
---|---|---|
committer | oharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2009-09-11 18:34:15 +0000 |
commit | 4f7761828c91108d4bf4a12e78f23b6483b18ade (patch) | |
tree | f6217430dfd24eb56d033fc1196e031e13cd201a /src/flash | |
parent | ec3015db1ab822e1245a00ce4884ef67dea6137f (diff) | |
download | openocd+libswd-4f7761828c91108d4bf4a12e78f23b6483b18ade.tar.gz openocd+libswd-4f7761828c91108d4bf4a12e78f23b6483b18ade.tar.bz2 openocd+libswd-4f7761828c91108d4bf4a12e78f23b6483b18ade.tar.xz openocd+libswd-4f7761828c91108d4bf4a12e78f23b6483b18ade.zip |
tap post reset event added. Allows omap3530 to send 100 runtest idle tickle's after a TAP_RESET.
git-svn-id: svn://svn.berlios.de/openocd/trunk@2696 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src/flash')
-rw-r--r-- | src/flash/str9xpec.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/flash/str9xpec.c b/src/flash/str9xpec.c index bca3b88f..33471e6b 100644 --- a/src/flash/str9xpec.c +++ b/src/flash/str9xpec.c @@ -1254,7 +1254,8 @@ static int str9xpec_handle_flash_disable_turbo_command(struct command_context_s return ERROR_FAIL; /* exit turbo mode via RESET */ - str9xpec_set_instr(tap, ISC_NOOP, TAP_RESET); + str9xpec_set_instr(tap, ISC_NOOP, TAP_IDLE); + jtag_add_tlr(); jtag_execute_queue(); /* restore previous scan chain */ |