|
@@ -751,7 +751,7 @@ float Probe::probe_at_point(const_float_t rx, const_float_t ry, const ProbePtRai
|
751
|
751
|
if (DEBUGGING(LEVELING)) {
|
752
|
752
|
DEBUG_ECHOLNPAIR(
|
753
|
753
|
"...(", LOGICAL_X_POSITION(rx), ", ", LOGICAL_Y_POSITION(ry),
|
754
|
|
- ", ", raise_after == PROBE_PT_RAISE ? "raise" : raise_after == PROBE_PT_STOW ? "stow" : "none",
|
|
754
|
+ ", ", raise_after == PROBE_PT_RAISE ? "raise" : raise_after == PROBE_PT_LAST_STOW ? "stow (last)" : raise_after == PROBE_PT_STOW ? "stow" : "none",
|
755
|
755
|
", ", verbose_level,
|
756
|
756
|
", ", probe_relative ? "probe" : "nozzle", "_relative)"
|
757
|
757
|
);
|
|
@@ -782,7 +782,7 @@ float Probe::probe_at_point(const_float_t rx, const_float_t ry, const ProbePtRai
|
782
|
782
|
const bool big_raise = raise_after == PROBE_PT_BIG_RAISE;
|
783
|
783
|
if (big_raise || raise_after == PROBE_PT_RAISE)
|
784
|
784
|
do_blocking_move_to_z(current_position.z + (big_raise ? 25 : Z_CLEARANCE_BETWEEN_PROBES), z_probe_fast_mm_s);
|
785
|
|
- else if (raise_after == PROBE_PT_STOW)
|
|
785
|
+ else if (raise_after == PROBE_PT_STOW || raise_after == PROBE_PT_LAST_STOW)
|
786
|
786
|
if (stow()) measured_z = NAN; // Error on stow?
|
787
|
787
|
|
788
|
788
|
if (verbose_level > 2)
|