Wake screen on first press (#4052)

This commit is contained in:
todd-herbert
2024-06-07 07:28:29 -05:00
committed by GitHub
co-authored by GitHub
parent 90d45f24fd
commit 338244de32
+2 -2
View File
@@ -232,10 +232,10 @@ void ButtonThread::attachButtonInterrupts()
attachInterrupt( attachInterrupt(
config.device.button_gpio ? config.device.button_gpio : BUTTON_PIN, config.device.button_gpio ? config.device.button_gpio : BUTTON_PIN,
[]() { []() {
BaseType_t higherWake = 0;
mainDelay.interruptFromISR(&higherWake);
ButtonThread::userButton.tick(); ButtonThread::userButton.tick();
runASAP = true; runASAP = true;
BaseType_t higherWake = 0;
mainDelay.interruptFromISR(&higherWake);
}, },
CHANGE); CHANGE);
#endif #endif