diff --git a/Marlin/src/gcode/feature/input_shaping/M593.cpp b/Marlin/src/gcode/feature/input_shaping/M593.cpp index aafabb3cb7..a4b3cd3fee 100644 --- a/Marlin/src/gcode/feature/input_shaping/M593.cpp +++ b/Marlin/src/gcode/feature/input_shaping/M593.cpp @@ -49,8 +49,8 @@ void GcodeSuite::M593_report(const bool forReplay/*=true*/) { * D Set the zeta/damping factor. If axes (X, Y, etc.) are not specified, set for all axes. * F Set the frequency. If axes (X, Y, etc.) are not specified, set for all axes. * T[map] Input Shaping type, 0:ZV, 1:EI, 2:2H EI (not implemented yet) - * X<1> Set the given parameters only for the X axis. - * Y<1> Set the given parameters only for the Y axis. + * X Set the given parameters only for the X axis. + * Y Set the given parameters only for the Y axis. */ void GcodeSuite::M593() { if (!parser.seen_any()) return M593_report(); diff --git a/Marlin/src/module/stepper.cpp b/Marlin/src/module/stepper.cpp index 46b21a20b6..70a1e25cec 100644 --- a/Marlin/src/module/stepper.cpp +++ b/Marlin/src/module/stepper.cpp @@ -3015,7 +3015,7 @@ void Stepper::init() { void Stepper::set_shaping_frequency(const AxisEnum axis, const float freq) { // enabling or disabling shaping whilst moving can result in lost steps - Planner::synchronize(); + planner.synchronize(); const bool was_on = hal.isr_state(); hal.isr_off();