mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 13:53:55 -07:00
no printf
This commit is contained in:
parent
f79a4803c5
commit
7336906923
1 changed files with 2 additions and 2 deletions
|
@ -103,9 +103,9 @@ static int CmdGallagherDemod(const char *Cmd) {
|
||||||
for (int i = 0, pos = 0; i < ARRAYLEN(arr); i++) {
|
for (int i = 0, pos = 0; i < ARRAYLEN(arr); i++) {
|
||||||
pos = (i * 8) + i;
|
pos = (i * 8) + i;
|
||||||
arr[i] = bytebits_to_byte(DemodBuffer + pos, 8);
|
arr[i] = bytebits_to_byte(DemodBuffer + pos, 8);
|
||||||
printf("%d -", pos);
|
PrintAndLogEx(NORMAL, "%d -" NOLF, pos);
|
||||||
}
|
}
|
||||||
printf("\n");
|
PrintAndLogEx(NORMAL, "");
|
||||||
|
|
||||||
// crc
|
// crc
|
||||||
uint8_t crc = bytebits_to_byte(DemodBuffer + 72, 8);
|
uint8_t crc = bytebits_to_byte(DemodBuffer + 72, 8);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue