From 1299a0b31d781afb15657f79b65eacd6786d5718 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Tue, 28 Nov 2017 08:30:25 +0100 Subject: [PATCH] CHG: increased timeout for printing the warning messages. It interupts all loops that already takes this in consideration. --- client/cmdmain.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/cmdmain.c b/client/cmdmain.c index cc3e8fa50..1220041fa 100644 --- a/client/cmdmain.c +++ b/client/cmdmain.c @@ -163,7 +163,7 @@ bool WaitForResponseTimeoutW(uint32_t cmd, UsbCommand* response, size_t ms_timeo if (msclock() - start_time > ms_timeout) break; - if (msclock() - start_time > 2000 && show_warning) { + if (msclock() - start_time > 3000 && show_warning) { PrintAndLog("Waiting for a response from the proxmark..."); PrintAndLog("Don't forget to cancel its operation first by pressing on the button"); break;