From f36e7a59a176a99d4e0df67ac7a243c9f432e2e3 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Fri, 4 Oct 2024 09:16:04 +0200 Subject: [PATCH] wait a bit longer when selecting a MFU tag --- client/src/cmdhfmfu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/cmdhfmfu.c b/client/src/cmdhfmfu.c index 1586d8bda..de61e7995 100644 --- a/client/src/cmdhfmfu.c +++ b/client/src/cmdhfmfu.c @@ -356,7 +356,7 @@ static bool ul_select(iso14a_card_select_t *card) { ul_switch_on_field(); PacketResponseNG resp; - if (WaitForResponseTimeout(CMD_ACK, &resp, 1500) == false) { + if (WaitForResponseTimeout(CMD_ACK, &resp, 2000) == false) { PrintAndLogEx(DEBUG, "iso14443a card select timeout"); DropField(); return false;