mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-27 02:20:14 +08:00
text
This commit is contained in:
parent
42c6c1338e
commit
505777e3f1
1 changed files with 5 additions and 3 deletions
|
@ -132,7 +132,7 @@ static int CmdHfLTOInfo(const char *Cmd) {
|
||||||
return PM3_EINVARG;
|
return PM3_EINVARG;
|
||||||
}
|
}
|
||||||
|
|
||||||
return infoLTO(true);
|
return infoLTO(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
int infoLTO(bool verbose) {
|
int infoLTO(bool verbose) {
|
||||||
|
@ -146,9 +146,11 @@ int infoLTO(bool verbose) {
|
||||||
|
|
||||||
if (ret_val == PM3_SUCCESS) {
|
if (ret_val == PM3_SUCCESS) {
|
||||||
PrintAndLogEx(NORMAL, "");
|
PrintAndLogEx(NORMAL, "");
|
||||||
PrintAndLogEx(SUCCESS, "UID: " _YELLOW_("%s"), sprint_hex_inrow(serial_number, sizeof(serial_number)));
|
PrintAndLogEx(SUCCESS, " UID : " _YELLOW_("%s"), sprint_hex_inrow(serial_number, sizeof(serial_number)));
|
||||||
|
PrintAndLogEx(SUCCESS, "TYPE : ");
|
||||||
// todo: add printing of all configuration
|
// todo: add printing of all configuration
|
||||||
|
} else {
|
||||||
|
if (verbose) PrintAndLogEx(WARNING, "LTO-CM card select failed");
|
||||||
}
|
}
|
||||||
|
|
||||||
/* read block:
|
/* read block:
|
||||||
|
|
Loading…
Reference in a new issue