esp8266: Switch to standard mp_hal_delay_us() MPHAL function.

This commit is contained in:
Paul Sokolovsky
2015-10-29 02:06:13 +03:00
parent a2e0d92eeb
commit 5699fc9d0e
4 changed files with 6 additions and 6 deletions

View File

@@ -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();
}