File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
Firmware/Marlin/src/gcode/motion Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -298,7 +298,7 @@ void plan_arc(
298
298
// d) allows the print head to stop in the remining length of the curve within all configured maximum accelerations.
299
299
// The last has to be calculated every time through the loop.
300
300
const float limiting_accel = _MIN (planner.settings .max_acceleration_mm_per_s2 [axis_p], planner.settings .max_acceleration_mm_per_s2 [axis_q]),
301
- limiting_speed = _MIN (planner.settings .max_feedrate_mm_s [axis_p], planner.settings .max_acceleration_mm_per_s2 [axis_q]),
301
+ limiting_speed = _MIN (planner.settings .max_feedrate_mm_s [axis_p], planner.settings .max_feedrate_mm_s [axis_q]),
302
302
limiting_speed_sqr = _MIN (sq (limiting_speed), limiting_accel * radius, sq (scaled_fr_mm_s));
303
303
float arc_mm_remaining = flat_mm;
304
304
You can’t perform that action at this time.
0 commit comments