mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-19 04:49:38 -07:00
remove debugging print calls
This commit is contained in:
parent
1fbf895616
commit
9680b11d9e
1 changed files with 1 additions and 2 deletions
|
@ -1428,7 +1428,7 @@ int CmdFSKdemodIO(const char *Cmd)
|
||||||
|
|
||||||
for (uint8_t i=1; i<6; ++i){
|
for (uint8_t i=1; i<6; ++i){
|
||||||
calccrc += bytebits_to_byte(BitStream+idx+9*i,8);
|
calccrc += bytebits_to_byte(BitStream+idx+9*i,8);
|
||||||
PrintAndLog("%d", calccrc);
|
//PrintAndLog("%d", calccrc);
|
||||||
}
|
}
|
||||||
calccrc &= 0xff;
|
calccrc &= 0xff;
|
||||||
calccrc = 0xff - calccrc;
|
calccrc = 0xff - calccrc;
|
||||||
|
@ -1436,7 +1436,6 @@ int CmdFSKdemodIO(const char *Cmd)
|
||||||
char *crcStr = (crc == calccrc) ? "crc ok": "!crc";
|
char *crcStr = (crc == calccrc) ? "crc ok": "!crc";
|
||||||
|
|
||||||
PrintAndLog("IO Prox XSF(%02d)%02x:%05d (%08x%08x) [%02x %s]",version,facilitycode,number,code,code2, crc, crcStr);
|
PrintAndLog("IO Prox XSF(%02d)%02x:%05d (%08x%08x) [%02x %s]",version,facilitycode,number,code,code2, crc, crcStr);
|
||||||
//PrintAndLog("IO Prox XSF(%02d)%02x:%05d (%08x%08x)",version,facilitycode,number,code,code2);
|
|
||||||
setDemodBuf(BitStream,64,idx);
|
setDemodBuf(BitStream,64,idx);
|
||||||
if (g_debugMode){
|
if (g_debugMode){
|
||||||
PrintAndLog("DEBUG: idx: %d, Len: %d, Printing demod buffer:",idx,64);
|
PrintAndLog("DEBUG: idx: %d, Len: %d, Printing demod buffer:",idx,64);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue