Skip to content

Commit 3f700e7

Browse files
committed
fix missing parameter
1 parent a8f5fcc commit 3f700e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ports/stm32f4/mphalport.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ void mp_hal_delay_ms(mp_uint_t delay) {
5151
}
5252

5353
void mp_hal_delay_us(mp_uint_t delay) {
54-
common_hal_mcu_delay_us();
54+
common_hal_mcu_delay_us(delay);
5555
}
5656

5757
void mp_hal_disable_all_interrupts(void) {

0 commit comments

Comments
 (0)