]> git.zerfleddert.de Git - proxmark3-svn/blobdiff - client/cmdlfio.c
FIX: a compilation error for a static method in CmdHF14A.h
[proxmark3-svn] / client / cmdlfio.c
index 919fa4425dba2967dc8a428f36ba56c6d92ffbe9..129323aca9ed423ac3f4c41f85a244322a2b7752 100644 (file)
@@ -16,9 +16,13 @@ static int CmdHelp(const char *Cmd);
 
 int CmdIODemodFSK(const char *Cmd)
 {
-  UsbCommand c={CMD_IO_DEMOD_FSK};
-  SendCommand(&c);
-  return 0;
+       int findone = 0;
+       if (Cmd[0] =='1') findone = 1;
+       
+       UsbCommand c={CMD_IO_DEMOD_FSK};
+       c.arg[0] = findone;
+       SendCommand(&c);
+       return 0;
 }
 
 int CmdIOProxDemod(const char *Cmd){
@@ -51,7 +55,7 @@ int CmdIOClone(const char *Cmd)
   }
 
   PrintAndLog("Cloning tag with ID %08x %08x", hi, lo);
-
+  PrintAndLog("Press pm3-button to abort simulation");
   c.cmd = CMD_IO_CLONE_TAG;
   c.arg[0] = hi;
   c.arg[1] = lo;
@@ -64,8 +68,8 @@ static command_t CommandTable[] =
 {
   {"help",      CmdHelp,         1, "This help"},
   {"demod",        CmdIOProxDemod,  1, "Demodulate Stream"},
-  {"fskdemod",  CmdIODemodFSK,   1, "Demodulate ioProx Tag"},
-  {"clone",        CmdIOClone,      1, "Clone ioProx Tag"},
+  {"fskdemod",  CmdIODemodFSK,   0, "['1'] Realtime IO FSK demodulator (option '1' for one tag only)"},
+  {"clone",        CmdIOClone,      0, "Clone ioProx Tag"},
   {NULL, NULL, 0, NULL}
 };
 
Impressum, Datenschutz