From d1f14202a9bf9824dfa3c1ce5551ae457bf2b66d Mon Sep 17 00:00:00 2001 From: Rob Power Date: Wed, 28 Mar 2018 20:03:34 +0200 Subject: [PATCH] [2.0.x] NANODLP_Z_SYNC requires linear axes (#10240) --- Marlin/src/gcode/motion/G0_G1.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Marlin/src/gcode/motion/G0_G1.cpp b/Marlin/src/gcode/motion/G0_G1.cpp index 98f297f13c..46a4cf826b 100644 --- a/Marlin/src/gcode/motion/G0_G1.cpp +++ b/Marlin/src/gcode/motion/G0_G1.cpp @@ -79,7 +79,7 @@ void GcodeSuite::G0_G1( #if ENABLED(NANODLP_Z_SYNC) #if ENABLED(NANODLP_ALL_AXIS) - #define _MOVE_SYNC true // For any move wait and output sync message + #define _MOVE_SYNC parser.seenval('X') || parser.seenval('Y') || parser.seenval('Z') // For any move wait and output sync message #else #define _MOVE_SYNC parser.seenval('Z') // Only for Z move #endif