mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 05:43:48 -07:00
CHG: removed old TRUE/FALSE defines... some left still..
This commit is contained in:
parent
86bbd8f563
commit
46a0ec7130
21 changed files with 66 additions and 67 deletions
|
@ -1195,7 +1195,7 @@ int CmdLFfind(const char *Cmd) {
|
|||
if (testRaw=='u' || testRaw=='U'){
|
||||
//test unknown tag formats (raw mode)
|
||||
PrintAndLog("\nChecking for Unknown tags:\n");
|
||||
ans=AutoCorrelate(4000, FALSE, FALSE);
|
||||
ans=AutoCorrelate(4000, false, false);
|
||||
|
||||
if (ans > 0) {
|
||||
|
||||
|
@ -1232,8 +1232,8 @@ int CmdLFfind(const char *Cmd) {
|
|||
return 1;
|
||||
}
|
||||
}
|
||||
bool st = TRUE;
|
||||
ans=ASKDemod_ext("0 0 0",TRUE,FALSE,1,&st);
|
||||
bool st = true;
|
||||
ans=ASKDemod_ext("0 0 0",true,false,1,&st);
|
||||
if (ans>0) {
|
||||
PrintAndLog("\nUnknown ASK Modulated and Manchester encoded Tag Found!");
|
||||
PrintAndLog("\nif it does not look right it could instead be ASK/Biphase - try 'data rawdemod ab'");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue