Updated Marlin G Code (markdown)
parent
d01672273a
commit
9718d64de2
1 changed files with 9 additions and 1 deletions
|
|
@ -1,4 +1,6 @@
|
|||
[G0/G1](#g0g1-move): Move
|
||||
[G90](#g90-set-to-absolute-positioning): Set to Absolute Positioning
|
||||
[G91](#g91-set-to-relative-positioning): Set to Relative Positioning
|
||||
|
||||
Move the specified axes to new coordinates at an optional speed, limited to the max speed of the machine. Coordinates may be Absolute or Relative depending on the positioning mode ([G90](#g90-set-to-absolute-positioning) / [G91](#g91-set-to-relative-positioning)). Absolute positioning is the default for RepRap machines.
|
||||
|
||||
|
|
@ -13,9 +15,15 @@ Move the specified axes to new coordinates at an optional speed, limited to the
|
|||
F = Feedrate in mm/min
|
||||
S = Endstop check. 1=yes 0=no
|
||||
|
||||
###G90: Set to Absolute Positioning
|
||||
### G90: Set to Absolute Positioning
|
||||
|
||||
Set the machine positioning to use Absolute coordinates (the default). In this mode movement coordinates specify the absolute destination. This is the preferred mode because relative positioning is prone to cumulative errors due to imperfect floating point precision.
|
||||
|
||||
Usage: G90
|
||||
|
||||
### G91: Set to Relative Positioning
|
||||
|
||||
Set the machine positioning to use Relative coordinates. In this mode movement coordinates specify the relative movement, starting from 0 in every axis. This mode is not often produced by slicers, but may be used in start/end g-code sequences, script-generated g-code, or in other special cases.
|
||||
|
||||
Usage: G91
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue