Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion kflash.py
Original file line number Diff line number Diff line change
Expand Up @@ -1120,7 +1120,7 @@ def open_terminal(reset):
parser.add_argument("-n", "--noansi", help="Do not use ANSI colors, recommended in Windows CMD", default=False, action="store_true")
parser.add_argument("-s", "--sram", help="Download firmware to SRAM and boot", default=False, action="store_true")
parser.add_argument("-B", "--Board",required=False, type=str, help="Select dev board", choices=boards_choices)
parser.add_argument("-S", "--Slow",required=False, help="Slow download mode", default=False)
parser.add_argument("-S", "--Slow",required=False, help="Slow download mode", default=False, action="store_true")
parser.add_argument("firmware", help="firmware bin path")
args = parser.parse_args()
else:
Expand Down