Skip to content

Commit

Permalink
px_uploader add small delay before checking CRC result
Browse files Browse the repository at this point in the history
  • Loading branch information
dagar authored and LorenzMeier committed Jul 7, 2018
1 parent 8647f0e commit dec0387
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Tools/px_uploader.py
Original file line number Diff line number Diff line change
Expand Up @@ -455,8 +455,8 @@ def __verify_v3(self, label, fw):
print("\n", end='')
self.__drawProgressBar(label, 1, 100)
expect_crc = fw.crc(self.fw_maxsize)
self.__send(uploader.GET_CRC +
uploader.EOC)
self.__send(uploader.GET_CRC + uploader.EOC)
time.sleep(0.5)
report_crc = self.__recv_int()
self.__getSync()
if report_crc != expect_crc:
Expand Down

0 comments on commit dec0387

Please sign in to comment.