Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

misc improvements on homing and feedrate #543

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion _gcode/G000-G001.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ parameters:

- tag: F
optional: true
description: The maximum movement rate of the move between the start and end point. The feedrate set here applies to subsequent moves that omit this parameter.
description: The maximum movement rate (in mm/min) of the move between the start and end point. The feedrate set here applies to subsequent moves that omit this parameter.
values:
- tag: rate
type: float
Expand Down
2 changes: 1 addition & 1 deletion _gcode/G028.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ author: thinkyhead

group: calibration

codes: [ G28 ]
codes: [ G28, G34 ]
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why was G34 added here? This is the G28 page, so it should be G28.


notes: |
- Homing is required before [`G29`](/docs/gcode/G029.html), [`M48`](/docs/gcode/M048.html), and some other procedures.
Expand Down
4 changes: 2 additions & 2 deletions _gcode/G034-zsaa.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ experimental: true
group: calibration

codes: [ G34 ]
related: [ M422, M906, M907 ]
related: [ G28, M422, M906, M907 ]

parameters:

Expand Down Expand Up @@ -38,4 +38,4 @@ example:

---

Align multiple Z stepper motors using a bed probe by probing one position per stepper. See [`M422`](/docs/gcode/M422.html) for Z-Stepper automatic alignment parameter selection.
Align multiple Z stepper motors using a bed probe by probing one position per stepper. See [`M422`](/docs/gcode/M422.html) for Z-Stepper automatic alignment parameter selection. `G28` is done beforehand and is implicit.