2026-02-12 13:19:37 +01:00
|
|
|
#include "HalPowerManager.h"
|
|
|
|
|
|
2026-02-13 16:27:58 -05:00
|
|
|
#include <Logging.h>
|
2026-02-12 13:12:13 +01:00
|
|
|
#include <esp_sleep.h>
|
|
|
|
|
|
|
|
|
|
#include "HalGPIO.h"
|
|
|
|
|
|
|
|
|
|
void HalPowerManager::begin() {
|
|
|
|
|
pinMode(BAT_GPIO0, INPUT);
|
|
|
|
|
normalFreq = getCpuFrequencyMhz();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void HalPowerManager::setPowerSaving(bool enabled) {
|
|
|
|
|
if (normalFreq <= 0) {
|
2026-02-12 13:19:37 +01:00
|
|
|
return; // invalid state
|
2026-02-12 13:12:13 +01:00
|
|
|
}
|
|
|
|
|
if (enabled && !isLowPower) {
|
2026-02-13 16:27:58 -05:00
|
|
|
LOG_DBG("PWR", "Going to low-power mode");
|
2026-02-12 13:12:13 +01:00
|
|
|
if (!setCpuFrequencyMhz(LOW_POWER_FREQ)) {
|
2026-02-13 16:27:58 -05:00
|
|
|
LOG_ERR("PWR", "Failed to set low-power CPU frequency");
|
2026-02-12 13:12:13 +01:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (!enabled && isLowPower) {
|
2026-02-13 16:27:58 -05:00
|
|
|
LOG_DBG("PWR", "Restoring normal CPU frequency");
|
2026-02-12 13:12:13 +01:00
|
|
|
if (!setCpuFrequencyMhz(normalFreq)) {
|
2026-02-13 16:27:58 -05:00
|
|
|
LOG_ERR("PWR", "Failed to restore normal CPU frequency");
|
2026-02-12 13:12:13 +01:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
isLowPower = enabled;
|
|
|
|
|
}
|
|
|
|
|
|
2026-02-12 13:19:37 +01:00
|
|
|
void HalPowerManager::startDeepSleep(HalGPIO& gpio) const {
|
2026-02-12 13:12:13 +01:00
|
|
|
// Ensure that the power button has been released to avoid immediately turning back on if you're holding it
|
|
|
|
|
while (gpio.isPressed(HalGPIO::BTN_POWER)) {
|
|
|
|
|
delay(50);
|
|
|
|
|
gpio.update();
|
|
|
|
|
}
|
|
|
|
|
// Arm the wakeup trigger *after* the button is released
|
|
|
|
|
esp_deep_sleep_enable_gpio_wakeup(1ULL << InputManager::POWER_BUTTON_PIN, ESP_GPIO_WAKEUP_GPIO_LOW);
|
|
|
|
|
// Enter Deep Sleep
|
|
|
|
|
esp_deep_sleep_start();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int HalPowerManager::getBatteryPercentage() const {
|
|
|
|
|
static const BatteryMonitor battery = BatteryMonitor(BAT_GPIO0);
|
|
|
|
|
return battery.readPercentage();
|
|
|
|
|
}
|