Compare commits
1 Commits
minor-changes
...
ble
| Author | SHA1 | Date | |
|---|---|---|---|
| 5bdcbb25b6 |
@@ -12,7 +12,7 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef FIRMWARE_VERSION
|
#ifndef FIRMWARE_VERSION
|
||||||
#define FIRMWARE_VERSION "Meck v0.3.1"
|
#define FIRMWARE_VERSION "Meck v0.4"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(NRF52_PLATFORM) || defined(STM32_PLATFORM)
|
#if defined(NRF52_PLATFORM) || defined(STM32_PLATFORM)
|
||||||
|
|||||||
@@ -16,6 +16,13 @@ class TDeckBoard : public ESP32Board {
|
|||||||
public:
|
public:
|
||||||
void begin();
|
void begin();
|
||||||
|
|
||||||
|
void powerOff() override {
|
||||||
|
// Stop Bluetooth before power off
|
||||||
|
btStop();
|
||||||
|
// Don't call parent or enterDeepSleep - let normal shutdown continue
|
||||||
|
// Display will show "hibernating..." text
|
||||||
|
}
|
||||||
|
|
||||||
void enterDeepSleep(uint32_t secs, int pin_wake_btn) {
|
void enterDeepSleep(uint32_t secs, int pin_wake_btn) {
|
||||||
esp_sleep_pd_config(ESP_PD_DOMAIN_RTC_PERIPH, ESP_PD_OPTION_ON);
|
esp_sleep_pd_config(ESP_PD_DOMAIN_RTC_PERIPH, ESP_PD_OPTION_ON);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user