mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-20 13:23:25 -07:00
Bugfixes for LF FDX
Changed CmdBiphaseDecodeRaw to allow 7 digits Changed CmdFdxRead to read 39999 samples instead of 10000 to improve reading from small tags
This commit is contained in:
parent
4306de8277
commit
3f306c6ded
2 changed files with 2 additions and 2 deletions
|
@ -380,7 +380,7 @@ int CmdBiphaseDecodeRaw(const char *Cmd)
|
|||
size_t size=0;
|
||||
int offset=0, invert=0, maxErr=20, errCnt=0;
|
||||
char cmdp = param_getchar(Cmd, 0);
|
||||
if (strlen(Cmd) > 5 || cmdp == 'h' || cmdp == 'H') {
|
||||
if (strlen(Cmd) > 7 || cmdp == 'h' || cmdp == 'H') {
|
||||
PrintAndLog("Usage: data biphaserawdecode [offset] [invert] [maxErr]");
|
||||
PrintAndLog(" Converts 10 or 01 to 1 and 11 or 00 to 0");
|
||||
PrintAndLog(" --must have binary sequence in demodbuffer (run data askrawdemod first)");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue