- fixed jtag_n[st]rst_delay. time is now miliseconds (as documented), not microseconds
authordrath <drath@b42882b7-edfa-0310-969c-e2dbd0fdcd60>
Sun, 6 Aug 2006 12:14:02 +0000 (12:14 +0000)
committerdrath <drath@b42882b7-edfa-0310-969c-e2dbd0fdcd60>
Sun, 6 Aug 2006 12:14:02 +0000 (12:14 +0000)
git-svn-id: svn://svn.berlios.de/openocd/trunk@82 b42882b7-edfa-0310-969c-e2dbd0fdcd60

src/jtag/jtag.c

index 7c6c911a1024bce9d2c74ba9ba2f46ed51be9877..0ffeb56e7b2769877675987c7fb50a9ec988931f 100644 (file)
@@ -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);
                }
        }