From: jonor@live.it Date: Mon, 30 Sep 2013 19:08:29 +0000 (+0000) Subject: Correct issue of blew circular buffer in hf 14b snoop with gcc 4.7.4 the issue is... X-Git-Tag: v1.0.0~69 X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/commitdiff_plain/0318894e52a906a0612eb3671860b04f5a9b80ac Correct issue of blew circular buffer in hf 14b snoop with gcc 4.7.4 the issue is solved --- diff --git a/armsrc/iso14443.c b/armsrc/iso14443.c index ca06fc81..5e8eddd2 100644 --- a/armsrc/iso14443.c +++ b/armsrc/iso14443.c @@ -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; }