Skip to content

Commit 449b976

Browse files
authored
Adjust reset signal timing in uDisplay_touch.cpp (#24198)
Increase delay duration for reset signal in uDisplay.
1 parent f2a3b4a commit 449b976

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/lib_display/UDisplay/src/uDisplay_touch.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ bool uDisplay::utouch_Init(char **name) {
2222
digitalWrite(ut_reset, HIGH);
2323
delay(10);
2424
digitalWrite(ut_reset, LOW);
25-
delay(5);
26-
digitalWrite(ut_reset, HIGH);
2725
delay(10);
26+
digitalWrite(ut_reset, HIGH);
27+
delay(50);
2828
}
2929

3030
if (ut_irq >= 0) {
@@ -573,4 +573,4 @@ int16_t uDisplay::besttwoavg(int16_t x, int16_t y, int16_t z) {
573573
return (reta);
574574
}
575575

576-
#endif // USE_UNIVERSAL_TOUCH
576+
#endif // USE_UNIVERSAL_TOUCH

0 commit comments

Comments
 (0)