mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-03-20 12:07:05 +08:00
Fix #1 for pm3 iclass simulation, remove erroneous extra bit after transmission
This commit is contained in:
parent
73a1c1bb97
commit
bb42a03ef1
1 changed files with 1 additions and 1 deletions
|
@ -1534,7 +1534,7 @@ static int EmSendCmd14443aRaw(uint8_t *resp, uint16_t respLen, bool correctionNe
|
|||
AT91C_BASE_SSC->SSC_THR = SEC_F;
|
||||
|
||||
// send cycle
|
||||
for(; i <= respLen; ) {
|
||||
for(; i < respLen; ) {
|
||||
if(AT91C_BASE_SSC->SSC_SR & (AT91C_SSC_TXRDY)) {
|
||||
AT91C_BASE_SSC->SSC_THR = resp[i++];
|
||||
FpgaSendQueueDelay = (uint8_t)AT91C_BASE_SSC->SSC_RHR;
|
||||
|
|
Loading…
Add table
Reference in a new issue