mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-12-29 11:52:59 +08:00
CHG: increased timeout when calling "hw tune".
This commit is contained in:
parent
9f8fc207a2
commit
a0048c6967
1 changed files with 1 additions and 1 deletions
|
@ -2047,7 +2047,7 @@ int CmdTuneSamples(const char *Cmd)
|
|||
clearCommandBuffer();
|
||||
SendCommand(&c);
|
||||
UsbCommand resp;
|
||||
while(!WaitForResponseTimeout(CMD_MEASURED_ANTENNA_TUNING,&resp,1000)) {
|
||||
while(!WaitForResponseTimeout(CMD_MEASURED_ANTENNA_TUNING, &resp, 2000)) {
|
||||
timeout++;
|
||||
printf(".");
|
||||
if (timeout > 7) {
|
||||
|
|
Loading…
Reference in a new issue