X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/92623113b43d1f36cb72e61b8ce29ac74cf7db71..33c7e2f3bc324a122fb9db8dca23efcd425a3cec:/client/cmddata.c diff --git a/client/cmddata.c b/client/cmddata.c index 8c91f0e1..cf4dc6b9 100644 --- a/client/cmddata.c +++ b/client/cmddata.c @@ -56,6 +56,11 @@ void printDemodBuff() return; } if (bitLen>512) bitLen=512; //max output to 512 bits if we have more - should be plenty + + // equally divided by 16 + if ( bitLen % 16 > 0) + bitLen = (bitLen/16); + for (i = 0; i <= (bitLen-16); i+=16) { PrintAndLog("%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i", DemodBuffer[i],