X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/7c5f70dd9f8805967628f429f96fe1159a8bb827..b9a3c8642e28d156eb0d82f329e6bf2a2b0ff640:/client/cmdlfio.c diff --git a/client/cmdlfio.c b/client/cmdlfio.c index 129323ac..aa21c44b 100644 --- a/client/cmdlfio.c +++ b/client/cmdlfio.c @@ -16,15 +16,15 @@ static int CmdHelp(const char *Cmd); int CmdIODemodFSK(const char *Cmd) { - int findone = 0; - if (Cmd[0] =='1') findone = 1; + int findone=0; + if(Cmd[0]=='1') findone=1; - UsbCommand c={CMD_IO_DEMOD_FSK}; - c.arg[0] = findone; - SendCommand(&c); - return 0; + UsbCommand c={CMD_IO_DEMOD_FSK}; + c.arg[0]=findone; + SendCommand(&c); + return 0; } - +/* int CmdIOProxDemod(const char *Cmd){ if (GraphTraceLen < 4800) { PrintAndLog("too short; need at least 4800 samples"); @@ -37,7 +37,7 @@ int CmdIOProxDemod(const char *Cmd){ RepaintGraphWindow(); return 0; } - +*/ int CmdIOClone(const char *Cmd) { unsigned int hi = 0, lo = 0; @@ -66,10 +66,10 @@ int CmdIOClone(const char *Cmd) static command_t CommandTable[] = { - {"help", CmdHelp, 1, "This help"}, - {"demod", CmdIOProxDemod, 1, "Demodulate Stream"}, - {"fskdemod", CmdIODemodFSK, 0, "['1'] Realtime IO FSK demodulator (option '1' for one tag only)"}, - {"clone", CmdIOClone, 0, "Clone ioProx Tag"}, + {"help", CmdHelp, 1, "This help"}, + //{"demod", CmdIOProxDemod, 1, "Demodulate Stream"}, + {"fskdemod", CmdIODemodFSK, 0, "['1'] Realtime IO FSK demodulator (option '1' for one tag only)"}, + {"clone", CmdIOClone, 0, "Clone ioProx Tag"}, {NULL, NULL, 0, NULL} }; @@ -83,4 +83,4 @@ int CmdHelp(const char *Cmd) { CmdsHelp(CommandTable); return 0; -} \ No newline at end of file +}