]> git.zerfleddert.de Git - proxmark3-svn/blobdiff - client/cmdlfio.c
ADD: the option to simulate tnp3xxx inthe command "hf mf sim"
[proxmark3-svn] / client / cmdlfio.c
index a3d79b2ba5a3c8a9af5a8a12575fc5abca0c36c3..919fa4425dba2967dc8a428f36ba56c6d92ffbe9 100644 (file)
@@ -3,7 +3,6 @@
 #include <string.h>
 #include <inttypes.h>
 #include <limits.h>
-//#include "proxusb.h"
 #include "proxmark3.h"
 #include "data.h"
 #include "graph.h"
@@ -22,20 +21,14 @@ int CmdIODemodFSK(const char *Cmd)
   return 0;
 }
 
-
 int CmdIOProxDemod(const char *Cmd){
   if (GraphTraceLen < 4800) {
     PrintAndLog("too short; need at least 4800 samples");
     return 0;
   }
-
   GraphTraceLen = 4800;
   for (int i = 0; i < GraphTraceLen; ++i) {
-    if (GraphBuffer[i] < 0) {
-      GraphBuffer[i] = 0;
-    } else {
-      GraphBuffer[i] = 1;
-    }
+    GraphBuffer[i] = (GraphBuffer[i] < 0) ? 0 : 1;
   }
   RepaintGraphWindow();
   return 0;
@@ -69,10 +62,10 @@ int CmdIOClone(const char *Cmd)
 
 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"},
+  {"help",      CmdHelp,         1, "This help"},
+  {"demod",        CmdIOProxDemod,  1, "Demodulate Stream"},
+  {"fskdemod",  CmdIODemodFSK,   1, "Demodulate ioProx Tag"},
+  {"clone",        CmdIOClone,      1, "Clone ioProx Tag"},
   {NULL, NULL, 0, NULL}
 };
 
Impressum, Datenschutz