Skip to content
Snippets Groups Projects
Commit 8b916771 authored by mifi's avatar mifi
Browse files

- swap processing of reset handling. First srst and than trst.

git-svn-id: svn://svn.berlios.de/openocd/trunk@680 b42882b7-edfa-0310-969c-e2dbd0fdcd60
parent 20937dd3
No related branches found
No related tags found
No related merge requests found
......@@ -447,22 +447,22 @@ void jlink_reset(int trst, int srst)
LOG_DEBUG("trst: %i, srst: %i", trst, srst);
/* Signals are active low */
if (trst == 0)
if (srst == 0)
{
jlink_simple_command(EMU_CMD_HW_TRST1);
jlink_simple_command(EMU_CMD_HW_RESET1);
}
else if (trst == 1)
else if (srst == 1)
{
jlink_simple_command(EMU_CMD_HW_TRST0);
jlink_simple_command(EMU_CMD_HW_RESET0);
}
if (srst == 0)
if (trst == 0)
{
jlink_simple_command(EMU_CMD_HW_RESET1);
jlink_simple_command(EMU_CMD_HW_TRST1);
}
else if (srst == 1)
else if (trst == 1)
{
jlink_simple_command(EMU_CMD_HW_RESET0);
jlink_simple_command(EMU_CMD_HW_TRST0);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment