]> git.zerfleddert.de Git - proxmark3-svn/commitdiff
Correct issue of blew circular buffer in hf 14b snoop with gcc 4.7.4 the issue is...
authorjonor@live.it <jonor@live.it@ef4ab9da-24cd-11de-8aaa-f3a34680c41f>
Mon, 30 Sep 2013 19:08:29 +0000 (19:08 +0000)
committerjonor@live.it <jonor@live.it@ef4ab9da-24cd-11de-8aaa-f3a34680c41f>
Mon, 30 Sep 2013 19:08:29 +0000 (19:08 +0000)
armsrc/iso14443.c

index ca06fc813cc067f68d7abfc7f6dc9d1eb80eca39..5e8eddd24dd5d9fa3314f2eb513606a45ca40c66 100644 (file)
@@ -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;
 }
Impressum, Datenschutz