diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2019-03-31 20:30:14 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2019-04-04 18:29:31 -0400 |
commit | 1ab02e522565ba991e13a0629041cadf60066926 (patch) | |
tree | 2b139b88fdec859ea0ad24677aaccdd5b14ea6a9 /klippy/console.py | |
parent | 4c3d50693ee37f82ff2edad6a9779bcfd56fca1a (diff) | |
download | kutter-1ab02e522565ba991e13a0629041cadf60066926.tar.gz kutter-1ab02e522565ba991e13a0629041cadf60066926.tar.xz kutter-1ab02e522565ba991e13a0629041cadf60066926.zip |
bus: Support bus enumerations and add support for reserved pins
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/console.py')
-rwxr-xr-x | klippy/console.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/klippy/console.py b/klippy/console.py index ee1b2331..4548ea36 100755 --- a/klippy/console.py +++ b/klippy/console.py @@ -64,7 +64,7 @@ class KeyboardReader: self.ser.register_callback(self.handle_output, '#output') self.mcu_freq = msgparser.get_constant_float('CLOCK_FREQ') mcu_type = msgparser.get_constant('MCU') - self.pins = pins.PinResolver(mcu_type, validate_aliases=False) + self.pins = pins.PinResolver(mcu_type, {}, validate_aliases=False) self.output("="*20 + " connected " + "="*20) return self.reactor.NEVER def output(self, msg): |