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/mcu.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/mcu.py')
-rw-r--r-- | klippy/mcu.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/klippy/mcu.py b/klippy/mcu.py index 7bdf71f8..077d6ff8 100644 --- a/klippy/mcu.py +++ b/klippy/mcu.py @@ -612,8 +612,7 @@ class MCU: updated_cmds = [] for cmd in self._config_cmds: try: - updated_cmds.append(pins.update_command( - cmd, self._mcu_freq, pnames)) + updated_cmds.append(pins.update_command(cmd, pnames)) except: raise pins.error("Unable to translate pin name: %s" % (cmd,)) self._config_cmds = updated_cmds |