mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-01-19 08:08:25 +00:00
🐛 Ensure BLTouch deploy in HS Mode (#26033)
This commit is contained in:
parent
810c1693ac
commit
3815157214
1 changed files with 2 additions and 4 deletions
|
@ -596,10 +596,8 @@ bool Probe::probe_down_to_z(const_float_t z, const_feedRate_t fr_mm_s) {
|
|||
thermalManager.wait_for_hotend_heating(active_extruder);
|
||||
#endif
|
||||
|
||||
#if ENABLED(BLTOUCH)
|
||||
if (!bltouch.high_speed_mode && bltouch.deploy())
|
||||
return true; // Deploy in LOW SPEED MODE on every probe action
|
||||
#endif
|
||||
// Ensure the BLTouch is deployed. Does nothing if already deployed.
|
||||
if (TERN0(BLTOUCH, bltouch.deploy())) return true;
|
||||
|
||||
#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
|
||||
|
|
Loading…
Reference in a new issue