mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-02-13 10:43:01 +08:00
fix: 'lf ti demod' - hide debug messages
This commit is contained in:
parent
119e3f0ed9
commit
eb906859b5
1 changed files with 2 additions and 2 deletions
|
@ -210,11 +210,11 @@ int CmdTIDemod(const char *Cmd) {
|
||||||
|
|
||||||
RepaintGraphWindow();
|
RepaintGraphWindow();
|
||||||
|
|
||||||
PrintAndLogEx(INFO, "raw tag bits = %s", bits);
|
PrintAndLogEx(DEBUG, "TI tag : raw tag bits | %s", bits);
|
||||||
|
|
||||||
TagType = (shift3 >> 8) & 0xFF;
|
TagType = (shift3 >> 8) & 0xFF;
|
||||||
if (TagType != ((shift0 >> 16) & 0xFF)) {
|
if (TagType != ((shift0 >> 16) & 0xFF)) {
|
||||||
PrintAndLogEx(WARNING, "Error: start and stop bits do not match!");
|
PrintAndLogEx(DEBUG, "TI tag : Error: start and stop bits do not match!");
|
||||||
goto out;
|
goto out;
|
||||||
} else if (TagType == 0x7E) {
|
} else if (TagType == 0x7E) {
|
||||||
PrintAndLogEx(INFO, "Readonly TI tag detected.");
|
PrintAndLogEx(INFO, "Readonly TI tag detected.");
|
||||||
|
|
Loading…
Reference in a new issue