Skip to content
This repository has been archived by the owner on Jan 31, 2019. It is now read-only.

Commit

Permalink
Update bootloader.py
Browse files Browse the repository at this point in the history
  • Loading branch information
edjubuh authored Mar 30, 2017
1 parent e6eed16 commit b6499d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions prosflasher/bootloader.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ def upload_binary(port, file):


def send_go_command(port, address, retry=3):
click.echo('Executing binary... ', nl=False)
click.echo('Executing user code... ', nl=False)
c_addr = compute_address_commandable(address)
debug('Executing binary at {}'.format(adr_to_str(c_addr)))

Expand All @@ -199,7 +199,7 @@ def send_go_command(port, address, retry=3):
response = port.read(1)
debug_response(adr_to_str(c_addr), response)
if response is None or len(response) < 1 or response[0] != ACK:
click.echo('binary might not have started properly. May need to restart Cortex')
click.echo('user code might not have started properly. May need to restart Cortex')
else:
click.echo('complete')
return True

0 comments on commit b6499d3

Please sign in to comment.