From 8cf226613b92fb7d0cd9fc53bdad44d6d0b01288 Mon Sep 17 00:00:00 2001 From: Xuan Son Nguyen Date: Tue, 10 Feb 2026 14:19:16 +0100 Subject: [PATCH] clang format --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 7882e3c4..d47e0788 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -408,7 +408,7 @@ void loop() { if (currentActivity && currentActivity->skipLoopDelay()) { yield(); // Give FreeRTOS a chance to run tasks, but return immediately } else { - static constexpr unsigned long IDLE_POWER_SAVING_MS = 3000; // 3 seconds + static constexpr unsigned long IDLE_POWER_SAVING_MS = 3000; // 3 seconds if (millis() - lastActivityTime >= IDLE_POWER_SAVING_MS) { // If we've been inactive for a while, increase the delay to save power delay(50);