Merge pull request #2906 from fdlamotte/shutdown_peripherals

Proposal: Introduce shutdownPeripherals in NRF52Board to prepare for shutdown
This commit is contained in:
fdlamotte
2026-07-17 06:53:00 -04:00
committed by GitHub
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