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

@ -560,6 +560,10 @@ void setup() {
board.begin();
#ifdef HAS_EXTERNAL_WATCHDOG
external_watchdog.begin();
#endif
if (!radio_init()) { halt(); }
fast_rng.begin(radio_get_rng_seed());
@ -591,4 +595,7 @@ void setup() {
void loop() {
the_mesh.loop();
rtc_clock.tick();
#ifdef HAS_EXTERNAL_WATCHDOG
external_watchdog.loop();
#endif
}