Skip to content

Commit

Permalink
Merge pull request #696 from bitcraze/evoggy/nrf-s130-bootloading
Browse files Browse the repository at this point in the history
Add support for upgrading nRF51 soft device and bootloader
  • Loading branch information
ataffanel authored Jan 31, 2024
2 parents 1e4f9f4 + 231c86a commit 7567750
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cfloader/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,10 +111,10 @@ def main():
for t in sys.argv[2:]:
if t.startswith("deck-"):
[deck, target, type] = t.split("-")
targets.append(Target("deck", target, type))
targets.append(Target("deck", target, type, [], []))
else:
[target, type] = t.split("-")
targets.append(Target("cf2", target, type))
targets.append(Target("cf2", target, type, [], []))
else:
print("Action", sys.argv[0], "unknown!")
sys.exit(-1)
Expand Down

0 comments on commit 7567750

Please sign in to comment.