diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2015-10-29 02:06:13 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2015-10-29 02:06:58 +0300 |
commit | 5699fc9d0e16b89b8052d29db9a3c5a349dab94a (patch) | |
tree | 304f7f7aedaa088c1a33be7504c5b6b25f8fb4d9 /esp8266/main.c | |
parent | a2e0d92eeb7e07cbad06368ccce22cc5d360ae55 (diff) |
esp8266: Switch to standard mp_hal_delay_us() MPHAL function.
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 95315dae4..18fd2bd64 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(); } |