diff options
Diffstat (limited to 'esp8266/main.c')
-rw-r--r-- | esp8266/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/esp8266/main.c b/esp8266/main.c index 95315dae46..18fd2bd64a 100644 --- a/esp8266/main.c +++ b/esp8266/main.c @@ -56,7 +56,7 @@ STATIC void mp_reset(void) { void soft_reset(void) { mp_hal_stdout_tx_str("PYB: soft reset\r\n"); - mp_hal_udelay(10000); // allow UART to flush output + mp_hal_delay_us(10000); // allow UART to flush output mp_reset(); pyexec_event_repl_init(); } |