Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/MarlinFirmware/MarlinDocumentation.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/_gcode
diff options
context:
space:
mode:
authorScott Lahteine <github@thinkyhead.com>2021-08-28 01:45:10 +0300
committerScott Lahteine <github@thinkyhead.com>2021-08-28 01:45:10 +0300
commit4048b1b223643ee66d720e70351fe5b71d9220bd (patch)
treed30291ee45565a3e6611f337b8c550287b5c6766 /_gcode
parent1996a20ed4bc49befedaf2d9a8f722d9dafbbeab (diff)
mm/m => mm/min
Diffstat (limited to '_gcode')
-rw-r--r--_gcode/G000-G001.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/_gcode/G000-G001.md b/_gcode/G000-G001.md
index dcfc84a4..c6bdc5b6 100644
--- a/_gcode/G000-G001.md
+++ b/_gcode/G000-G001.md
@@ -76,21 +76,21 @@ examples:
pre: The most basic move sets a feedrate and moves the tool to the given position.
code:
- G0 X12 ; move to 12mm on the X axis
- - G0 F1500 ; set the feedrate to 1500mm/m
+ - G0 F1500 ; set the feedrate to 1500 mm/min
- G1 X90.6 Y13.8 ; move to 90.6mm on the X axis and 13.8mm on the Y axis
-
pre: There are some caveats related with feedrates. Consider the following&#x3A;
code:
- - G1 F1500 ; set the feedrate to 1500mm/m
+ - G1 F1500 ; set the feedrate to 1500 mm/min
- G92 E0
- G1 X50 Y25.3 E22.4 ; move while extruding
- post: In the above example the feedrate is set to 1500mm/m, then the tool is moved 50mm on the X axis and 25.3mm on the Y axis while extruding 22.4mm of filament between the two points.
+ post: In the above example the feedrate is set to 1500 mm/min, then the tool is moved 50mm on the X axis and 25.3mm on the Y axis while extruding 22.4mm of filament between the two points.
-
code:
- G1 F1500
- G92 E0
- G1 X50 Y25.3 E22.4 F3000
- post: However, in the above example, we set a feedrate of 1500mm/m on line 1 then do the move described above, accelerating to a feedrate of 3000mm/m (if possible). The extrusion will accelerate along with the X and Y movement, so everything stays synchronized.
+ post: However, in the above example, we set a feedrate of 1500 mm/min on line 1 then do the move described above, accelerating to a feedrate of 3000 mm/min (if possible). The extrusion will accelerate along with the X and Y movement, so everything stays synchronized.
---
The `G0` and `G1` commands add a linear move to the queue to be performed after all previous moves are completed. These commands yield control back to the command parser as soon as the move is queued, but they may delay the command parser while awaiting a slot in the queue.