mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-03-17 18:50:32 +08:00
CHG: increased timeout for printing the warning messages. It interupts all loops that already takes this in consideration.
This commit is contained in:
parent
6fa8740abd
commit
1299a0b31d
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue