aboutsummaryrefslogtreecommitdiffstats
path: root/klippy/toolhead.py
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2018-09-02 13:07:43 -0400
committerKevin O'Connor <kevin@koconnor.net>2018-09-02 13:46:19 -0400
commit8fe8a6deb3b7ea3eca8730d5b1500c2c27c251cd (patch)
treee9dee0f04913f7f4bb1baff0cc532ee819e98300 /klippy/toolhead.py
parent18b04ffe6815987284130337e5eb4f46f3ba1c69 (diff)
downloadkutter-8fe8a6deb3b7ea3eca8730d5b1500c2c27c251cd.tar.gz
kutter-8fe8a6deb3b7ea3eca8730d5b1500c2c27c251cd.tar.xz
kutter-8fe8a6deb3b7ea3eca8730d5b1500c2c27c251cd.zip
statistics: Move stats handling to new "extras" module
Move the generation of statistics to its own module. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/toolhead.py')
-rw-r--r--klippy/toolhead.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/klippy/toolhead.py b/klippy/toolhead.py
index 71a2b7e6..d94eddad 100644
--- a/klippy/toolhead.py
+++ b/klippy/toolhead.py
@@ -233,6 +233,7 @@ class ToolHead:
self.flush_timer = self.reactor.register_timer(self._flush_handler)
self.move_queue.set_flush_time(self.buffer_time_high)
self.printer.try_load_module(config, "idle_timeout")
+ self.printer.try_load_module(config, "statistics")
# Setup iterative solver
ffi_main, ffi_lib = chelper.get_ffi()
self.cmove = ffi_main.gc(ffi_lib.move_alloc(), ffi_lib.free)