M204 - better old_new separation

This commit is contained in:
Alex Voinea 2020-01-15 22:35:34 +02:00
parent 622319f86c
commit 47ddc2e902
No known key found for this signature in database
GPG key ID: F5034E7CFCF2F973

View file

@ -7012,20 +7012,22 @@ Sigma_Exit:
/*! /*!
### M204 - Acceleration settings <a href="https://reprap.org/wiki/G-code#M204:_Set_default_acceleration">M204: Set default acceleration</a> ### M204 - Acceleration settings <a href="https://reprap.org/wiki/G-code#M204:_Set_default_acceleration">M204: Set default acceleration</a>
#### Usage
Old format: #### Old format:
##### Usage
M204 [ S | T ] M204 [ S | T ]
New format:
##### Parameters
M204 [ P | R | T ]
#### Parameters
Old format:
- `S` - normal moves - `S` - normal moves
- `T` - filmanent only moves - `T` - filmanent only moves
New format: #### New format:
##### Usage
M204 [ P | R | T ]
##### Parameters
- `P` - printing moves - `P` - printing moves
- `R` - filmanent only moves - `R` - filmanent only moves
- `T` - travel moves (as of now T is ignored) - `T` - travel moves (as of now T is ignored)