Merge pull request #3740 from dhalbert/esp32s2-common-hal-mcu-delay-us

ESP32S2: common_hal_mcu_delay_us() now calls mp_hal_delay_us()
This commit is contained in:
Jeff Epler 2020-11-22 20:49:15 -06:00 committed by GitHub
commit 211d084429
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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;