diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2016-11-15 20:00:20 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2016-11-16 12:09:26 -0500 |
commit | 7ef8c0442a719ef80b9ef4109ab7e8fa57157854 (patch) | |
tree | 816651a11c21e6c40c3166e7251d5e684267222f /klippy/klippy.py | |
parent | 6ab269ceb776057a6d99850dc0fa47c7345faaa2 (diff) | |
download | kutter-7ef8c0442a719ef80b9ef4109ab7e8fa57157854.tar.gz kutter-7ef8c0442a719ef80b9ef4109ab7e8fa57157854.tar.xz kutter-7ef8c0442a719ef80b9ef4109ab7e8fa57157854.zip |
mcu: Remove support for DummyMCU class
It's easier to test with the file output mechanism and the DummyMCU
code has grown stale.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/klippy.py')
-rw-r--r-- | klippy/klippy.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/klippy/klippy.py b/klippy/klippy.py index 6668ef4c..ecf5da44 100644 --- a/klippy/klippy.py +++ b/klippy/klippy.py @@ -79,10 +79,6 @@ class Printer: self.build_config() self.stats_timer = self.reactor.register_timer( self.stats, self.reactor.NOW) - def connect_debug(self, debugoutput): - self.mcu = mcu.DummyMCU(debugoutput) - self.mcu.connect() - self.build_config() def connect_file(self, output, dictionary): self.mcu = mcu.MCU(self, ConfigWrapper(self, 'mcu')) self.mcu.connect_file(output, dictionary) |