mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-01-31 14:12:52 +00:00
🚸 More clearance on fast probe failure
This commit is contained in:
parent
b5899a9664
commit
b3a3cf28d2
1 changed files with 1 additions and 2 deletions
|
@ -767,7 +767,7 @@ float Probe::run_z_probe(const bool sanity_check/*=true*/) {
|
||||||
if (current_position.z > z) {
|
if (current_position.z > z) {
|
||||||
// Probe down fast. If the probe never triggered, raise for probe clearance
|
// Probe down fast. If the probe never triggered, raise for probe clearance
|
||||||
if (!probe_down_to_z(z, z_probe_fast_mm_s))
|
if (!probe_down_to_z(z, z_probe_fast_mm_s))
|
||||||
do_z_clearance(Z_CLEARANCE_BETWEEN_PROBES);
|
do_z_clearance(Z_PROBE_SAFE_CLEARANCE);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -886,7 +886,6 @@ float Probe::run_z_probe(const bool sanity_check/*=true*/) {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* - Switch to PROBING_TOOL if necessary
|
|
||||||
* - Move to the given XY
|
* - Move to the given XY
|
||||||
* - Deploy the probe, if not already deployed
|
* - Deploy the probe, if not already deployed
|
||||||
* - Probe the bed, get the Z position
|
* - Probe the bed, get the Z position
|
||||||
|
|
Loading…
Reference in a new issue