diff options
| author | Jeff Epler <jeff@adafruit.com> | 2020-11-22 20:49:15 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-22 20:49:15 -0600 |
| commit | 211d084429e7625f2772eed5c1fdbf49518df548 (patch) | |
| tree | 60b964eaca87b7ea5625a78d57797495b67c78a8 | |
| parent | 7a5e3557757b4eca84f49c97ef0cbe9971017c83 (diff) | |
| parent | f62ea25331678cc400c6149bbe3102c371540c6e (diff) | |
Merge pull request #3740 from dhalbert/esp32s2-common-hal-mcu-delay-us
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; |
