pins: Don't pass mcu_freq to update_command()

Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
Kevin O'Connor
2017-09-12 13:54:53 -04:00
parent 2a6a9eb52f
commit 52156d2c41
3 changed files with 3 additions and 5 deletions

View File

@@ -161,7 +161,7 @@ def get_pin_map(mcu, mapping_name=None):
# Translate pin names in a firmware command
re_pin = re.compile(r'(?P<prefix>[ _]pin=)(?P<name>[^ ]*)')
def update_command(cmd, mcu_freq, pmap):
def update_command(cmd, pmap):
def pin_fixup(m):
return m.group('prefix') + str(pmap[m.group('name')])
return re_pin.sub(pin_fixup, cmd)