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 8803c97 commit a8fa4a9Copy full SHA for a8fa4a9
siwiflasher.py
@@ -349,11 +349,12 @@ def da_changebaud(self, baud=460800):
349
ASSERT(r == ACK, "DA Change Baud CMD ACK Fail: {}".format(hexs(r)))
350
self.send(ACK)
351
self.s.baudrate = baud
352
+ time.sleep(0.2)
353
for i in range(10):
354
r = self.send(DA_SYNC, 1)
355
if (r == DA_SYNC):
356
break
- time.sleep(0.01)
357
+ time.sleep(0.02)
358
ASSERT(r == DA_SYNC, "DA SPEED sync fail")
359
ASSERT(self.send(ACK, 1) == ACK, "DA SPEED ACK fail")
360
for i in range(256):
0 commit comments