mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 13:53:55 -07:00
minor adjustments to hf mfu
This commit is contained in:
parent
c7442b7673
commit
ea11861793
1 changed files with 6 additions and 6 deletions
|
@ -152,7 +152,7 @@ static int ul_select( iso14a_card_select_t *card ){
|
||||||
UsbCommand resp;
|
UsbCommand resp;
|
||||||
bool ans = false;
|
bool ans = false;
|
||||||
ans = WaitForResponseTimeout(CMD_ACK, &resp, 1500);
|
ans = WaitForResponseTimeout(CMD_ACK, &resp, 1500);
|
||||||
if (resp.arg[0] < 1 || !ans) {
|
if (!ans || resp.arg[0] < 1) {
|
||||||
PrintAndLog("iso14443a card select failed");
|
PrintAndLog("iso14443a card select failed");
|
||||||
ul_switch_off_field();
|
ul_switch_off_field();
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue