Watchdog for simulator refactor

This commit is contained in:
andreika-git 2023-11-29 15:59:01 +02:00 committed by rusefillc
parent b683a4f04c
commit 01f58132d4
1 changed files with 3 additions and 3 deletions

View File

@ -21,10 +21,10 @@
// we use 'int' for compatibility with addConsoleActionI()
// can be called multiple times to change the timeout
void startWatchdog(int = WATCHDOG_TIMEOUT_MS) { }
static void startWatchdog(int = WATCHDOG_TIMEOUT_MS) { }
// Can be called for debug reasons to test the watchdog
void setWatchdogResetPeriod(int resetMs) { }
static void setWatchdogResetPeriod(int resetMs) { }
// A reset is done only if enough time has passed since the last reset.
void tryResetWatchdog() { }
static void tryResetWatchdog() { }