From 8c7bcd42c7728da66cb2794368694e49ea48d346 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Mon, 15 Feb 2021 11:01:01 +0100 Subject: [PATCH] textual --- client/src/cmdlf.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/client/src/cmdlf.c b/client/src/cmdlf.c index 1e14f97eb..2e8838f92 100644 --- a/client/src/cmdlf.c +++ b/client/src/cmdlf.c @@ -1456,27 +1456,27 @@ int CmdLFfind(const char *Cmd) { //fsk if (GetFskClock("", false)) { if (FSKrawDemod(0, 0, 0, 0, true) == PM3_SUCCESS) { - PrintAndLogEx(NORMAL, "\nUnknown FSK Modulated Tag found!"); + PrintAndLogEx(INFO, "Unknown FSK Modulated Tag found!"); goto out; } } bool st = true; if (ASKDemod_ext(0, 0, 0, 0, false, true, false, 1, &st) == PM3_SUCCESS) { - PrintAndLogEx(NORMAL, "\nUnknown ASK Modulated and Manchester encoded Tag found!"); - PrintAndLogEx(NORMAL, "if it does not look right it could instead be ASK/Biphase - try " _YELLOW_("'data rawdemod ab'")); + PrintAndLogEx(INFO, "Unknown ASK Modulated and Manchester encoded Tag found!"); + PrintAndLogEx(INFO, "if it does not look right it could instead be ASK/Biphase - try " _YELLOW_("'data rawdemod ab'")); goto out; } if (CmdPSK1rawDemod("") == PM3_SUCCESS) { - PrintAndLogEx(NORMAL, "Possible unknown PSK1 Modulated Tag found above!"); - PrintAndLogEx(NORMAL, " Could also be PSK2 - try " _YELLOW_("'data rawdemod p2'")); - PrintAndLogEx(NORMAL, " Could also be PSK3 - [currently not supported]"); - PrintAndLogEx(NORMAL, " Could also be NRZ - try " _YELLOW_("'data rawdemod nr")); + PrintAndLogEx(INFO, "Possible unknown PSK1 Modulated Tag found above!"); + PrintAndLogEx(INFO, " Could also be PSK2 - try " _YELLOW_("'data rawdemod p2'")); + PrintAndLogEx(INFO, " Could also be PSK3 - [currently not supported]"); + PrintAndLogEx(INFO, " Could also be NRZ - try " _YELLOW_("'data rawdemod nr")); goto out; } - PrintAndLogEx(FAILED, _RED_("\nNo data found!")); + PrintAndLogEx(FAILED, _RED_("No data found!")); } retval = PM3_ESOFT;