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.
2 parents ef7e8a7 + e99e41c commit 0f4fd34Copy full SHA for 0f4fd34
tools/artemis/artemis_svl.py
@@ -4,7 +4,7 @@
4
# This script was originally written by Ambiq
5
# Modified April 2nd, 2019 by SparkFun to auto-bootloading
6
# Compiled to executable using pyInstaller
7
-# pyinstaller --onefile artemis_uart_loader.py
+# pyinstaller --onefile artemis_svl.py
8
9
import argparse
10
import serial
@@ -86,12 +86,12 @@ def main():
86
87
verboseprint("Waiting for command from bootloader")
88
89
- # Wait for incoming char(5) indicating ability to boot
+ # Wait for incoming BL_COMMAND_ANNOUNCE
90
i = 0
91
response = ''
92
while len(response) == 0:
93
i = i + 1
94
- if(i == 10):
+ if(i == 30):
95
print("No announcement from Artemis bootloader")
96
exit()
97
tools/artemis/windows/artemis_svl.exe
-596 Bytes
0 commit comments