Skip to content

Commit dbf8a9a

Browse files
committed
Changed delay calls to avoid conflicts with qspi_disable
1 parent 7ad7e1c commit dbf8a9a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

shared-module/displayio/FourWire.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,9 @@ bool common_hal_displayio_fourwire_reset(mp_obj_t obj) {
8787
return false;
8888
}
8989
common_hal_digitalio_digitalinout_set_value(&self->reset, false);
90-
common_hal_time_delay_ms(1);
90+
common_hal_mcu_delay_us(1000);
9191
common_hal_digitalio_digitalinout_set_value(&self->reset, true);
92-
common_hal_time_delay_ms(1);
92+
common_hal_mcu_delay_us(1000);
9393
return true;
9494
}
9595

0 commit comments

Comments
 (0)