mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-19 21:03:23 -07:00
lf demod additions
data fskfcdetect (field clock and bit clock detect for FSK) data fskdemodawid -AWID demod/decode data fskdemodpyramid - AWID demod/decode
This commit is contained in:
parent
dc065b4e34
commit
1e090a61a1
5 changed files with 690 additions and 145 deletions
|
@ -388,7 +388,7 @@ static void ChkBitstream(const char *str)
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
//appears to attempt to simulate manchester
|
||||
int CmdLFSim(const char *Cmd)
|
||||
{
|
||||
int i,j;
|
||||
|
@ -581,6 +581,16 @@ int CmdLFfind(const char *Cmd)
|
|||
PrintAndLog("Valid IO Prox ID Found!");
|
||||
return 1;
|
||||
}
|
||||
ans=CmdFSKdemodPyramid("0");
|
||||
if (ans>0) {
|
||||
PrintAndLog("Valid Pyramid ID Found!");
|
||||
return 1;
|
||||
}
|
||||
ans=CmdFSKdemodAWID("0");
|
||||
if (ans>0) {
|
||||
PrintAndLog("Valid AWID ID Found!");
|
||||
return 1;
|
||||
}
|
||||
ans=CmdFSKdemodHID("");
|
||||
if (ans>0) {
|
||||
PrintAndLog("Valid HID Prox ID Found!");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue