mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 22:03:42 -07:00
CHG: reading a complete MIM1024 takes about 2.8sec. This timeout is changed to 3sec now.
This commit is contained in:
parent
7a8db2f678
commit
1daa1226fd
1 changed files with 1 additions and 1 deletions
|
@ -417,7 +417,7 @@ int CmdLegicRFRead(const char *Cmd) {
|
||||||
clearCommandBuffer();
|
clearCommandBuffer();
|
||||||
SendCommand(&c);
|
SendCommand(&c);
|
||||||
UsbCommand resp;
|
UsbCommand resp;
|
||||||
if (WaitForResponseTimeout(CMD_ACK, &resp, 2500)) {
|
if (WaitForResponseTimeout(CMD_ACK, &resp, 3000)) {
|
||||||
uint8_t isOK = resp.arg[0] & 0xFF;
|
uint8_t isOK = resp.arg[0] & 0xFF;
|
||||||
uint16_t readlen = resp.arg[1];
|
uint16_t readlen = resp.arg[1];
|
||||||
if ( isOK ) {
|
if ( isOK ) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue