Skip to content

Commit

Permalink
Fix multi-probe rising too high and then failing
Browse files Browse the repository at this point in the history
  • Loading branch information
Sophist-UK committed Mar 4, 2024
1 parent fb4be94 commit 25b78a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Marlin/src/module/probe.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -758,7 +758,7 @@ float Probe::run_z_probe(const bool sanity_check/*=true*/) {
if (current_position.z > z) {
// Probe down fast. If the probe never triggered, raise for probe clearance
if (!probe_down_to_z(z, z_probe_fast_mm_s))
do_blocking_move_to_z(current_position.z + Z_CLEARANCE_BETWEEN_PROBES, z_probe_fast_mm_s);
do_blocking_move_to_z(current_position.z + Z_CLEARANCE_MULTI_PROBE, z_probe_fast_mm_s);
}
#endif

Expand Down

0 comments on commit 25b78a5

Please sign in to comment.