Explorar el Código

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

Rob Power hace 7 años
padre
commit
d1f14202a9
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      Marlin/src/gcode/motion/G0_G1.cpp

+ 1
- 1
Marlin/src/gcode/motion/G0_G1.cpp Ver fichero

@@ -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…
Cancelar
Guardar