]> git.zerfleddert.de Git - proxmark3-svn/commitdiff
CHG: making printed statement a debug statement.
authoriceman1001 <iceman@iuse.se>
Wed, 19 Oct 2016 23:16:32 +0000 (01:16 +0200)
committericeman1001 <iceman@iuse.se>
Wed, 19 Oct 2016 23:16:32 +0000 (01:16 +0200)
client/cmdlf.c

index c5ad653a7b9d408128b80721b53ab65a89774383..6cd9b7f069d082045ba140332d1538c016c3170e 100644 (file)
@@ -596,8 +596,10 @@ int CmdLFSim(const char *Cmd) {
        // convert to bitstream if necessary 
        ChkBitstream(Cmd);
 
+       if (g_debugMode) 
+               printf("Sending [%d bytes]", GraphTraceLen);
+       
        //can send only 512 bits at a time (1 byte sent per bit...)
-       printf("Sending [%d bytes]", GraphTraceLen);
        for (i = 0; i < GraphTraceLen; i += USB_CMD_DATA_SIZE) {
                UsbCommand c = {CMD_DOWNLOADED_SIM_SAMPLES_125K, {i, 0, 0}};
 
@@ -611,6 +613,7 @@ int CmdLFSim(const char *Cmd) {
        }
 
        PrintAndLog("\nStarting to simulate");
+
        UsbCommand c = {CMD_SIMULATE_TAG_125K, {GraphTraceLen, gap, 0}};
        clearCommandBuffer();
        SendCommand(&c);
Impressum, Datenschutz