26 lines
623 B
Markdown
26 lines
623 B
Markdown
---
|
|
tag: g080
|
|
title: Cancel Current Motion Mode
|
|
brief: Cancel the current motion mode
|
|
author: shitcreek
|
|
|
|
requires: GCODE_MOTION_MODES
|
|
group: motion
|
|
|
|
codes: [ G80 ]
|
|
|
|
notes:
|
|
- Requires `GCODE_MOTION_MODES`.
|
|
|
|
example:
|
|
-
|
|
pre: 'Cancel motion mode G1'
|
|
code:
|
|
- G0 ; sets motion mode to G0
|
|
- X10 Y10 ; moves to X10 Y10 in motion mode G0
|
|
- G80 ; cancels the current motion mode
|
|
- X20 Y20 ; returns unknown command
|
|
---
|
|
|
|
Cancels the current motion mode (G0 G1 G2 G3 G5 G38.X). With `GCODE_MOTION_MODES` enabled, Marlin will remember the last used motion mode which can then be canceled with `G80`.
|