From 98d5d64cfc3475feae37680d3f5b3be710c70634 Mon Sep 17 00:00:00 2001 From: Antigravity Agent Date: Mon, 19 Jan 2026 20:23:35 -0500 Subject: [PATCH] Fix: Restore power button check to prevent accidental wake-up --- src/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index d990a8ba..36677aa3 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -301,8 +301,8 @@ void setup() { Serial.flush(); // verify power button press duration after we've read settings. - // verifyWakeupLongPress(); // Disabled for debugging to prevent auto-shutdown - // Serial.printf("[%lu] [DBG] Wakeup long press verified\n", millis()); + verifyWakeupLongPress(); + Serial.printf("[%lu] [DBG] Wakeup long press verified\n", millis()); // First serial output only here to avoid timing inconsistencies for power button press duration verification Serial.printf("[%lu] [ ] Starting CrossPoint version " CROSSPOINT_VERSION "\n", millis());