]> git.zerfleddert.de Git - proxmark3-svn/commitdiff
Bugfixes for LF FDX 808/head
authorMalte F. Hillmann <info@maltehillmann.de>
Thu, 28 Mar 2019 21:40:29 +0000 (22:40 +0100)
committerMalte F. Hillmann <info@maltehillmann.de>
Thu, 28 Mar 2019 21:40:29 +0000 (22:40 +0100)
Changed CmdBiphaseDecodeRaw to allow 7 digits
Changed CmdFdxRead to read 39999 samples instead of 10000 to improve reading from small tags

client/cmddata.c
client/cmdlffdx.c

index 30148163dcea7e774348a08558f3b3694e846929..8f93ba1753ea42e780f4f6b28835be5c6d6537ac 100644 (file)
@@ -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);
        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)");
                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)");
index 5677c79dee8ba0a17f7db37f718ea7c9120cabe6..d0ac52c0feb7e7078373f06743b999c334b36129 100644 (file)
@@ -206,7 +206,7 @@ int CmdFdxDemod(const char *Cmd){
 }
 
 int CmdFdxRead(const char *Cmd) {
 }
 
 int CmdFdxRead(const char *Cmd) {
-       lf_read(true, 10000);
+       lf_read(true, 39999);
        return CmdFdxDemod(Cmd);
 }
 
        return CmdFdxDemod(Cmd);
 }
 
Impressum, Datenschutz