Skip to content
Snippets Groups Projects
Commit f27871b2 authored by oharboe's avatar oharboe
Browse files

Pavel Chromy: TAP state changed to TLR when SRST goes active with...

Pavel Chromy: TAP state changed to TLR when SRST goes active with srst_pulls_trst, as in all other drivers

git-svn-id: svn://svn.berlios.de/openocd/trunk@715 b42882b7-edfa-0310-969c-e2dbd0fdcd60
parent 5728fdce
Branches
No related tags found
No related merge requests found
......@@ -283,6 +283,10 @@ int bitq_execute_queue(void)
#ifdef _DEBUG_JTAG_IO_
LOG_DEBUG("reset trst: %i srst %i", cmd->cmd.reset->trst, cmd->cmd.reset->srst);
#endif
if ((cmd->cmd.reset->trst == 1) || (cmd->cmd.reset->srst && (jtag_reset_config & RESET_SRST_PULLS_TRST)))
{
cur_state = TAP_TLR;
}
bitq_interface->reset(cmd->cmd.reset->trst, cmd->cmd.reset->srst);
if (bitq_interface->in_rdy()) bitq_in_proc();
break;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment