Merge pull request #632 from oltaco/dev

WioTrackerL1: add poweroff support
This commit is contained in:
ripplebiz 2025-08-17 18:13:14 +10:00 committed by GitHub
commit 3bb55b590c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -38,5 +38,9 @@ public:
NVIC_SystemReset();
}
void powerOff() override {
sd_power_system_off();
}
bool startOTAUpdate(const char* id, char reply[]) override;
};