Skip to content

Commit 211d084

Browse files
authored
Merge pull request #3740 from dhalbert/esp32s2-common-hal-mcu-delay-us
ESP32S2: common_hal_mcu_delay_us() now calls mp_hal_delay_us()
2 parents 7a5e355 + f62ea25 commit 211d084

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)