File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -172,7 +172,8 @@ def phase_setup(ser):
172
172
if (packet ['timeout' ] or packet ['crc' ]):
173
173
return 1
174
174
175
- print ('\t Got SVL Bootloader Version: ' + str (int .from_bytes (packet ['data' ],'big' )))
175
+ verboseprint ('\t Got SVL Bootloader Version: ' +
176
+ str (int .from_bytes (packet ['data' ], 'big' )))
176
177
verboseprint ('\t Sending \' enter bootloader\' command' )
177
178
178
179
send_packet (ser , SVL_CMD_BL , b'' )
@@ -240,6 +241,7 @@ def phase_bootload(ser):
240
241
241
242
242
243
244
+
243
245
# ***********************************************************************************
244
246
#
245
247
# Help if serial port could not be opened
@@ -339,4 +341,4 @@ def verboseprint(*args):
339
341
else :
340
342
verboseprint = lambda * a : None # do-nothing function
341
343
342
- main ()
344
+ main ()
You can’t perform that action at this time.
0 commit comments