]> git.zerfleddert.de Git - proxmark3-svn/commitdiff
fix em410xsim help - add clock input to em410xsim
authormarshmellow42 <marshmellowrf@gmail.com>
Sun, 8 Nov 2015 02:02:30 +0000 (21:02 -0500)
committermarshmellow42 <marshmellowrf@gmail.com>
Sun, 8 Nov 2015 02:02:30 +0000 (21:02 -0500)
client/cmdlfem4x.c

index c0166b3e0124444bec5a54050d297804e092f591..559618bc1114145db28ff4a61337bd7738d80388 100644 (file)
@@ -73,22 +73,23 @@ int CmdEM410xSim(const char *Cmd)
        uint8_t uid[5] = {0x00};
 
        if (cmdp == 'h' || cmdp == 'H') {
-               PrintAndLog("Usage:  lf em4x 410xsim <UID>");
+               PrintAndLog("Usage:  lf em4x em410xsim <UID> <clock>");
                PrintAndLog("");
-               PrintAndLog("     sample: lf em4x 410xsim 0F0368568B");
+               PrintAndLog("     sample: lf em4x em410xsim 0F0368568B");
                return 0;
        }
+       /* clock is 64 in EM410x tags */
+       int clock = 64;
 
        if (param_gethex(Cmd, 0, uid, 10)) {
                PrintAndLog("UID must include 10 HEX symbols");
                return 0;
        }
-       
-       PrintAndLog("Starting simulating UID %02X%02X%02X%02X%02X", uid[0],uid[1],uid[2],uid[3],uid[4]);
+       param_getdec(Cmd,1,&clock);
+
+       PrintAndLog("Starting simulating UID %02X%02X%02X%02X%02X  clock: %d", uid[0],uid[1],uid[2],uid[3],uid[4],clock);
        PrintAndLog("Press pm3-button to about simulation");
 
-       /* clock is 64 in EM410x tags */
-       int clock = 64;
 
        /* clear our graph */
        ClearGraph(0);
Impressum, Datenschutz