瀏覽代碼

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

Rob Power 7 年之前
父節點
當前提交
d1f14202a9
共有 1 個檔案被更改,包括 1 行新增1 行删除
  1. 1
    1
      Marlin/src/gcode/motion/G0_G1.cpp

+ 1
- 1
Marlin/src/gcode/motion/G0_G1.cpp 查看文件

@@ -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…
取消
儲存