This commit is contained in:
iceman1001 2019-06-08 10:10:04 -04:00
parent d3f26fe7b7
commit 7fd7b539be

View file

@ -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;
}