aboutsummaryrefslogtreecommitdiffstats
path: root/klippy
diff options
context:
space:
mode:
Diffstat (limited to 'klippy')
-rw-r--r--klippy/mcu.py2
-rw-r--r--klippy/stepper.py3
2 files changed, 2 insertions, 3 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
diff --git a/klippy/stepper.py b/klippy/stepper.py
index a110843d..ab981e96 100644
--- a/klippy/stepper.py
+++ b/klippy/stepper.py
@@ -61,8 +61,7 @@ class MCU_stepper:
self.set_stepper_kinematics(sk)
def _build_config(self):
self._mcu.add_config_cmd(
- "config_stepper oid=%d step_pin=%s dir_pin=%s"
- " min_stop_interval=0 invert_step=%d" % (
+ "config_stepper oid=%d step_pin=%s dir_pin=%s invert_step=%d" % (
self._oid, self._step_pin, self._dir_pin, self._invert_step))
self._mcu.add_config_cmd("reset_step_clock oid=%d clock=0"
% (self._oid,), on_restart=True)