️ Revert ABL G29 feedrate (#22574)

Reverts 9130f58
This commit is contained in:
Keith Bennett
2021-08-17 20:27:21 -07:00
committed by Scott Lahteine
parent f803d74bc9
commit 4219ae9106
2 changed files with 1 additions and 3 deletions

View File

@ -363,8 +363,6 @@ G29_TYPE GcodeSuite::G29() {
#if ABL_USES_GRID
xy_probe_feedrate_mm_s = MMM_TO_MMS(parser.linearval('S', XY_PROBE_FEEDRATE));
if (!xy_probe_feedrate_mm_s) xy_probe_feedrate_mm_s = PLANNER_XY_FEEDRATE();
NOLESS(xy_probe_feedrate_mm_s, planner.settings.min_feedrate_mm_s);
const float x_min = probe.min_x(), x_max = probe.max_x(),
y_min = probe.min_y(), y_max = probe.max_y();