mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-07-12 00:06:09 -07:00
Merge pull request #549 from rkblackfire/master
Debug&Improvement of HW TUNE
This commit is contained in:
commit
acaa71ffe3
1 changed files with 22 additions and 12 deletions
|
@ -1281,24 +1281,34 @@ int CmdTuneSamples(const char *Cmd)
|
||||||
peakf = resp.arg[2] & 0xffff;
|
peakf = resp.arg[2] & 0xffff;
|
||||||
peakv = resp.arg[2] >> 16;
|
peakv = resp.arg[2] >> 16;
|
||||||
PrintAndLog("");
|
PrintAndLog("");
|
||||||
PrintAndLog("# LF antenna: %5.2f V @ 125.00 kHz", vLf125/500.0);
|
if (arg & FLAG_TUNE_LF)
|
||||||
PrintAndLog("# LF antenna: %5.2f V @ 134.00 kHz", vLf134/500.0);
|
{
|
||||||
PrintAndLog("# LF optimal: %5.2f V @%9.2f kHz", peakv/500.0, 12000.0/(peakf+1));
|
PrintAndLog("# LF antenna: %5.2f V @ 125.00 kHz", vLf125/500.0);
|
||||||
PrintAndLog("# HF antenna: %5.2f V @ 13.56 MHz", vHf/1000.0);
|
PrintAndLog("# LF antenna: %5.2f V @ 134.00 kHz", vLf134/500.0);
|
||||||
|
PrintAndLog("# LF optimal: %5.2f V @%9.2f kHz", peakv/500.0, 12000.0/(peakf+1));
|
||||||
|
}
|
||||||
|
if (arg & FLAG_TUNE_HF)
|
||||||
|
PrintAndLog("# HF antenna: %5.2f V @ 13.56 MHz", vHf/1000.0);
|
||||||
|
|
||||||
#define LF_UNUSABLE_V 3000
|
#define LF_UNUSABLE_V 3000
|
||||||
#define LF_MARGINAL_V 15000
|
#define LF_MARGINAL_V 15000
|
||||||
#define HF_UNUSABLE_V 3200
|
#define HF_UNUSABLE_V 3200
|
||||||
#define HF_MARGINAL_V 8000
|
#define HF_MARGINAL_V 8000
|
||||||
|
|
||||||
if (peakv<<1 < LF_UNUSABLE_V)
|
if (arg & FLAG_TUNE_LF)
|
||||||
PrintAndLog("# Your LF antenna is unusable.");
|
{
|
||||||
else if (peakv<<1 < LF_MARGINAL_V)
|
if (peakv<<1 < LF_UNUSABLE_V)
|
||||||
PrintAndLog("# Your LF antenna is marginal.");
|
PrintAndLog("# Your LF antenna is unusable.");
|
||||||
if (vHf < HF_UNUSABLE_V)
|
else if (peakv<<1 < LF_MARGINAL_V)
|
||||||
PrintAndLog("# Your HF antenna is unusable.");
|
PrintAndLog("# Your LF antenna is marginal.");
|
||||||
else if (vHf < HF_MARGINAL_V)
|
}
|
||||||
PrintAndLog("# Your HF antenna is marginal.");
|
if (arg & FLAG_TUNE_HF)
|
||||||
|
{
|
||||||
|
if (vHf < HF_UNUSABLE_V)
|
||||||
|
PrintAndLog("# Your HF antenna is unusable.");
|
||||||
|
else if (vHf < HF_MARGINAL_V)
|
||||||
|
PrintAndLog("# Your HF antenna is marginal.");
|
||||||
|
}
|
||||||
|
|
||||||
if (peakv<<1 >= LF_UNUSABLE_V) {
|
if (peakv<<1 >= LF_UNUSABLE_V) {
|
||||||
for (int i = 0; i < 256; i++) {
|
for (int i = 0; i < 256; i++) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue