aboutsummaryrefslogtreecommitdiffstats
path: root/klippy
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2018-09-25 15:44:45 -0400
committerKevin O'Connor <kevin@koconnor.net>2018-09-25 15:44:45 -0400
commit364faf497bc0db92ee280acbbaa6fcdd2982d89f (patch)
treea847097ebfe13e12f95c58564c45fa688c4f7a8d /klippy
parent18b56c3cda3e8d886ea6f27b875525d6b3b139a1 (diff)
downloadkutter-364faf497bc0db92ee280acbbaa6fcdd2982d89f.tar.gz
kutter-364faf497bc0db92ee280acbbaa6fcdd2982d89f.tar.xz
kutter-364faf497bc0db92ee280acbbaa6fcdd2982d89f.zip
toolhead: Update look-ahead flush comment
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy')
-rw-r--r--klippy/toolhead.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/klippy/toolhead.py b/klippy/toolhead.py
index 96210152..c10c29e4 100644
--- a/klippy/toolhead.py
+++ b/klippy/toolhead.py
@@ -187,9 +187,7 @@ class MoveQueue:
move.calc_junction(self.queue[-2])
self.junction_flush -= move.min_move_t
if self.junction_flush <= 0.:
- # There are enough queued moves to return to zero velocity
- # from the first move's maximum possible velocity, so at
- # least one move can be flushed.
+ # Enough moves have been queued to reach the target flush time.
self.flush(lazy=True)
STALL_TIME = 0.100