🚸 Fix BLTouch HSMode deploy (#26311)
This commit is contained in:
parent
3d8e3c3c9a
commit
fe8266b591
|
@ -596,11 +596,15 @@ bool Probe::probe_down_to_z(const_float_t z, const_feedRate_t fr_mm_s) {
|
|||
thermalManager.wait_for_hotend_heating(active_extruder);
|
||||
#endif
|
||||
|
||||
// Ensure the BLTouch is deployed. Does nothing if already deployed.
|
||||
if (TERN0(BLTOUCH, bltouch.deploy())) return true;
|
||||
#if ENABLED(BLTOUCH)
|
||||
// Ensure the BLTouch is deployed. (Does nothing if already deployed.)
|
||||
// Don't deploy with high_speed_mode enabled. The probe already re-deploys itself.
|
||||
if (TERN(MEASURE_BACKLASH_WHEN_PROBING, true, !bltouch.high_speed_mode) && bltouch.deploy())
|
||||
return true;
|
||||
#endif
|
||||
|
||||
#if HAS_Z_SERVO_PROBE && (ENABLED(Z_SERVO_INTERMEDIATE_STOW) || defined(Z_SERVO_MEASURE_ANGLE))
|
||||
probe_specific_action(true); // Always re-deploy in this case
|
||||
probe_specific_action(true); // Always re-deploy in this case
|
||||
#endif
|
||||
|
||||
// Disable stealthChop if used. Enable diag1 pin on driver.
|
||||
|
|
Loading…
Reference in a new issue