diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2021-04-25 15:02:42 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2021-04-30 11:26:19 -0400 |
commit | 8f76e53c0eef351576be7fa2acbb964af031d7b3 (patch) | |
tree | a2e5ca68c7846aa1de993c3ebd445cef36f3844a /klippy/mcu.py | |
parent | b1ea4f3befe202e681115fe4e6b4a5986a581e17 (diff) | |
download | kutter-8f76e53c0eef351576be7fa2acbb964af031d7b3.tar.gz kutter-8f76e53c0eef351576be7fa2acbb964af031d7b3.tar.xz kutter-8f76e53c0eef351576be7fa2acbb964af031d7b3.zip |
stepper: Remove min_stop_interval from mcu code
Now that the host never uses a min_stop_interval, remove it from the
mcu code.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/mcu.py')
-rw-r--r-- | klippy/mcu.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/klippy/mcu.py b/klippy/mcu.py index 849f8deb..fa35c2bf 100644 --- a/klippy/mcu.py +++ b/klippy/mcu.py @@ -824,7 +824,7 @@ class MCU: return False, '%s: %s' % (self._name, stats) Common_MCU_errors = { - ("Timer too close", "No next step"): """ + ("Timer too close",): """ This often indicates the host computer is overloaded. Check for other processes consuming excessive CPU time, high swap usage, disk errors, overheating, unstable voltage, or |