Adjust reset signal timing in uDisplay_touch.cpp (#24198)

Increase delay duration for reset signal in uDisplay.
This commit is contained in:
Jason2866 2025-12-08 18:38:53 +01:00 committed by GitHub
parent f2a3b4ac62
commit 449b9763d8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -22,9 +22,9 @@ bool uDisplay::utouch_Init(char **name) {
digitalWrite(ut_reset, HIGH); digitalWrite(ut_reset, HIGH);
delay(10); delay(10);
digitalWrite(ut_reset, LOW); digitalWrite(ut_reset, LOW);
delay(5);
digitalWrite(ut_reset, HIGH);
delay(10); delay(10);
digitalWrite(ut_reset, HIGH);
delay(50);
} }
if (ut_irq >= 0) { if (ut_irq >= 0) {
@ -573,4 +573,4 @@ int16_t uDisplay::besttwoavg(int16_t x, int16_t y, int16_t z) {
return (reta); return (reta);
} }
#endif // USE_UNIVERSAL_TOUCH #endif // USE_UNIVERSAL_TOUCH