mirror of
https://github.com/meshtastic/firmware.git
synced 2025-08-11 16:07:13 +00:00

* T-Watch WIP * Updates * Temp * Update screen spi bus and and backlight en * Peripherals progress * Fixes * Fixes * Updates * DRV scaffolding * Fixed touch-screen driver selection. WIP on DRV haptic feedback * DRV2605 pmu channel * Trunk * Fixes and defaults * Dropped an s * Move PMU and turn off screen that way * Add t-deck and t-watch-s3 to CI and cleanup * More cleanup
48 lines
1.4 KiB
C
48 lines
1.4 KiB
C
#pragma once
|
|
|
|
#include "Arduino.h"
|
|
#include "Observer.h"
|
|
#include "configuration.h"
|
|
|
|
void doDeepSleep(uint32_t msecToWake), cpuDeepSleep(uint32_t msecToWake);
|
|
|
|
#ifdef ARCH_ESP32
|
|
#include "esp_sleep.h"
|
|
esp_sleep_wakeup_cause_t doLightSleep(uint64_t msecToWake);
|
|
|
|
extern esp_sleep_source_t wakeCause;
|
|
#endif
|
|
|
|
#ifdef HAS_PMU
|
|
#include "XPowersLibInterface.hpp"
|
|
extern XPowersLibInterface *PMU;
|
|
#endif
|
|
|
|
void setGPSPower(bool on);
|
|
void doGPSpowersave(bool on);
|
|
// Perform power on init that we do on each wake from deep sleep
|
|
void initDeepSleep();
|
|
|
|
void setCPUFast(bool on);
|
|
void setLed(bool ledOn);
|
|
|
|
/** return true if sleep is allowed right now */
|
|
bool doPreflightSleep();
|
|
|
|
extern int bootCount;
|
|
|
|
// is bluetooth sw currently running?
|
|
extern bool bluetoothOn;
|
|
|
|
/// Called to ask any observers if they want to veto sleep. Return 1 to veto or 0 to allow sleep to happen
|
|
extern Observable<void *> preflightSleep;
|
|
|
|
/// Called to tell observers we are now entering (light or deep) sleep and you should prepare. Must return 0
|
|
extern Observable<void *> notifySleep;
|
|
|
|
/// Called to tell observers we are now entering (deep) sleep and you should prepare. Must return 0
|
|
extern Observable<void *> notifyDeepSleep;
|
|
|
|
/// Called to tell GPS thread to enter deep sleep independently of LoRa/MCU sleep, prior to full poweroff. Must return 0
|
|
extern Observable<void *> notifyGPSSleep;
|
|
void enableModemSleep(); |