mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-22 06:13:51 -07:00
ohps, forgot to multiply it up again.
This commit is contained in:
parent
7ea7465bbb
commit
f4a694f998
1 changed files with 2 additions and 1 deletions
|
@ -64,8 +64,9 @@ void printDemodBuff()
|
||||||
if (bitLen>512) bitLen=512; //max output to 512 bits if we have more - should be plenty
|
if (bitLen>512) bitLen=512; //max output to 512 bits if we have more - should be plenty
|
||||||
|
|
||||||
// equally divided by 16
|
// equally divided by 16
|
||||||
|
|
||||||
if ( bitLen % 16 > 0)
|
if ( bitLen % 16 > 0)
|
||||||
bitLen = (bitLen/16);
|
bitLen = (bitLen/16)*16;
|
||||||
|
|
||||||
for (i = 0; i <= (bitLen-16); i+=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",
|
PrintAndLog("%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue