Browse Source
Merge pull request #908 from ViezeVingertjes/feat/meshpocket-poweroff
Add hibernation support for MeshPocket
pull/912/head
ripplebiz
8 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
4 additions and
0 deletions
-
variants/mesh_pocket/MeshPocket.h
|
|
@ -41,5 +41,9 @@ public: |
|
|
NVIC_SystemReset(); |
|
|
NVIC_SystemReset(); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
void powerOff() override { |
|
|
|
|
|
sd_power_system_off(); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
bool startOTAUpdate(const char* id, char reply[]) override; |
|
|
bool startOTAUpdate(const char* id, char reply[]) override; |
|
|
}; |
|
|
}; |
|
|
|