CHG: increased timeout for printing the warning messages. It interupts all loops that already takes this in consideration.

This commit is contained in:
iceman1001 2017-11-28 08:30:25 +01:00
parent 6fa8740abd
commit 1299a0b31d

View file

@ -163,7 +163,7 @@ bool WaitForResponseTimeoutW(uint32_t cmd, UsbCommand* response, size_t ms_timeo
if (msclock() - start_time > ms_timeout) if (msclock() - start_time > ms_timeout)
break; break;
if (msclock() - start_time > 2000 && show_warning) { if (msclock() - start_time > 3000 && show_warning) {
PrintAndLog("Waiting for a response from the proxmark..."); PrintAndLog("Waiting for a response from the proxmark...");
PrintAndLog("Don't forget to cancel its operation first by pressing on the button"); PrintAndLog("Don't forget to cancel its operation first by pressing on the button");
break; break;