mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-14 02:26:59 -07:00
lf ask consolidation
backend: askman and askraw demods merged into askdemod (args adjusted accordingly) re-arranged lfdemod.h in alphabetical order and by category front end: data detectclock a (ask) now also reports the selected best start position for demod data manrawdecode takes an invert arg now
This commit is contained in:
parent
49bbc60af3
commit
fef74fdce4
9 changed files with 289 additions and 375 deletions
|
@ -47,7 +47,7 @@ int CmdEM410xRead(const char *Cmd)
|
|||
uint32_t hi=0;
|
||||
uint64_t lo=0;
|
||||
|
||||
if(!AskEm410xDemod("", &hi, &lo)) return 0;
|
||||
if(!AskEm410xDemod("", &hi, &lo, false)) return 0;
|
||||
PrintAndLog("EM410x pattern found: ");
|
||||
printEM410x(hi, lo);
|
||||
if (hi){
|
||||
|
@ -455,7 +455,7 @@ int EM4x50Read(const char *Cmd, bool verbose)
|
|||
else
|
||||
phaseoff = 0;
|
||||
i += 2;
|
||||
if (ASKmanDemod(tmp2, false, false) < 1) {
|
||||
if (ASKDemod(tmp2, false, false, 1) < 1) {
|
||||
save_restoreGB(0);
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue