ESP32S2: common_hal_mcu_delay_us() now calls mp_hal_delay_us()

This commit is contained in:
Dan Halbert 2020-11-22 19:08:27 -05:00
parent 2f14609044
commit f62ea25331
1 changed files with 1 additions and 1 deletions

View File

@ -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;