From 51be5955735a31365a0f61712135b67149d80e03 Mon Sep 17 00:00:00 2001 From: Scott Lahteine Date: Tue, 16 Jun 2020 13:48:14 -0500 Subject: [PATCH] Fix core babystep compile --- Marlin/src/module/stepper.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Marlin/src/module/stepper.cpp b/Marlin/src/module/stepper.cpp index b278ae9b4..aa2c5380c 100644 --- a/Marlin/src/module/stepper.cpp +++ b/Marlin/src/module/stepper.cpp @@ -2802,7 +2802,9 @@ void Stepper::report_positions() { EXTRA_DIR_WAIT_AFTER(); \ }while(0) - #elif IS_CORE + #endif + + #if IS_CORE #define BABYSTEP_CORE(A, B, INV, DIR, ALT) do{ \ const xy_byte_t old_dir = { _READ_DIR(A), _READ_DIR(B) }; \