浏览代码

Corrected retract() call for use of auto probe without sled enabled.

Charles Bell 10 年前
父节点
当前提交
37799f70ba
共有 1 个文件被更改,包括 4 次插入2 次删除
  1. 4
    2
      Marlin/Marlin_main.cpp

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

@@ -1136,8 +1136,10 @@ static void homeaxis(int axis) {
1136 1136
       }
1137 1137
     #endif
1138 1138
 #if defined (ENABLE_AUTO_BED_LEVELING) && (PROBE_SERVO_DEACTIVATION_DELAY > 0)
1139
-//    if (axis==Z_AXIS) retract_z_probe();
1140
-#endif
1139
+  #ifndef Z_PROBE_SLED
1140
+    if (axis==Z_AXIS) retract_z_probe();
1141
+  #endif#
1142
+endif
1141 1143
 
1142 1144
   }
1143 1145
 }

正在加载...
取消
保存