Skip to content

Commit

Permalink
Merge pull request adafruit#3740 from dhalbert/esp32s2-common-hal-mcu…
Browse files Browse the repository at this point in the history
…-delay-us

ESP32S2: common_hal_mcu_delay_us() now calls mp_hal_delay_us()
  • Loading branch information
jepler authored Nov 23, 2020
2 parents 7a5e355 + f62ea25 commit 211d084
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ports/esp32s2/common-hal/microcontroller/__init__.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 211d084

Please sign in to comment.