fix missing parameter

This commit is contained in:
Lucian Copeland 2020-02-10 12:16:00 -05:00
parent a8f5fcc400
commit 3f700e7e68

View File

@ -51,7 +51,7 @@ void mp_hal_delay_ms(mp_uint_t delay) {
}
void mp_hal_delay_us(mp_uint_t delay) {
common_hal_mcu_delay_us();
common_hal_mcu_delay_us(delay);
}
void mp_hal_disable_all_interrupts(void) {