From 8faab46ed2fc05495e63bbca8fe3dfa6828f7db3 Mon Sep 17 00:00:00 2001 From: Kevin O'Connor Date: Thu, 12 Jul 2018 22:15:45 -0400 Subject: toolhead: Move kinematic modules to new kinematics/ directory Move extruder.py, cartesian.py, corexy.py, and delta.py to a new kinematics/ sub-directory. This is intended to make adding new kinematics a little easier. Signed-off-by: Kevin O'Connor --- klippy/klippy.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'klippy/klippy.py') diff --git a/klippy/klippy.py b/klippy/klippy.py index 03d71eff..ba6b4579 100644 --- a/klippy/klippy.py +++ b/klippy/klippy.py @@ -7,7 +7,7 @@ import sys, os, optparse, logging, time, threading import collections, ConfigParser, importlib import util, reactor, queuelogger, msgproto -import gcode, pins, heater, mcu, toolhead, extruder +import gcode, pins, heater, mcu, toolhead message_ready = "Printer is ready" @@ -216,7 +216,7 @@ class Printer: m.add_printer_objects(config) for section in fileconfig.sections(): self.try_load_module(config, section) - for m in [toolhead, extruder]: + for m in [toolhead]: m.add_printer_objects(config) # Validate that there are no undefined parameters in the config file valid_sections = { s: 1 for s, o in self.all_config_options } -- cgit v1.2.3-70-g09d2