mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-02-13 10:43:01 +08:00
chg: 'hw tune' color output consistent.
This commit is contained in:
parent
2919a35665
commit
edfbe327b4
1 changed files with 7 additions and 4 deletions
|
@ -1508,8 +1508,11 @@ int CmdTuneSamples(const char *Cmd) {
|
|||
else
|
||||
sprintf(judgement, "OK");
|
||||
|
||||
PrintAndLogEx(NORMAL, "[%c] LF antenna is %s \n"
|
||||
, (peakv < LF_UNUSABLE_V) ? '!' : '+'
|
||||
//_GREEN_([+] )
|
||||
//_CYAN_([!] )
|
||||
|
||||
PrintAndLogEx(NORMAL, "%s LF antenna is %s \n"
|
||||
, (peakv < LF_UNUSABLE_V) ? _CYAN_([!]) : _GREEN_([+])
|
||||
, judgement
|
||||
);
|
||||
|
||||
|
@ -1526,8 +1529,8 @@ int CmdTuneSamples(const char *Cmd) {
|
|||
else
|
||||
sprintf(judgement, "OK");
|
||||
|
||||
PrintAndLogEx(NORMAL, "[%c] HF antenna is %s"
|
||||
, (v_hf < HF_UNUSABLE_V) ? '!' : '+'
|
||||
PrintAndLogEx(NORMAL, "%s HF antenna is %s"
|
||||
, (v_hf < HF_UNUSABLE_V) ? _CYAN_([!]) : _GREEN_([+])
|
||||
, judgement
|
||||
);
|
||||
|
||||
|
|
Loading…
Reference in a new issue