mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-02-14 03:03:14 +08:00
wrong letter in variable name
Conflicts: client/cmddata.c
This commit is contained in:
parent
92623113b4
commit
33c7e2f3bc
1 changed files with 5 additions and 0 deletions
|
@ -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],
|
||||
|
|
Loading…
Reference in a new issue