|
@ -637,7 +637,7 @@ G29_TYPE GcodeSuite::G29() { |
|
|
if (TERN0(IS_KINEMATIC, !probe.can_reach(abl.probePos))) continue; |
|
|
if (TERN0(IS_KINEMATIC, !probe.can_reach(abl.probePos))) continue; |
|
|
|
|
|
|
|
|
if (abl.verbose_level) SERIAL_ECHOLNPAIR("Probing mesh point ", pt_index, "/", abl.abl_points, "."); |
|
|
if (abl.verbose_level) SERIAL_ECHOLNPAIR("Probing mesh point ", pt_index, "/", abl.abl_points, "."); |
|
|
TERN_(HAS_STATUS_MESSAGE, ui.status_printf_P(0, PSTR(S_FMT " %i/%i"), GET_TEXT(MSG_PROBING_MESH), int(pt_index), int(abl.abl_points))); |
|
|
TERN_(HAS_STATUS_MESSAGE, ui.status_printf_P(0, PSTR(S_FMT " %i/%i"), GET_TEXT(MSG_PROBING_POINT), int(pt_index), int(abl.abl_points))); |
|
|
|
|
|
|
|
|
abl.measured_z = faux ? 0.001f * random(-100, 101) : probe.probe_at_point(abl.probePos, raise_after, abl.verbose_level); |
|
|
abl.measured_z = faux ? 0.001f * random(-100, 101) : probe.probe_at_point(abl.probePos, raise_after, abl.verbose_level); |
|
|
|
|
|
|
|
@ -682,7 +682,7 @@ G29_TYPE GcodeSuite::G29() { |
|
|
|
|
|
|
|
|
LOOP_L_N(i, 3) { |
|
|
LOOP_L_N(i, 3) { |
|
|
if (abl.verbose_level) SERIAL_ECHOLNPAIR("Probing point ", i + 1, "/3."); |
|
|
if (abl.verbose_level) SERIAL_ECHOLNPAIR("Probing point ", i + 1, "/3."); |
|
|
TERN_(HAS_STATUS_MESSAGE, ui.status_printf_P(0, PSTR(S_FMT " %i/3"), GET_TEXT(MSG_PROBING_MESH), int(i + 1))); |
|
|
TERN_(HAS_STATUS_MESSAGE, ui.status_printf_P(0, PSTR(S_FMT " %i/3"), GET_TEXT(MSG_PROBING_POINT), int(i + 1))); |
|
|
|
|
|
|
|
|
// Retain the last probe position
|
|
|
// Retain the last probe position
|
|
|
abl.probePos = xy_pos_t(points[i]); |
|
|
abl.probePos = xy_pos_t(points[i]); |
|
|