mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-14 02:26:59 -07:00
Added support for Legic tags to hf search
command (#815)
* hf legic: use CMD_ACK instead of Dbprintf * hf search: add support for Legic tags
This commit is contained in:
parent
1f61f19767
commit
bad582468f
4 changed files with 26 additions and 7 deletions
|
@ -66,6 +66,11 @@ int CmdHFSearch(const char *Cmd){
|
|||
PrintAndLog("\nValid ISO14443B Tag Found - Quiting Search\n");
|
||||
return ans;
|
||||
}
|
||||
ans = CmdLegicRFRead("");
|
||||
if (ans == 0) {
|
||||
PrintAndLog("\nValid Legic Tag Found - Quiting Search\n");
|
||||
return ans;
|
||||
}
|
||||
PrintAndLog("\nno known/supported 13.56 MHz tags found\n");
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue