Skip to content

Commit 0df1e6d

Browse files
author
Luke Valenty
committed
fixed boot command issue in programmer
1 parent 9e53906 commit 0df1e6d

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

programmer/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
'intelhex>=2.2.1,<3',
99
'tqdm>=4.19.5,<5'
1010
],
11-
version = '1.0.1',
11+
version = '1.0.3',
1212
description = 'Programmer for FPGA boards using the TinyFPGA USB Bootloader (http://tinyfpga.com)',
1313
author = 'Luke Valenty',
1414
author_email = 'luke@tinyfpga.com',

programmer/tinyprog/__main__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,8 @@ def parse_int(str_value):
8282
print(" Only one board with active bootloader, using it.")
8383
active_port = active_boards[0]
8484
else:
85-
print(" Please choose a board with the -c or -i option.")
85+
print(" Please choose a board with the -c or -i option. Using first board in list.")
86+
active_port = active_boards[0]
8687

8788
# list boards
8889
if args.list or active_port is None:

0 commit comments

Comments
 (0)