introduce shutdownPeripherals in NRF52Board to prepare for shutdown

This commit is contained in:
Florent
2026-07-07 10:20:03 -04:00
parent fec88e1300
commit 369016acc9
3 changed files with 8 additions and 3 deletions
+2 -2
View File
@@ -23,8 +23,8 @@ public:
return "LilyGo T-Echo";
}
void powerOff() override {
NRF52Board::powerOff();
void shutdownPeripherals() override {
NRF52Board::shutdownPeripherals();
#ifdef LED_RED
digitalWrite(LED_RED, HIGH);
#endif