Add M201 paramters to documentation

Also fixed the reprap link for M201
This commit is contained in:
Guðni Már Gilbert 2022-03-13 15:53:51 +00:00
parent 8e2d44987f
commit 7f751ae6ac

View file

@ -7242,8 +7242,17 @@ Sigma_Exit:
break;
/*!
### M201 - Set Print Max Acceleration <a href="https://reprap.org/wiki/G-code#M201:_Set_max_printing_acceleration">M201: Set max printing acceleration</a>
### M201 - Set Print Max Acceleration <a href="https://reprap.org/wiki/G-code#M201:_Set_max_acceleration">M201: Set max printing acceleration</a>
For each axis individually.
##### Usage
M201 [ X | Y | Z | E ]
##### Parameters
- `X` - Acceleration for X axis in units/s^2
- `Y` - Acceleration for Y axis in units/s^2
- `Z` - Acceleration for Z axis in units/s^2
- `E` - Acceleration for the active or specified extruder in units/s^2
*/
case 201:
for (int8_t i = 0; i < NUM_AXIS; i++)