aboutsummaryrefslogtreecommitdiffstats
path: root/klippy
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2016-12-24 12:33:56 -0500
committerKevin O'Connor <kevin@koconnor.net>2016-12-24 12:33:56 -0500
commita9444d3399e29a1ce91fc60bdaf38e9ed78f1414 (patch)
tree8e8bc0b62d0b495b39e46e3920cf7a04b4009a5a /klippy
parent4a16053c002ffb88cd7bdf4dbe9e8a36018dab8d (diff)
downloadkutter-a9444d3399e29a1ce91fc60bdaf38e9ed78f1414.tar.gz
kutter-a9444d3399e29a1ce91fc60bdaf38e9ed78f1414.tar.xz
kutter-a9444d3399e29a1ce91fc60bdaf38e9ed78f1414.zip
mcu: Log the MCU configuration during connect phase
Log the constants reported by the MCU and log the number of move items allocated after configuration. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy')
-rw-r--r--klippy/mcu.py6
-rw-r--r--klippy/serialhdl.py2
2 files changed, 5 insertions, 3 deletions
diff --git a/klippy/mcu.py b/klippy/mcu.py
index e50a6cb3..7afea412 100644
--- a/klippy/mcu.py
+++ b/klippy/mcu.py
@@ -457,11 +457,11 @@ class MCU:
config_params = self.serial.send_with_response(msg, 'config')
if self._config_crc != config_params['crc']:
raise error("Printer CRC does not match config")
- logging.info("Configured")
+ move_count = config_params['move_count']
+ logging.info("Configured (%d moves)" % (move_count,))
stepqueues = tuple(s._stepqueue for s in self._steppers)
self._steppersync = self.ffi_lib.steppersync_alloc(
- self.serial.serialqueue, stepqueues, len(stepqueues),
- config_params['move_count'])
+ self.serial.serialqueue, stepqueues, len(stepqueues), move_count)
for cb in self._init_callbacks:
cb()
# Config creation helpers
diff --git a/klippy/serialhdl.py b/klippy/serialhdl.py
index 2e4bc467..f09c4cd1 100644
--- a/klippy/serialhdl.py
+++ b/klippy/serialhdl.py
@@ -88,6 +88,8 @@ class SerialReader:
self.register_callback(self.handle_unknown, '#unknown')
logging.info("Loaded %d commands (%s)" % (
len(msgparser.messages_by_id), msgparser.version))
+ logging.info("MCU config: %s" % (" ".join(
+ ["%s=%s" % (k, v) for k, v in msgparser.config.items()])))
# Setup for runtime
mcu_baud = float(msgparser.config.get('SERIAL_BAUD', 0.))
if mcu_baud: