mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-19 06:29:53 +08:00
Correct issue of blew circular buffer in hf 14b snoop with gcc 4.7.4 the issue is solved
This commit is contained in:
parent
b19bd5d689
commit
0318894e52
1 changed files with 2 additions and 1 deletions
|
@ -269,7 +269,8 @@ static int Handle14443UartBit(int bit)
|
|||
break;
|
||||
}
|
||||
|
||||
if (Uart.state == STATE_ERROR_WAIT) LED_A_OFF(); // Error
|
||||
// This row make the error blew circular buffer in hf 14b snoop
|
||||
//if (Uart.state == STATE_ERROR_WAIT) LED_A_OFF(); // Error
|
||||
|
||||
return FALSE;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue