mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-02 21:54:10 +08:00
data tune, as suggested by @iceman
This commit is contained in:
parent
12e942febc
commit
6a387c0b1b
1 changed files with 2 additions and 8 deletions
|
@ -1730,10 +1730,7 @@ int CmdTuneSamples(const char *Cmd) {
|
||||||
else
|
else
|
||||||
sprintf(judgement, _GREEN_("OK"));
|
sprintf(judgement, _GREEN_("OK"));
|
||||||
|
|
||||||
PrintAndLogEx(NORMAL, "%s LF antenna is %s \n"
|
PrintAndLogEx((package->peak_v < LF_UNUSABLE_V) ? WARNING : SUCCESS, "LF antenna is %s \n", judgement);
|
||||||
, (package->peak_v < LF_UNUSABLE_V) ? _CYAN_("[!]") : _GREEN_("[+]")
|
|
||||||
, judgement
|
|
||||||
);
|
|
||||||
|
|
||||||
// HF evaluation
|
// HF evaluation
|
||||||
if (package->v_hf > NON_VOLTAGE)
|
if (package->v_hf > NON_VOLTAGE)
|
||||||
|
@ -1748,10 +1745,7 @@ int CmdTuneSamples(const char *Cmd) {
|
||||||
else
|
else
|
||||||
sprintf(judgement, _GREEN_("OK"));
|
sprintf(judgement, _GREEN_("OK"));
|
||||||
|
|
||||||
PrintAndLogEx(NORMAL, "%s HF antenna is %s"
|
PrintAndLogEx((package->v_hf < HF_UNUSABLE_V) ? WARNING : SUCCESS, "HF antenna is %s \n", judgement);
|
||||||
, (package->v_hf < HF_UNUSABLE_V) ? _CYAN_("[!]") : _GREEN_("[+]")
|
|
||||||
, judgement
|
|
||||||
);
|
|
||||||
|
|
||||||
// graph LF measurements
|
// graph LF measurements
|
||||||
// even here, these values has 3% error.
|
// even here, these values has 3% error.
|
||||||
|
|
Loading…
Reference in a new issue