Skip to content

Commit 7f751ae

Browse files
committed
Add M201 paramters to documentation
Also fixed the reprap link for M201
1 parent 8e2d449 commit 7f751ae

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

Firmware/Marlin_main.cpp

+10-1
Original file line numberDiff line numberDiff line change
@@ -7242,8 +7242,17 @@ SERIAL_PROTOCOLPGM("\n\n");
72427242
break;
72437243

72447244
/*!
7245-
### M201 - Set Print Max Acceleration <a href="https://reprap.org/wiki/G-code#M201:_Set_max_printing_acceleration">M201: Set max printing acceleration</a>
7245+
### M201 - Set Print Max Acceleration <a href="https://reprap.org/wiki/G-code#M201:_Set_max_acceleration">M201: Set max printing acceleration</a>
72467246
For each axis individually.
7247+
##### Usage
7248+
7249+
M201 [ X | Y | Z | E ]
7250+
7251+
##### Parameters
7252+
- `X` - Acceleration for X axis in units/s^2
7253+
- `Y` - Acceleration for Y axis in units/s^2
7254+
- `Z` - Acceleration for Z axis in units/s^2
7255+
- `E` - Acceleration for the active or specified extruder in units/s^2
72477256
*/
72487257
case 201:
72497258
for (int8_t i = 0; i < NUM_AXIS; i++)

0 commit comments

Comments
 (0)