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

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