|
|
@ -507,7 +507,7 @@ static bool do_probe_move(const float z, const float fr_mm_m) { |
|
|
|
} |
|
|
|
|
|
|
|
/**
|
|
|
|
* @details Used by probe_pt to do a single Z probe. |
|
|
|
* @details Used by probe_pt to do a single Z probe at the current position. |
|
|
|
* Leaves current_position[Z_AXIS] at the height where the probe triggered. |
|
|
|
* |
|
|
|
* @return The raw Z position where the probe was triggered |
|
|
@ -521,7 +521,8 @@ static float run_z_probe() { |
|
|
|
// Prevent stepper_inactive_time from running out and EXTRUDER_RUNOUT_PREVENT from extruding
|
|
|
|
gcode.refresh_cmd_timeout(); |
|
|
|
|
|
|
|
#if ENABLED(PROBE_DOUBLE_TOUCH) |
|
|
|
// Double-probing does a fast probe followed by a slow probe
|
|
|
|
#if MULTIPLE_PROBING == 2 |
|
|
|
|
|
|
|
// Do a first probe at the fast speed
|
|
|
|
if (do_probe_move(-10, Z_PROBE_SPEED_FAST)) return NAN; |
|
|
@ -549,22 +550,49 @@ static float run_z_probe() { |
|
|
|
} |
|
|
|
#endif |
|
|
|
|
|
|
|
// Move down slowly to find bed, not too far
|
|
|
|
if (do_probe_move(-10, Z_PROBE_SPEED_SLOW)) return NAN; |
|
|
|
|
|
|
|
#if ENABLED(DEBUG_LEVELING_FEATURE) |
|
|
|
if (DEBUGGING(LEVELING)) DEBUG_POS("<<< run_z_probe", current_position); |
|
|
|
#if MULTIPLE_PROBING > 2 |
|
|
|
float probes_total = 0; |
|
|
|
for (uint8_t p = MULTIPLE_PROBING + 1; --p;) { |
|
|
|
#endif |
|
|
|
|
|
|
|
// Debug: compare probe heights
|
|
|
|
#if ENABLED(PROBE_DOUBLE_TOUCH) && ENABLED(DEBUG_LEVELING_FEATURE) |
|
|
|
if (DEBUGGING(LEVELING)) { |
|
|
|
SERIAL_ECHOPAIR("2nd Probe Z:", current_position[Z_AXIS]); |
|
|
|
SERIAL_ECHOLNPAIR(" Discrepancy:", first_probe_z - current_position[Z_AXIS]); |
|
|
|
// Move down slowly to find bed, not too far
|
|
|
|
if (do_probe_move(-10, Z_PROBE_SPEED_SLOW)) return NAN; |
|
|
|
|
|
|
|
#if MULTIPLE_PROBING > 2 |
|
|
|
probes_total += current_position[Z_AXIS]; |
|
|
|
if (p > 1) do_blocking_move_to_z(current_position[Z_AXIS] + Z_CLEARANCE_BETWEEN_PROBES, MMM_TO_MMS(Z_PROBE_SPEED_FAST)); |
|
|
|
} |
|
|
|
#endif |
|
|
|
|
|
|
|
return current_position[Z_AXIS]; |
|
|
|
#if MULTIPLE_PROBING > 2 |
|
|
|
|
|
|
|
// Return the average value of all probes
|
|
|
|
return probes_total * (1.0 / (MULTIPLE_PROBING)); |
|
|
|
|
|
|
|
#elif MULTIPLE_PROBING == 2 |
|
|
|
|
|
|
|
const float z2 = current_position[Z_AXIS]; |
|
|
|
|
|
|
|
#if ENABLED(DEBUG_LEVELING_FEATURE) |
|
|
|
if (DEBUGGING(LEVELING)) { |
|
|
|
SERIAL_ECHOPAIR("2nd Probe Z:", z2); |
|
|
|
SERIAL_ECHOLNPAIR(" Discrepancy:", first_probe_z - z2); |
|
|
|
} |
|
|
|
#endif |
|
|
|
|
|
|
|
// Return a weighted average of the fast and slow probes
|
|
|
|
return (z2 * 3.0 + first_probe_z * 2.0) * 0.2; |
|
|
|
|
|
|
|
#else |
|
|
|
|
|
|
|
// Return the single probe result
|
|
|
|
return current_position[Z_AXIS]; |
|
|
|
|
|
|
|
#endif |
|
|
|
|
|
|
|
#if ENABLED(DEBUG_LEVELING_FEATURE) |
|
|
|
if (DEBUGGING(LEVELING)) DEBUG_POS("<<< run_z_probe", current_position); |
|
|
|
#endif |
|
|
|
} |
|
|
|
|
|
|
|
/**
|
|
|
|