Skip to content

Commit ffeaef5

Browse files
authored
Merge pull request #3453 from DavePutz/issue3367
Issue #3367 Changed delay calls to avoid conflicts with qspi_disable
2 parents d6da406 + dbf8a9a commit ffeaef5

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)