diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2017-09-05 23:07:45 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2017-09-06 12:03:49 -0400 |
commit | dfdcbece5325e0545e00ae96937a1d6da6623435 (patch) | |
tree | 70f72392237febaae3d52ef8bac877f8256fa790 /klippy/mcu.py | |
parent | 5b62f15c6df3bd4830ad15698901f8ac9cdf6168 (diff) | |
download | kutter-dfdcbece5325e0545e00ae96937a1d6da6623435.tar.gz kutter-dfdcbece5325e0545e00ae96937a1d6da6623435.tar.xz kutter-dfdcbece5325e0545e00ae96937a1d6da6623435.zip |
mcu: Improve error descriptions in Common_MCU_errors
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/mcu.py')
-rw-r--r-- | klippy/mcu.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/klippy/mcu.py b/klippy/mcu.py index c0fc8f6d..fd1a1715 100644 --- a/klippy/mcu.py +++ b/klippy/mcu.py @@ -748,10 +748,10 @@ class MCU: Common_MCU_errors = { ("Timer too close", "No next step", "Missed scheduling of next "): """ This is generally indicative of an intermittent -communication failure.""", +communication failure between micro-controller and host.""", ("ADC out of range",): """ This generally occurs when a heater temperature exceeds -it's configured min_temp or max_temp.""", +its configured min_temp or max_temp.""", ("Rescheduled timer in the past", "Stepper too far in past"): """ This generally occurs when the micro-controller has been requested to step at a rate higher than it is capable of |