Skip to content

Commit

Permalink
🐛 Ensure BLTouch deploy in HS Mode (MarlinFirmware#26033)
Browse files Browse the repository at this point in the history
  • Loading branch information
smiksky authored and Andy-Big committed Jul 17, 2023
1 parent 8df9848 commit 65adff9
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions Marlin/src/module/probe.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 65adff9

Please sign in to comment.