aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--klippy/mcu.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/klippy/mcu.py b/klippy/mcu.py
index 452470d4..143b4042 100644
--- a/klippy/mcu.py
+++ b/klippy/mcu.py
@@ -304,9 +304,11 @@ class MCU:
self.output_file_mode = True
self.serial.connect_file(debugoutput, dictionary)
self._mcu_freq = float(self.serial.msgparser.config['CLOCK_FREQ'])
- def dummy_build_config():
+ def dummy_send_config():
+ for c in self._config_cmds:
+ self.send(self.create_command(c))
self._init_steppersync(500)
- self.build_config = dummy_build_config
+ self._send_config = dummy_send_config
if not pace:
def dummy_set_print_start_time(eventtime):
pass