From 8e00825a3491113508085b4ea949b10aa47499b9 Mon Sep 17 00:00:00 2001 From: marshmellow42 Date: Mon, 29 Jun 2015 14:33:44 -0400 Subject: [PATCH] fixed improper printBits usage. --- client/cmdhf14b.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/client/cmdhf14b.c b/client/cmdhf14b.c index 8e0c54ba..fafe92ca 100644 --- a/client/cmdhf14b.c +++ b/client/cmdhf14b.c @@ -295,7 +295,7 @@ int print_ST_Lock_info(uint8_t model){ case 0x7: // (SRI4K) //only need data[3] blk1 = 9; - PrintAndLog(" raw: %s",printBits(8,data+3)); + PrintAndLog(" raw: %s",printBits(1,data+3)); PrintAndLog(" 07/08: %slocked", blk1, (data[3] & 1) ? "not " : "" ); for (uint8_t i = 1; i<8; i++){ PrintAndLog(" %02u: %slocked", blk1, (data[3] & (1 << i)) ? "not " : "" ); @@ -307,7 +307,7 @@ int print_ST_Lock_info(uint8_t model){ case 0xC: // (SRT512) //need data[2] and data[3] blk1 = 0; - PrintAndLog(" raw: %s",printBits(16,data+2)); + PrintAndLog(" raw: %s",printBits(2,data+2)); for (uint8_t b=2; b<4; b++){ for (uint8_t i=0; i<8; i++){ PrintAndLog(" %02u: %slocked", blk1, (data[b] & (1 << i)) ? "not " : "" ); @@ -318,7 +318,7 @@ int print_ST_Lock_info(uint8_t model){ case 0x2: // (SR176) //need data[2] blk1 = 0; - PrintAndLog(" raw: %s",printBits(8,data+2)); + PrintAndLog(" raw: %s",printBits(1,data+2)); for (uint8_t i = 0; i<8; i++){ PrintAndLog(" %02u/%02u: %slocked", blk1, blk1+1, (data[2] & (1 << i)) ? "" : "not " ); blk1+=2; -- 2.39.2