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

github.com/Klipper3d/klipper.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2022-09-15 00:49:25 +0300
committerKevin O'Connor <kevin@koconnor.net>2022-09-15 00:49:25 +0300
commit8cdb2278d7f8045a8abc1648c8e7e7c347f0c971 (patch)
treeced1a1899c8a9631a8beb6587b6957ff11ed6e55
parent79be427757f60bef28b600c04c1b32840f566c4d (diff)
docs: Add an example corexy homing macro to TMC_Drivers.md
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
-rw-r--r--docs/TMC_Drivers.md17
1 files changed, 17 insertions, 0 deletions
diff --git a/docs/TMC_Drivers.md b/docs/TMC_Drivers.md
index 194519692..b036b57e0 100644
--- a/docs/TMC_Drivers.md
+++ b/docs/TMC_Drivers.md
@@ -409,6 +409,23 @@ restrictions:
limit (which may skew the stall detection). The pause is necessary
to ensure the driver's stall flag is cleared prior to homing again.
+An example CoreXY homing macro might look like:
+```
+[gcode_macro HOME]
+gcode:
+ G90
+ # Home Z
+ G28 Z0
+ G1 Z10 F1200
+ # Home Y
+ G28 Y0
+ G1 Y5 F1200
+ # Home X
+ G4 P2000
+ G28 X0
+ G1 X5 F1200
+```
+
## Querying and diagnosing driver settings
The `[DUMP_TMC command](G-Codes.md#dump_tmc) is a useful tool when