Skip to content

Commit 945347a

Browse files
smikskyEvilGremlin
authored andcommitted
🐛 Ensure BLTouch deploy in HS Mode (MarlinFirmware#26033)
1 parent bd9e446 commit 945347a

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

Marlin/src/module/probe.cpp

+2-4
Original file line numberDiff line numberDiff line change
@@ -596,10 +596,8 @@ bool Probe::probe_down_to_z(const_float_t z, const_feedRate_t fr_mm_s) {
596596
thermalManager.wait_for_hotend_heating(active_extruder);
597597
#endif
598598

599-
#if ENABLED(BLTOUCH)
600-
if (!bltouch.high_speed_mode && bltouch.deploy())
601-
return true; // Deploy in LOW SPEED MODE on every probe action
602-
#endif
599+
// Ensure the BLTouch is deployed. Does nothing if already deployed.
600+
if (TERN0(BLTOUCH, bltouch.deploy())) return true;
603601

604602
#if HAS_Z_SERVO_PROBE && (ENABLED(Z_SERVO_INTERMEDIATE_STOW) || defined(Z_SERVO_MEASURE_ANGLE))
605603
probe_specific_action(true); // Always re-deploy in this case

0 commit comments

Comments
 (0)