From a8c8fd70026aecf5f18724298394933cb45bf84f Mon Sep 17 00:00:00 2001 From: Ben Meadors Date: Sat, 25 Apr 2026 07:11:03 -0500 Subject: [PATCH] Remove redundant power interrupt methods for ESP32 --- src/power.h | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/power.h b/src/power.h index 90ada889d..4b5ef609d 100644 --- a/src/power.h +++ b/src/power.h @@ -102,14 +102,6 @@ class Power : public concurrency::OSThread const uint16_t OCV[11] = {OCV_ARRAY}; bool isLowBattery() { return low_voltage_counter >= 10; }; -#ifdef ARCH_ESP32 - int beforeLightSleep(void *unused); - int afterLightSleep(esp_sleep_wakeup_cause_t cause); -#endif - - void attachPowerInterrupts(); - void detachPowerInterrupts(); - #ifdef ARCH_ESP32 int beforeLightSleep(void *unused); int afterLightSleep(esp_sleep_wakeup_cause_t cause);