[1.1.x] NANODLP_Z_SYNC requires linear axes (#10239)

This commit is contained in:
Rob Power 2018-03-28 20:02:58 +02:00 committed by Scott Lahteine
parent dc05d7fc2b
commit 677bd19dbf

View File

@ -3258,7 +3258,7 @@ inline void gcode_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