0
0
Fork 0
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:
Scott Mikutsky 2023-07-17 00:29:56 -04:00 committed by GitHub
parent 810c1693ac
commit 3815157214
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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