From 3268621fe044f1d03b2a1bd676bcb777ac89884b Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Tue, 16 Jan 2024 16:21:45 +0100 Subject: [PATCH] Lowered the initial wait, Heuristic decided. Might need to look at Picopass datasheet and verify :) --- armsrc/iso14443b.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/armsrc/iso14443b.c b/armsrc/iso14443b.c index f007e551b..1890faec2 100644 --- a/armsrc/iso14443b.c +++ b/armsrc/iso14443b.c @@ -2138,7 +2138,7 @@ static int iso14443b_select_picopass_card(picopass_hdr_t *hdr) { // 0x0C // start_time = eof_time + ISO14B_TR2; - start_time = eof_time + US_TO_SSP(1000); // 330ms before next cmd + start_time = eof_time + US_TO_SSP(330); // 330ms before next cmd CodeAndTransmit14443bAsReader(identify, sizeof(identify), &start_time, &eof_time, true); eof_time += DELAY_ISO14443B_PCD_TO_PICC_READER;