added better tracing capabilities, fixed some reader issues

This commit is contained in:
roel@libnfc.org 2012-06-29 10:47:07 +00:00
commit 4ab4336a97
2 changed files with 28 additions and 57 deletions

View file

@ -1324,6 +1324,10 @@ void SimulateIso14443aTag(int tagType, int uid_1st, int uid_2nd)
if (respdata != NULL) {
LogTrace(respdata,respsize, 0, SwapBits(GetParity(respdata,respsize),respsize), FALSE);
}
if(traceLen > TRACE_SIZE) {
DbpString("Trace full");
break;
}
}
memset(receivedCmd, 0x44, RECV_CMD_SIZE);