Skip to content

Commit 049ef12

Browse files
committed
✨ M210 Homing Feedrate
MarlinFirmware/Marlin#27456
1 parent 77b970f commit 049ef12

File tree

2 files changed

+89
-1
lines changed

2 files changed

+89
-1
lines changed

_gcode/M201.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ codes: [ M201 ]
1111
related: [ M204 ]
1212

1313
notes:
14-
- View the current setting with [`M503`](/docs/gcode/M503.html).
14+
- View the current setting by sending `M201` with no parameters or [`M503`](/docs/gcode/M503.html).
1515
- If `EEPROM_SETTINGS` is enabled, these are saved with [`M500`](/docs/gcode/M500.html), loaded with [`M501`](/docs/gcode/M501.html), and reset with [`M502`](/docs/gcode/M502.html).
1616

1717
parameters:

_gcode/M210.md

+88
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
1+
---
2+
tag: m0210
3+
title: Homing Feedrate
4+
brief: Set homing feedrate for one or more axes
5+
author: thinkyhead
6+
7+
since: 2.1.3
8+
requires: EDITABLE_HOMING_FEEDRATE
9+
10+
group: calibration
11+
codes: [ M210 ]
12+
related: [ G28 ]
13+
14+
notes:
15+
- View the current setting by sending `M210` with no parameters or [`M503`](/docs/gcode/M503.html).
16+
- If `EEPROM_SETTINGS` is enabled, these are saved with [`M500`](/docs/gcode/M500.html), loaded with [`M501`](/docs/gcode/M501.html), and reset with [`M502`](/docs/gcode/M502.html).
17+
18+
parameters:
19+
20+
- tag: X
21+
optional: true
22+
description: X homing feedrate
23+
values:
24+
- tag: feedrate
25+
type: float
26+
- tag: Y
27+
optional: true
28+
description: Y homing feedrate
29+
values:
30+
- tag: feedrate
31+
type: float
32+
- tag: Z
33+
optional: true
34+
description: Z homing feedrate
35+
values:
36+
- tag: feedrate
37+
type: float
38+
- tag: A
39+
optional: true
40+
requires: I_DRIVER_TYPE, AXIS4_NAME 'A'
41+
description: A homing feedrate
42+
values:
43+
- tag: feedrate
44+
type: float
45+
- tag: B
46+
optional: true
47+
requires: J_DRIVER_TYPE, AXIS4_NAME 'B'
48+
description: B homing feedrate
49+
values:
50+
- tag: feedrate
51+
type: float
52+
- tag: C
53+
optional: true
54+
requires: K_DRIVER_TYPE, AXIS4_NAME 'C'
55+
description: C homing feedrate
56+
values:
57+
- tag: feedrate
58+
type: float
59+
- tag: U
60+
optional: true
61+
requires: U_DRIVER_TYPE, AXIS4_NAME 'U'
62+
description: U homing feedrate
63+
values:
64+
- tag: feedrate
65+
type: float
66+
- tag: V
67+
optional: true
68+
requires: V_DRIVER_TYPE, AXIS4_NAME 'V'
69+
description: V homing feedrate
70+
values:
71+
- tag: feedrate
72+
type: float
73+
- tag: W
74+
optional: true
75+
requires: W_DRIVER_TYPE, AXIS4_NAME 'W'
76+
description: W homing feedrate
77+
values:
78+
- tag: feedrate
79+
type: float
80+
81+
examples:
82+
83+
- pre: Set the X homing feedrate to 2400 mm/min
84+
code: M210 X2400
85+
86+
---
87+
88+
Set the [`G28`](/docs/gcode/G028.html) homing feedrate for one or more axes.

0 commit comments

Comments
 (0)