This commit is contained in:
iceman1001
2020-11-05 12:02:54 +01:00
parent b72c8dc3d7
commit 7f6e3a7cfc
3 changed files with 6 additions and 2 deletions

View File

@@ -138,11 +138,14 @@ int demodHID(bool verbose) {
wiegand_message_t packed = initialize_message_object(hi2, hi, lo);
if ( HIDTryUnpack(&packed, false) == false) {
PrintAndLogEx(INFO, "raw: " _GREEN_("%08x%08x%08x"), hi2, hi, lo);
printDemodBuff(0, false, false, true);
}
PrintAndLogEx(DEBUG, "DEBUG: HID idx: %d, Len: %zu, Printing Demod Buffer: ", idx, size);
if (g_debugMode) {
PrintAndLogEx(DEBUG, "raw: " _GREEN_("%08x%08x%08x"), hi2, hi, lo);
printDemodBuff(0, false, false, false);
}