mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-14 18:48:13 -07:00
CHG: lowered the timout again, but re-added the spindelay since 14a requires 5ms powerup before entering the idle-state where tag starts to listen.
CHG: fix the ticks compare xx > 1 into xx >= 1
This commit is contained in:
parent
93b7aa8f88
commit
d5bded10e2
2 changed files with 4 additions and 2 deletions
|
@ -211,5 +211,5 @@ void ResetTicks(){
|
|||
}
|
||||
void ResetTimer(AT91PS_TC timer){
|
||||
timer->TC_CCR = AT91C_TC_CLKEN | AT91C_TC_SWTRG;
|
||||
while(timer->TC_CV > 1) ;
|
||||
while(timer->TC_CV >= 1) ;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue