]> git.zerfleddert.de Git - proxmark3-svn/commitdiff
hw tune, data tune: adjusted "unusable" and "marginal" voltages. Display LF tuning...
authorpwpiwi <pwpiwi@users.noreply.github.com>
Mon, 9 Feb 2015 07:53:39 +0000 (08:53 +0100)
committerpwpiwi <pwpiwi@users.noreply.github.com>
Mon, 9 Feb 2015 21:36:53 +0000 (22:36 +0100)
client/cmddata.c

index 1bd3f6de60a168fe09525d6d87755018be309c16..c6cb7d3f535a6dc8f45f8b9c589be4706b3bedbc 100644 (file)
@@ -1874,24 +1874,31 @@ int CmdTuneSamples(const char *Cmd)
        PrintAndLog("# LF antenna: %5.2f V @   134.00 kHz", vLf134/1000.0);
        PrintAndLog("# LF optimal: %5.2f V @%9.2f kHz", peakv/1000.0, 12000.0/(peakf+1));
        PrintAndLog("# HF antenna: %5.2f V @    13.56 MHz", vHf/1000.0);
        PrintAndLog("# LF antenna: %5.2f V @   134.00 kHz", vLf134/1000.0);
        PrintAndLog("# LF optimal: %5.2f V @%9.2f kHz", peakv/1000.0, 12000.0/(peakf+1));
        PrintAndLog("# HF antenna: %5.2f V @    13.56 MHz", vHf/1000.0);
-       if (peakv<2000)
+
+#define LF_UNUSABLE_V          2948            // was 2000. Changed due to bugfix in voltage measurements. LF results are now 47% higher.
+#define LF_MARGINAL_V          14739           // was 10000. Changed due to bugfix bug in voltage measurements. LF results are now 47% higher.
+#define HF_UNUSABLE_V          3167            // was 2000. Changed due to bugfix in voltage measurements. HF results are now 58% higher.
+#define HF_MARGINAL_V          7917            // was 5000. Changed due to bugfix in voltage measurements. HF results are now 58% higher.
+
+       if (peakv < LF_UNUSABLE_V)
                PrintAndLog("# Your LF antenna is unusable.");
                PrintAndLog("# Your LF antenna is unusable.");
-       else if (peakv<10000)
+       else if (peakv < LF_MARGINAL_V)
                PrintAndLog("# Your LF antenna is marginal.");
                PrintAndLog("# Your LF antenna is marginal.");
-       if (vHf<2000)
+       if (vHf < HF_UNUSABLE_V)
                PrintAndLog("# Your HF antenna is unusable.");
                PrintAndLog("# Your HF antenna is unusable.");
-       else if (vHf<5000)
+       else if (vHf < HF_MARGINAL_V)
                PrintAndLog("# Your HF antenna is marginal.");
 
                PrintAndLog("# Your HF antenna is marginal.");
 
-       for (int i = 0; i < 256; i++) {
-               GraphBuffer[i] = resp.d.asBytes[i] - 128;
+       if (peakv >= LF_UNUSABLE_V)     {
+               for (int i = 0; i < 256; i++) {
+                       GraphBuffer[i] = resp.d.asBytes[i] - 128;
+               }
+               PrintAndLog("Displaying LF tuning graph. Divisor 89 is 134khz, 95 is 125khz.\n");
+               PrintAndLog("\n");
+               GraphTraceLen = 256;
+               ShowGraphWindow();
        }
 
        }
 
-       PrintAndLog("Done! Divisor 89 is 134khz, 95 is 125khz.\n");
-       PrintAndLog("\n");
-       GraphTraceLen = 256;
-       ShowGraphWindow();
-
        return 0;
 }
 
        return 0;
 }
 
Impressum, Datenschutz