Gcode documentation

This commit is contained in:
Alex Voinea 2023-05-01 02:46:19 +02:00
parent cfc8ffe8a3
commit 11e1806e0c
No known key found for this signature in database
GPG Key ID: 37EDFD565CB33BAD
1 changed files with 7 additions and 10 deletions

View File

@ -4957,7 +4957,7 @@ void process_commands()
Default 3x3 grid can be changed on MK2.5/s and MK3/s to 7x7 grid. Default 3x3 grid can be changed on MK2.5/s and MK3/s to 7x7 grid.
#### Usage #### Usage
G80 [ N | R | V | L | R | F | B ] G80 [ N | R | V | L | R | F | B | X | Y | W | H ]
#### Parameters #### Parameters
- `N` - Number of mesh points on x axis. Default is 3. Valid values are 3 and 7. - `N` - Number of mesh points on x axis. Default is 3. Valid values are 3 and 7.
@ -4970,16 +4970,13 @@ void process_commands()
- `R` - Right Bed Level correct value in um. - `R` - Right Bed Level correct value in um.
- `F` - Front Bed Level correct value in um. - `F` - Front Bed Level correct value in um.
- `B` - Back Bed Level correct value in um. - `B` - Back Bed Level correct value in um.
*/
/* The following parameters are used to define the area used by the print:
* Probes a grid and produces a mesh to compensate for variable bed height - `X` - area lower left point X coordinate
* The S0 report the points as below - `Y` - area lower left point Y coordinate
* +----> X-axis - `W` - area width (on X axis)
* | - `H` - area height (on Y axis)
* | */
* v Y-axis
*/
case 80: { case 80: {
gcode_G80(); gcode_G80();