thinkyhead tombrazier

M201 - Print / Travel Move Limits

motion Set acceleration / frequency limits for print and travel moves.

Description

Set the max acceleration for one or more axes (in current units-per-second per-second). The acceleration limit for extruder(s) only applies for print moves where at least one other axis is also in motion.

To set the acceleration limit for retract / recover in which only the E axis is moving use M204 R instead.

With XY_FREQUENCY_LIMIT you can also set the XY frequency limits, described below.

Notes

View the current setting by sending M201 with no parameters or M503.

If EEPROM_SETTINGS is enabled, these are saved with M500, loaded with M501, and reset with M502.

Usage

M201 [E<accel>] [F<Hz>] [S<percent>] [T<index>] [X<accel>] [Y<accel>] [Z<accel>]

Parameters

[E<accel>]

E axis max acceleration

    [F<Hz>]
    XY_FREQUENCY_LIMIT

    Planner frequency limit. The max frequency of direction changes for the XY axes.

      [S<percent>]
      XY_FREQUENCY_LIMIT

      Planner XY frequency minimum speed percentage. The min speed reduction to apply when the frequency limit is exceeded.

        [T<index>]
        DISTINCT_E_FACTORS

        Target extruder

          [X<accel>]

          X axis max acceleration

            [Y<accel>]

            Y axis max acceleration

              [Z<accel>]

              Z axis max acceleration

                Related Media

                Examples

                Set max acceleration lower so it sounds like a robot:

                M201 X50 Y50

                Set the max acceleration for E1 print moves:

                M201 E8000 T1

                Set frequency limits for the XY axes:

                M201 F60 S47

                If the X or Y axis wants to change direction again within 1/60th of a second, reduce the speed by up to 53%.