mirror of
https://github.com/bkerler/mtkclient.git
synced 2024-11-14 19:25:05 -05:00
Update xflash_lib.py
Fix improper readflash status on xflash
This commit is contained in:
parent
6127b1ecb4
commit
44c750ac5b
1 changed files with 2 additions and 2 deletions
|
@ -795,10 +795,10 @@ class DAXFlash(metaclass=LogBase):
|
|||
self.mtk.daloader.progress.show_progress("Read", total, total, display)
|
||||
rq.put(None)
|
||||
worker.join(60)
|
||||
return b""
|
||||
return True
|
||||
rq.put(None)
|
||||
worker.join(60)
|
||||
return bytearray()
|
||||
return False
|
||||
else:
|
||||
buffer = bytearray()
|
||||
while length > 0:
|
||||
|
|
Loading…
Reference in a new issue