mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 13:53:55 -07:00
chg: testing to switch from WaitXX calls to SpinDelay, they seem to mess up
This commit is contained in:
parent
79158c7360
commit
fff2f51cfb
2 changed files with 11 additions and 18 deletions
|
@ -154,7 +154,7 @@ bool Flash_CheckBusy(uint16_t times) {
|
|||
|
||||
while (times) {
|
||||
WDT_HIT();
|
||||
WaitMS(1);
|
||||
SpinDelay(1);
|
||||
ret = (Flash_ReadStat1() & BUSY);
|
||||
if (!ret)
|
||||
break;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue