From 7fd7b539bec83b402b87e89d69e3ec871eb8ab8c Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Sat, 8 Jun 2019 10:10:04 -0400 Subject: [PATCH] textual --- client/cmdlf.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/client/cmdlf.c b/client/cmdlf.c index 9bc954e43..8459eca3a 100644 --- a/client/cmdlf.c +++ b/client/cmdlf.c @@ -957,7 +957,7 @@ static bool CheckChipType(bool getDeviceData) { retval = true; goto out; } - + //check for t55xx chip... if (tryDetectP1(true)) { PrintAndLogEx(SUCCESS, "\nChipset detection : " _GREEN_("T55xx") "found"); @@ -1084,7 +1084,9 @@ int CmdLFfind(const char *Cmd) { } out: // identify chipset - CheckChipType(isOnline); + if ( CheckChipType(isOnline) == false ) { + PrintAndLogEx(DEBUG, "Automatic chip type detection " _RED_("failed") ); + } return PM3_SUCCESS; }