lf gallagher demod - remove debug statements

This commit is contained in:
iceman1001 2021-02-12 10:38:57 +01:00
parent 69a73675fb
commit 0f40e97b71

View file

@ -121,9 +121,7 @@ int demodGallagher(bool verbose) {
uint8_t crc = bytebits_to_byte(DemodBuffer + 16 + (9 * 8), 8);
uint8_t calc_crc = CRC8Cardx(arr, ARRAYLEN(arr));
PrintAndLogEx(INFO, " Before: %s", sprint_hex(arr, 8));
descramble(arr, ARRAYLEN(arr));
PrintAndLogEx(INFO, " After : %s", sprint_hex(arr, 8));
// 4bit region code
uint8_t rc = (arr[3] & 0x1E) >> 1;