diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2021-01-08 12:37:57 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2021-01-08 14:01:34 -0500 |
commit | 8260a3a0c38e25168e3dfc414ed62fd23e380b21 (patch) | |
tree | 834afc438c7f3e441b85f14aadb724aaaf2499be /klippy/toolhead.py | |
parent | ea85d419dea23cac464763c9b36e1b59c9074588 (diff) | |
download | kutter-8260a3a0c38e25168e3dfc414ed62fd23e380b21.tar.gz kutter-8260a3a0c38e25168e3dfc414ed62fd23e380b21.tar.xz kutter-8260a3a0c38e25168e3dfc414ed62fd23e380b21.zip |
homing: Make homing.py an "extras" module
Move klippy/homing.py to klippy/extras/homing.py and convert the code
to an "extras" modules.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/toolhead.py')
-rw-r--r-- | klippy/toolhead.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/klippy/toolhead.py b/klippy/toolhead.py index 5c229dc7..c6ba130f 100644 --- a/klippy/toolhead.py +++ b/klippy/toolhead.py @@ -273,8 +273,8 @@ class ToolHead: desc=self.cmd_SET_VELOCITY_LIMIT_help) gcode.register_command('M204', self.cmd_M204) # Load some default modules - modules = ["gcode_move", "idle_timeout", "statistics", "manual_probe", - "tuning_tower"] + modules = ["gcode_move", "homing", "idle_timeout", "statistics", + "manual_probe", "tuning_tower"] for module_name in modules: self.printer.load_object(config, module_name) # Print time tracking |