Browse Source

[2.0.x] NANODLP_Z_SYNC requires linear axes (#10240)

Rob Power 7 years ago
parent
commit
d1f14202a9
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/src/gcode/motion/G0_G1.cpp

+ 1
- 1
Marlin/src/gcode/motion/G0_G1.cpp View File

@@ -79,7 +79,7 @@ void GcodeSuite::G0_G1(
79 79
 
80 80
     #if ENABLED(NANODLP_Z_SYNC)
81 81
       #if ENABLED(NANODLP_ALL_AXIS)
82
-        #define _MOVE_SYNC true                 // For any move wait and output sync message
82
+        #define _MOVE_SYNC parser.seenval('X') || parser.seenval('Y') || parser.seenval('Z')  // For any move wait and output sync message
83 83
       #else
84 84
         #define _MOVE_SYNC parser.seenval('Z')  // Only for Z move
85 85
       #endif

Loading…
Cancel
Save