mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-02-13 10:43:01 +08:00
textual
This commit is contained in:
parent
d3f26fe7b7
commit
7fd7b539be
1 changed files with 4 additions and 2 deletions
|
@ -957,7 +957,7 @@ static bool CheckChipType(bool getDeviceData) {
|
||||||
retval = true;
|
retval = true;
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
//check for t55xx chip...
|
//check for t55xx chip...
|
||||||
if (tryDetectP1(true)) {
|
if (tryDetectP1(true)) {
|
||||||
PrintAndLogEx(SUCCESS, "\nChipset detection : " _GREEN_("T55xx") "found");
|
PrintAndLogEx(SUCCESS, "\nChipset detection : " _GREEN_("T55xx") "found");
|
||||||
|
@ -1084,7 +1084,9 @@ int CmdLFfind(const char *Cmd) {
|
||||||
}
|
}
|
||||||
out:
|
out:
|
||||||
// identify chipset
|
// identify chipset
|
||||||
CheckChipType(isOnline);
|
if ( CheckChipType(isOnline) == false ) {
|
||||||
|
PrintAndLogEx(DEBUG, "Automatic chip type detection " _RED_("failed") );
|
||||||
|
}
|
||||||
return PM3_SUCCESS;
|
return PM3_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue