Browse Source
Merge pull request #632 from oltaco/dev
WioTrackerL1: add poweroff support
pull/634/head
ripplebiz
10 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/wio-tracker-l1/WioTrackerL1Board.h
|
|
@ -38,5 +38,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; |
|
|
}; |
|
|
}; |
|
|
|