From abe5ca47a57899071df4a20202b647b809d00f86 Mon Sep 17 00:00:00 2001 From: Philippe Teuwen Date: Tue, 17 Sep 2019 17:42:12 +0200 Subject: [PATCH] thinfilm: reduce timeout, no need to wait so long --- armsrc/iso14443a.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/armsrc/iso14443a.c b/armsrc/iso14443a.c index c49d93a1f..348317a8a 100644 --- a/armsrc/iso14443a.c +++ b/armsrc/iso14443a.c @@ -2044,8 +2044,7 @@ bool GetIso14443aAnswerFromTag_Thinfilm(uint8_t *receivedResponse, uint8_t *rec } } - // timeout already in ms + 10ms guard time - if (GetTickCount() - receive_timer > 1160) + if (GetTickCount() - receive_timer > 100) break; } *received_len = Demod.len;