diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2021-05-02 17:39:58 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2021-05-02 17:51:15 -0400 |
commit | 89082b494f9565c6685530b58e0780327b28ceb8 (patch) | |
tree | 6a124746243c7fe0c653c48fbd6c1b1c13d48ea1 /klippy/mcu.py | |
parent | 8443c0b0f8c64c332f8141175d6d806464679baa (diff) | |
download | kutter-89082b494f9565c6685530b58e0780327b28ceb8.tar.gz kutter-89082b494f9565c6685530b58e0780327b28ceb8.tar.xz kutter-89082b494f9565c6685530b58e0780327b28ceb8.zip |
klippy: Report known software versions on a protocol error during connection
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 522fff2f..6fb66247 100644 --- a/klippy/mcu.py +++ b/klippy/mcu.py @@ -811,7 +811,7 @@ class MCU: self._name, eventtime) self._printer.invoke_shutdown("Lost communication with MCU '%s'" % ( self._name,)) - def get_status(self, eventtime): + def get_status(self, eventtime=None): return dict(self._get_status_info) def stats(self, eventtime): load = "mcu_awake=%.03f mcu_task_avg=%.06f mcu_task_stddev=%.06f" % ( |