Skip to content

Commit fb3e8da

Browse files
thisiskeithbDarred
authored andcommitted
⏪️ Revert ABL G29 feedrate (MarlinFirmware#22574)
Reverts 9130f58
1 parent b787432 commit fb3e8da

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

Marlin/src/gcode/bedlevel/abl/G29.cpp

-2
Original file line numberDiff line numberDiff line change
@@ -363,8 +363,6 @@ G29_TYPE GcodeSuite::G29() {
363363
#if ABL_USES_GRID
364364

365365
xy_probe_feedrate_mm_s = MMM_TO_MMS(parser.linearval('S', XY_PROBE_FEEDRATE));
366-
if (!xy_probe_feedrate_mm_s) xy_probe_feedrate_mm_s = PLANNER_XY_FEEDRATE();
367-
NOLESS(xy_probe_feedrate_mm_s, planner.settings.min_feedrate_mm_s);
368366

369367
const float x_min = probe.min_x(), x_max = probe.max_x(),
370368
y_min = probe.min_y(), y_max = probe.max_y();

Marlin/src/module/motion.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -483,7 +483,7 @@ void do_blocking_move_to(LINEAR_AXIS_ARGS(const float), const_feedRate_t fr_mm_s
483483
DEBUG_SECTION(log_move, "do_blocking_move_to", DEBUGGING(LEVELING));
484484
if (DEBUGGING(LEVELING)) DEBUG_XYZ("> ", LINEAR_AXIS_ARGS());
485485

486-
const feedRate_t xy_feedrate = fr_mm_s ?: PLANNER_XY_FEEDRATE();
486+
const feedRate_t xy_feedrate = fr_mm_s ?: feedRate_t(XY_PROBE_FEEDRATE_MM_S);
487487

488488
#if HAS_Z_AXIS
489489
const feedRate_t z_feedrate = fr_mm_s ?: homing_feedrate(Z_AXIS);

0 commit comments

Comments
 (0)