mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-19 04:49:38 -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;
|
||||
bool ans = false;
|
||||
ans = WaitForResponseTimeout(CMD_ACK, &resp, 1500);
|
||||
if (resp.arg[0] < 1 || !ans) {
|
||||
if (!ans || resp.arg[0] < 1) {
|
||||
PrintAndLog("iso14443a card select failed");
|
||||
ul_switch_off_field();
|
||||
return 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue