Skip to content

Commit

Permalink
Merge pull request #163 from git-developer/patch-1
Browse files Browse the repository at this point in the history
Fix broken `port` arg
  • Loading branch information
JelmerT committed Mar 18, 2024
2 parents c27253f + 25d5f21 commit eb0f8aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cc2538-bsl.py
Original file line number Diff line number Diff line change
Expand Up @@ -1049,7 +1049,7 @@ def cli_setup():
parser.add_argument('-v', '--verify', action='store_true', help='Verify (CRC32 check)')
parser.add_argument('-r', '--read', action='store_true', help='Read')
parser.add_argument('-l', '--len', type=int, default=0x80000, help='Length of read')
parser.add_argument('-p', '--port', type=int, help='Serial port (default: first USB-like port in /dev)')
parser.add_argument('-p', '--port', help='Serial port (default: first USB-like port in /dev)')
parser.add_argument('-b', '--baud', type=int, default=500000, help='Baud speed')
parser.add_argument('-a', '--address', type=int, help='Target address')
parser.add_argument('-i', '--ieee-address', help='Set the secondary 64 bit IEEE address')
Expand Down

0 comments on commit eb0f8aa

Please sign in to comment.