diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2017-09-12 13:54:53 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2017-09-13 09:16:58 -0400 |
commit | 52156d2c418b38576a27e804eb41901b91206825 (patch) | |
tree | ed76949f76d694b0db4ede58cbb08553c1ebb78e /klippy/console.py | |
parent | 2a6a9eb52f1a8ef61ee6f354aeee79ab9b0c4a0f (diff) | |
download | kutter-52156d2c418b38576a27e804eb41901b91206825.tar.gz kutter-52156d2c418b38576a27e804eb41901b91206825.tar.xz kutter-52156d2c418b38576a27e804eb41901b91206825.zip |
pins: Don't pass mcu_freq to update_command()
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/console.py')
-rwxr-xr-x | klippy/console.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/klippy/console.py b/klippy/console.py index 50a65485..fccfee0b 100755 --- a/klippy/console.py +++ b/klippy/console.py @@ -153,8 +153,7 @@ class KeyboardReader: self.output("Eval: %s" % (line,)) if self.pins is not None: try: - line = pins.update_command( - line, self.mcu_freq, self.pins).strip() + line = pins.update_command(line, self.pins).strip() except: self.output("Unable to map pin: %s" % (line,)) return None |