aboutsummaryrefslogtreecommitdiff
path: root/ports/esp32/mphalport.c
diff options
context:
space:
mode:
Diffstat (limited to 'ports/esp32/mphalport.c')
-rw-r--r--ports/esp32/mphalport.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ports/esp32/mphalport.c b/ports/esp32/mphalport.c
index 305e87593..c701cb4bc 100644
--- a/ports/esp32/mphalport.c
+++ b/ports/esp32/mphalport.c
@@ -157,7 +157,7 @@ void mp_hal_delay_us(uint32_t us) {
if (dt + pend_overhead < us) {
// we have enough time to service pending events
// (don't use MICROPY_EVENT_POLL_HOOK because it also yields)
- mp_handle_pending();
+ mp_handle_pending(true);
}
}
}