diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2017-09-18 22:53:12 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2017-09-19 17:25:43 -0400 |
commit | 008be18f41a0ff7c814edbe6f979d39ffeff6727 (patch) | |
tree | 1851a0caf684281170caab136675645fbb0b51b0 /klippy/toolhead.py | |
parent | 13812aa1c9f76c869f70de0e1934750c70914898 (diff) | |
download | kutter-008be18f41a0ff7c814edbe6f979d39ffeff6727.tar.gz kutter-008be18f41a0ff7c814edbe6f979d39ffeff6727.tar.xz kutter-008be18f41a0ff7c814edbe6f979d39ffeff6727.zip |
clocksync: Don't export get_last_clock()
Everywhere the data in get_last_clock() is used can be done just as
easily with estimated_print_time().
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/toolhead.py')
-rw-r--r-- | klippy/toolhead.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/klippy/toolhead.py b/klippy/toolhead.py index c0889306..fadbbae6 100644 --- a/klippy/toolhead.py +++ b/klippy/toolhead.py @@ -357,6 +357,7 @@ class ToolHead: self.commanded_pos[3] = extrude_pos # Misc commands def check_active(self, eventtime): + self.mcu.check_active(self.print_time, eventtime) if not self.sync_print_time: return True return self.print_time + 60. > self.mcu.estimated_print_time(eventtime) |