From 0318894e52a906a0612eb3671860b04f5a9b80ac Mon Sep 17 00:00:00 2001 From: "jonor@live.it" Date: Mon, 30 Sep 2013 19:08:29 +0000 Subject: [PATCH] Correct issue of blew circular buffer in hf 14b snoop with gcc 4.7.4 the issue is solved --- armsrc/iso14443.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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; } -- 2.39.2