Skip to content

Commit

Permalink
fixed boot command issue in programmer
Browse files Browse the repository at this point in the history
  • Loading branch information
Luke Valenty committed May 15, 2018
1 parent 9e53906 commit 0df1e6d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion programmer/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
'intelhex>=2.2.1,<3',
'tqdm>=4.19.5,<5'
],
version = '1.0.1',
version = '1.0.3',
description = 'Programmer for FPGA boards using the TinyFPGA USB Bootloader (http://tinyfpga.com)',
author = 'Luke Valenty',
author_email = '[email protected]',
Expand Down
3 changes: 2 additions & 1 deletion programmer/tinyprog/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,8 @@ def parse_int(str_value):
print(" Only one board with active bootloader, using it.")
active_port = active_boards[0]
else:
print(" Please choose a board with the -c or -i option.")
print(" Please choose a board with the -c or -i option. Using first board in list.")
active_port = active_boards[0]

# list boards
if args.list or active_port is None:
Expand Down

0 comments on commit 0df1e6d

Please sign in to comment.