Skip to content

Commit f62ea25

Browse files
committed
ESP32S2: common_hal_mcu_delay_us() now calls mp_hal_delay_us()
1 parent 2f14609 commit f62ea25

File tree

1 file changed

+1
-1
lines changed
  • ports/esp32s2/common-hal/microcontroller

1 file changed

+1
-1
lines changed

ports/esp32s2/common-hal/microcontroller/__init__.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
#include "freertos/FreeRTOS.h"
4343

4444
void common_hal_mcu_delay_us(uint32_t delay) {
45-
45+
mp_hal_delay_us(delay);
4646
}
4747

4848
volatile uint32_t nesting_count = 0;

0 commit comments

Comments
 (0)