mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-01-31 14:12:52 +00:00
🩹 Fix Sim with USE_WATCHDOG disabled
This commit is contained in:
parent
5af5c2a35c
commit
0838f70b25
1 changed files with 2 additions and 2 deletions
|
@ -208,8 +208,8 @@ public:
|
|||
MarlinHAL() {}
|
||||
|
||||
// Watchdog
|
||||
static void watchdog_init() IF_DISABLED(USE_WATCHDOG, {});
|
||||
static void watchdog_refresh() IF_DISABLED(USE_WATCHDOG, {});
|
||||
static void watchdog_init();
|
||||
static void watchdog_refresh();
|
||||
|
||||
static void init() {} // Called early in setup()
|
||||
static void init_board() {} // Called less early in setup()
|
||||
|
|
Loading…
Reference in a new issue