mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-20 21:33:19 -07:00
add data fsktonrz fsk cleaning util (#352)
add fsk cleaning / demod tool fsktonrz - used old fskdemod for HID and adjusted it to build the tone tables for any fsk model detected or given. using the tone tables we are able to convert the fsk to clear strong NRZ/ASK even with very weak fsk waves. - also fixed a small textual bug in `lf search u` output - also added more graph clearing code to help ensure the demod overlay doesn't show when it shouldn't... - and improved strong NRZ clock detection. - fixed bugs in places it used old static values instead of dynamic read values. and removed redundant items.
This commit is contained in:
parent
53814fe4f2
commit
0e2ddb4196
5 changed files with 223 additions and 7 deletions
|
@ -1081,7 +1081,7 @@ int CmdLFfind(const char *Cmd)
|
|||
if (ans>0) {
|
||||
PrintAndLog("Possible unknown PSK1 Modulated Tag Found above!\n\nCould also be PSK2 - try 'data rawdemod p2'");
|
||||
PrintAndLog("\nCould also be PSK3 - [currently not supported]");
|
||||
PrintAndLog("\nCould also be NRZ - try 'data nrzrawdemod'");
|
||||
PrintAndLog("\nCould also be NRZ - try 'data rawdemod nr'");
|
||||
return CheckChipType(cmdp);
|
||||
}
|
||||
ans = CheckChipType(cmdp);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue