diff options
| author | Dan Halbert <halbert@halwitz.org> | 2020-11-22 19:08:27 -0500 |
|---|---|---|
| committer | Dan Halbert <halbert@halwitz.org> | 2020-11-22 19:08:27 -0500 |
| commit | f62ea25331678cc400c6149bbe3102c371540c6e (patch) | |
| tree | 14c544756c601fe244c51b8e097388b6733b427a | |
| parent | 2f146090444492c344a0260faa151660f5ec3c7a (diff) | |
ESP32S2: common_hal_mcu_delay_us() now calls mp_hal_delay_us()
| -rw-r--r-- | ports/esp32s2/common-hal/microcontroller/__init__.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ports/esp32s2/common-hal/microcontroller/__init__.c b/ports/esp32s2/common-hal/microcontroller/__init__.c index e5cfc7eef..dba12b88b 100644 --- a/ports/esp32s2/common-hal/microcontroller/__init__.c +++ b/ports/esp32s2/common-hal/microcontroller/__init__.c @@ -42,7 +42,7 @@ #include "freertos/FreeRTOS.h" void common_hal_mcu_delay_us(uint32_t delay) { - + mp_hal_delay_us(delay); } volatile uint32_t nesting_count = 0; |
