Skip to content

Commit

Permalink
🩹 Fix Sim with USE_WATCHDOG disabled
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkyhead committed Jan 11, 2023
1 parent 5af5c2a commit 0838f70
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Marlin/src/HAL/NATIVE_SIM/HAL.h
Original file line number Diff line number Diff line change
Expand Up @@ -208,8 +208,8 @@ class MarlinHAL {
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()
Expand Down

0 comments on commit 0838f70

Please sign in to comment.