Skip to content
Snippets Groups Projects
Commit ca1e5ee1 authored by drath's avatar drath
Browse files

- fixed jtag_n[st]rst_delay. time is now miliseconds (as documented), not microseconds

git-svn-id: svn://svn.berlios.de/openocd/trunk@82 b42882b7-edfa-0310-969c-e2dbd0fdcd60
parent fbf5bec7
No related branches found
No related tags found
No related merge requests found
......@@ -843,7 +843,7 @@ int jtag_add_reset(int req_trst, int req_srst)
{
jtag_call_event_callbacks(JTAG_SRST_RELEASED);
if (jtag_nsrst_delay)
jtag_add_sleep(jtag_nsrst_delay);
jtag_add_sleep(jtag_nsrst_delay * 1000);
}
if (trst_with_tms)
......@@ -881,7 +881,7 @@ int jtag_add_reset(int req_trst, int req_srst)
* but we might want to add a delay to give the TAP time to settle
*/
if (jtag_ntrst_delay)
jtag_add_sleep(jtag_ntrst_delay);
jtag_add_sleep(jtag_ntrst_delay * 1000);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment