adapted some output

This commit is contained in:
iceman1001 2023-12-18 22:14:51 +01:00
parent 2bfc31a7b6
commit 8bb74815b7
2 changed files with 3 additions and 3 deletions

View file

@ -638,7 +638,7 @@ static int CmdHFTexkomReader(const char *Cmd) {
void *argtable[] = { void *argtable[] = {
arg_param_begin, arg_param_begin,
arg_lit0("1", NULL, "Use data from Graphbuffer"), arg_lit0("1", NULL, "Use data from Graphbuffer (offline mode)"),
arg_lit0("v", "verbose", "Verbose scan and output"), arg_lit0("v", "verbose", "Verbose scan and output"),
arg_lit0("@", NULL, "optional - continuous reader mode"), arg_lit0("@", NULL, "optional - continuous reader mode"),
arg_param_end arg_param_end

View file

@ -159,7 +159,7 @@ int demodParadox(bool verbose, bool oldChksum) {
// not manchester data // not manchester data
if (bits[i] == bits[i + 1]) { if (bits[i] == bits[i + 1]) {
PrintAndLogEx(WARNING, "Error Manchester at %u", i); PrintAndLogEx(DEBUG, "Error Manchester at %u", i);
errors++; errors++;
} }
@ -173,7 +173,7 @@ int demodParadox(bool verbose, bool oldChksum) {
} }
if (errors) { if (errors) {
PrintAndLogEx(WARNING, "Total Manchester Errors... %u", errors); PrintAndLogEx(DEBUG, "Total Manchester Errors... %u", errors);
} }
setDemodBuff(bits, size, idx); setDemodBuff(bits, size, idx);