浏览代码

BLTouch.init should not deploy (#13988)

Low or unknown probe clearance on init (even at powerup) is a risk and therefore, a deploy should be avoided because dragging the pin is possible: A deploy goes into alarm if it can't extend fully and then the subsequent stow will fail.
FanDjango 6 年前
父节点
当前提交
dcaefc68a5
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2
    1
      Marlin/src/feature/bltouch.cpp

+ 2
- 1
Marlin/src/feature/bltouch.cpp 查看文件

49
   #if ENABLED(BLTOUCH_FORCE_5V_MODE)
49
   #if ENABLED(BLTOUCH_FORCE_5V_MODE)
50
     _set_5V_mode();                          // Set 5V mode if explicitely demanded (V3 upwards)
50
     _set_5V_mode();                          // Set 5V mode if explicitely demanded (V3 upwards)
51
   #endif
51
   #endif
52
-  clear();
52
+  _reset();
53
+  _stow();
53
   // There really should be no alarm outstanding now, and no triggered condition. But if there is,
54
   // There really should be no alarm outstanding now, and no triggered condition. But if there is,
54
   // there is no need to worry people here on init right at the start of the printer.
55
   // there is no need to worry people here on init right at the start of the printer.
55
 }
56
 }

正在加载...
取消
保存