mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-01 05:07:03 +08:00
output
This commit is contained in:
parent
b26e60dae9
commit
7921e363b0
1 changed files with 3 additions and 3 deletions
|
@ -215,7 +215,7 @@ int CmdFlexdemod(const char *Cmd) {
|
|||
}
|
||||
|
||||
if (start == size - LONG_WAIT) {
|
||||
PrintAndLogEx(NORMAL, "nothing to wait for");
|
||||
PrintAndLogEx(WARNING, "nothing to wait for");
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
@ -239,9 +239,9 @@ int CmdFlexdemod(const char *Cmd) {
|
|||
for (j = 0; j < 16; j++)
|
||||
sum += data[i++];
|
||||
|
||||
if (sum > 0 && bits[bit] != 1) PrintAndLogEx(NORMAL, "oops1 at %d", bit);
|
||||
if (sum > 0 && bits[bit] != 1) PrintAndLogEx(WARNING, "oops1 at %d", bit);
|
||||
|
||||
if (sum < 0 && bits[bit] != 0) PrintAndLogEx(NORMAL, "oops2 at %d", bit);
|
||||
if (sum < 0 && bits[bit] != 0) PrintAndLogEx(WARNING, "oops2 at %d", bit);
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue