]> git.zerfleddert.de Git - proxmark3-svn/blobdiff - client/cmdlfti.c
FIX: Forget that the prng was 0x8000 length and not 0xFFFF. Sorry. Also returned...
[proxmark3-svn] / client / cmdlfti.c
index 66b2cd8b33cd58a5606b84ed2a11319c8e4bc858..5997b5f65a6c74b8411cabb7b76aa88fb3f072b7 100644 (file)
@@ -174,7 +174,7 @@ int CmdTIDemod(const char *Cmd)
 
        uint32_t shift3 = 0x7e000000, shift2 = 0, shift1 = 0, shift0 = 0;
 
-       for (i = 0; i < arraylen(bits)-1; i++) {
+       for (i = 0; i < ARRAYLEN(bits)-1; i++) {
                int high = 0;
                int low = 0;
                int j;
@@ -298,11 +298,12 @@ static command_t CommandTable[] = {
 };
 
 int CmdLFTI(const char *Cmd){
-  CmdsParse(CommandTable, Cmd);
-  return 0;
+       clearCommandBuffer();
+       CmdsParse(CommandTable, Cmd);
+       return 0;
 }
 
 int CmdHelp(const char *Cmd){
-  CmdsHelp(CommandTable);
-  return 0;
+       CmdsHelp(CommandTable);
+       return 0;
 }
Impressum, Datenschutz