We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44b85d1 commit ee676f3Copy full SHA for ee676f3
bootload.py
@@ -33,15 +33,6 @@ def download_code(ihx_file, serial_port):
33
def run_user_code(serial_port):
34
# User code is entered on intel HEX EOF record
35
serial_port.write(":00000001FF\n")
36
- rc = serial_port.read()
37
- print "RC =", rc,
38
- if rc in bootloader_error_codes:
39
- print "(%s)" % bootloader_error_codes[rc]
40
- else:
41
- print "(Unknown Error)"
42
- if (rc != '0'):
43
- print "Error running user code!"
44
- return False
45
return True
46
47
def reset_bootloader(serial_port):
0 commit comments