thinfilm: reduce timeout, no need to wait so long

This commit is contained in:
Philippe Teuwen 2019-09-17 17:42:12 +02:00
commit abe5ca47a5

View file

@ -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;