]> git.zerfleddert.de Git - proxmark3-svn/blobdiff - client/cmdhw.c
ADD: some more keys
[proxmark3-svn] / client / cmdhw.c
index e7bdb6cbbb8d2c5fb80bd420560fdf7454ebb7d0..537e6335a1f78709a681603333581a4f22ce2c9d 100644 (file)
@@ -222,10 +222,11 @@ int CmdSetDivisor(const char *Cmd)
                PrintAndLog("divisor must be between 19 and 255");
                return 1;
        } 
-       
+       // 12 000 000 (12Mhz)
+       // 
        clearCommandBuffer();
        SendCommand(&c);
-       PrintAndLog("Divisor set, expected freq=%dHz", 12000000 / (c.arg[0]+1));
+       PrintAndLog("Divisor set, expected %.1f KHz", ((double)12000 / (c.arg[0]+1)) );
        return 0;
 }
 
@@ -255,13 +256,13 @@ int CmdVersion(const char *Cmd)
        if (resp.arg[0] == 0 && resp.arg[1] == 0) { // no cached information available
                SendCommand(&c);
                if (WaitForResponseTimeout(CMD_ACK, &resp, 1000)) {
-                       PrintAndLog("Prox/RFID mark3 RFID instrument");
+                       PrintAndLog("Proxmark3 RFID instrument");
                        PrintAndLog((char*)resp.d.asBytes);
                        lookupChipID(resp.arg[0], resp.arg[1]);
                }
        } else {
                PrintAndLog("[[[ Cached information ]]]\n");
-               PrintAndLog("Prox/RFID mark3 RFID instrument");
+               PrintAndLog("Proxmark3 RFID instrument");
                PrintAndLog((char*)resp.d.asBytes);
                lookupChipID(resp.arg[0], resp.arg[1]);
                PrintAndLog("");
Impressum, Datenschutz