| m0201 |
Print Move Limits |
Set acceleration and frequency limits for print moves. |
thinkyhead |
motion |
|
| View the current setting with [`M503`](/docs/gcode/M503.html). |
| If `EEPROM_SETTINGS` is enabled, these are saved with [`M500`](/docs/gcode/M500.html), loaded with [`M501`](/docs/gcode/M501.html), and reset with [`M502`](/docs/gcode/M502.html). |
|
| tag |
optional |
description |
values |
| X |
true |
X axis max acceleration |
|
|
| tag |
optional |
description |
values |
| Y |
true |
Y axis max acceleration |
|
|
| tag |
optional |
description |
values |
| Z |
true |
Z axis max acceleration |
|
|
| tag |
optional |
description |
values |
| E |
true |
E axis max acceleration |
|
|
| tag |
optional |
description |
values |
| T |
true |
Target extruder (Requires `DISTINCT_E_FACTORS`) |
|
|
| tag |
optional |
description |
values |
| F |
true |
Planner frequency limit (Requires `XY_FREQUENCY_LIMIT`) |
|
|
| tag |
optional |
description |
values |
| S |
true |
Planner XY frequency minimum speed percentage (Requires `XY_FREQUENCY_LIMIT`) |
|
|
|
|
| pre |
code |
| Set max acceleration lower so it sounds like a robot: |
M201 X50 Y50 |
|
|