浏览代码

Z_RAISE_AFTER_PROBING value was being ignored by Marlin because

raise_z_after_probing() was only called if the printer type was set to a
DELTA or if the printer had a docking sled for the probe.
jbrazio 9 年前
父节点
当前提交
17cc2a9663
共有 1 个文件被更改,包括 2 次插入0 次删除
  1. 2
    0
      Marlin/Marlin_main.cpp

+ 2
- 0
Marlin/Marlin_main.cpp 查看文件

@@ -3198,6 +3198,8 @@ inline void gcode_G28() {
3198 3198
       // Sled assembly for Cartesian bots
3199 3199
       #if ENABLED(Z_PROBE_SLED)
3200 3200
         dock_sled(true); // dock the sled
3201
+      #elif Z_RAISE_AFTER_PROBING > 0
3202
+        raise_z_after_probing();
3201 3203
       #endif
3202 3204
 
3203 3205
     #endif // !DELTA

正在加载...
取消
保存