2026-02-12 13:12:13 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <Arduino.h>
|
|
|
|
|
#include <BatteryMonitor.h>
|
|
|
|
|
#include <InputManager.h>
|
feat: port upstream PRs #852, #965, #972, #971, #977, #975
Port 6 upstream PRs (PR #939 was already ported):
- #852: Complete HalPowerManager with RAII Lock class, WiFi check in
setPowerSaving, skipLoopDelay overrides for ClearCache/OtaUpdate,
and power lock in Activity render task loops
- #965: Fix paragraph formatting inside list items by tracking
listItemUntilDepth to prevent unwanted line breaks
- #972: Micro-optimizations: std::move in insertFont, const ref for
getDataFromBook parameter
- #971: Remove redundant hasPrintableChars pre-rendering pass from
EpdFont, EpdFontFamily, and GfxRenderer
- #977: Skip unsupported image formats before extraction, add
PARSE_BUFFER_SIZE constant and chapter parse timing
- #975: Fix UITheme memory leak by replacing raw pointer with
std::unique_ptr for currentTheme
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-18 15:45:06 -05:00
|
|
|
#include <freertos/semphr.h>
|
2026-02-12 13:12:13 +01:00
|
|
|
|
|
|
|
|
#include "HalGPIO.h"
|
|
|
|
|
|
|
|
|
|
class HalPowerManager {
|
2026-02-12 13:19:37 +01:00
|
|
|
int normalFreq = 0; // MHz
|
2026-02-12 13:12:13 +01:00
|
|
|
bool isLowPower = false;
|
|
|
|
|
|
feat: port upstream PRs #852, #965, #972, #971, #977, #975
Port 6 upstream PRs (PR #939 was already ported):
- #852: Complete HalPowerManager with RAII Lock class, WiFi check in
setPowerSaving, skipLoopDelay overrides for ClearCache/OtaUpdate,
and power lock in Activity render task loops
- #965: Fix paragraph formatting inside list items by tracking
listItemUntilDepth to prevent unwanted line breaks
- #972: Micro-optimizations: std::move in insertFont, const ref for
getDataFromBook parameter
- #971: Remove redundant hasPrintableChars pre-rendering pass from
EpdFont, EpdFontFamily, and GfxRenderer
- #977: Skip unsupported image formats before extraction, add
PARSE_BUFFER_SIZE constant and chapter parse timing
- #975: Fix UITheme memory leak by replacing raw pointer with
std::unique_ptr for currentTheme
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-18 15:45:06 -05:00
|
|
|
enum LockMode { None, NormalSpeed };
|
|
|
|
|
LockMode currentLockMode = None;
|
|
|
|
|
SemaphoreHandle_t modeMutex = nullptr;
|
|
|
|
|
|
2026-02-12 13:12:13 +01:00
|
|
|
public:
|
2026-02-12 13:19:37 +01:00
|
|
|
static constexpr int LOW_POWER_FREQ = 10; // MHz
|
|
|
|
|
static constexpr unsigned long IDLE_POWER_SAVING_MS = 3000; // ms
|
|
|
|
|
|
2026-02-12 13:12:13 +01:00
|
|
|
void begin();
|
|
|
|
|
|
|
|
|
|
// Control CPU frequency for power saving
|
|
|
|
|
void setPowerSaving(bool enabled);
|
|
|
|
|
|
|
|
|
|
// Setup wake up GPIO and enter deep sleep
|
2026-02-12 13:19:37 +01:00
|
|
|
void startDeepSleep(HalGPIO& gpio) const;
|
2026-02-12 13:12:13 +01:00
|
|
|
|
|
|
|
|
// Get battery percentage (range 0-100)
|
|
|
|
|
int getBatteryPercentage() const;
|
feat: port upstream PRs #852, #965, #972, #971, #977, #975
Port 6 upstream PRs (PR #939 was already ported):
- #852: Complete HalPowerManager with RAII Lock class, WiFi check in
setPowerSaving, skipLoopDelay overrides for ClearCache/OtaUpdate,
and power lock in Activity render task loops
- #965: Fix paragraph formatting inside list items by tracking
listItemUntilDepth to prevent unwanted line breaks
- #972: Micro-optimizations: std::move in insertFont, const ref for
getDataFromBook parameter
- #971: Remove redundant hasPrintableChars pre-rendering pass from
EpdFont, EpdFontFamily, and GfxRenderer
- #977: Skip unsupported image formats before extraction, add
PARSE_BUFFER_SIZE constant and chapter parse timing
- #975: Fix UITheme memory leak by replacing raw pointer with
std::unique_ptr for currentTheme
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-18 15:45:06 -05:00
|
|
|
|
|
|
|
|
// RAII lock to prevent low-power mode during critical work (e.g. rendering)
|
|
|
|
|
class Lock {
|
|
|
|
|
friend class HalPowerManager;
|
|
|
|
|
bool valid = false;
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
Lock();
|
|
|
|
|
~Lock();
|
|
|
|
|
Lock(const Lock&) = delete;
|
|
|
|
|
Lock& operator=(const Lock&) = delete;
|
|
|
|
|
Lock(Lock&&) = delete;
|
|
|
|
|
Lock& operator=(Lock&&) = delete;
|
|
|
|
|
};
|
2026-02-12 13:12:13 +01:00
|
|
|
};
|
feat: port upstream PRs #852, #965, #972, #971, #977, #975
Port 6 upstream PRs (PR #939 was already ported):
- #852: Complete HalPowerManager with RAII Lock class, WiFi check in
setPowerSaving, skipLoopDelay overrides for ClearCache/OtaUpdate,
and power lock in Activity render task loops
- #965: Fix paragraph formatting inside list items by tracking
listItemUntilDepth to prevent unwanted line breaks
- #972: Micro-optimizations: std::move in insertFont, const ref for
getDataFromBook parameter
- #971: Remove redundant hasPrintableChars pre-rendering pass from
EpdFont, EpdFontFamily, and GfxRenderer
- #977: Skip unsupported image formats before extraction, add
PARSE_BUFFER_SIZE constant and chapter parse timing
- #975: Fix UITheme memory leak by replacing raw pointer with
std::unique_ptr for currentTheme
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-18 15:45:06 -05:00
|
|
|
|
|
|
|
|
extern HalPowerManager powerManager;
|