This commit is contained in:
Quency-D 2026-04-20 13:54:23 +00:00 committed by GitHub
commit 0fc7e10530
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 112 additions and 5 deletions

View file

@ -24,6 +24,10 @@ void setup() {
board.begin();
#ifdef HAS_EXTERNAL_WATCHDOG
external_watchdog.begin();
#endif
#ifdef DISPLAY_CLASS
if (display.begin()) {
display.startFrame();
@ -113,4 +117,7 @@ void loop() {
ui_task.loop();
#endif
rtc_clock.tick();
#ifdef HAS_EXTERNAL_WATCHDOG
external_watchdog.loop();
#endif
}