Minor tweaks to iso14443b snoop tracing

This commit is contained in:
Martin Holst Swende 2015-01-27 16:34:11 +01:00
parent 03dc174036
commit 16b75f27c3

View file

@ -633,6 +633,8 @@ static void UartReset()
Uart.output = ((uint8_t *)BigBuf) + RECV_CMD_OFFSET; Uart.output = ((uint8_t *)BigBuf) + RECV_CMD_OFFSET;
Uart.byteCntMax = MAX_FRAME_SIZE; Uart.byteCntMax = MAX_FRAME_SIZE;
Uart.state = STATE_UNSYNCD; Uart.state = STATE_UNSYNCD;
Uart.byteCnt = 0;
Uart.bitCnt = 0;
} }
/* /*
@ -1114,6 +1116,8 @@ void RAMFUNC SnoopIso14443(void)
GetParity(Uart.output, Uart.byteCnt, parity); GetParity(Uart.output, Uart.byteCnt, parity);
LogTrace(Uart.output,Uart.byteCnt,samples, samples,parity,TRUE); LogTrace(Uart.output,Uart.byteCnt,samples, samples,parity,TRUE);
} }
if(Uart.byteCnt==0) Dbprintf("[1] Error, Uart.byteCnt==0, Uart.bitCnt=%d", Uart.bitCnt);
/* And ready to receive another command. */ /* And ready to receive another command. */
UartReset(); UartReset();
/* And also reset the demod code, which might have been */ /* And also reset the demod code, which might have been */
@ -1125,6 +1129,8 @@ void RAMFUNC SnoopIso14443(void)
GetParity(Uart.output, Uart.byteCnt, parity); GetParity(Uart.output, Uart.byteCnt, parity);
LogTrace(Uart.output,Uart.byteCnt,samples, samples,parity,TRUE); LogTrace(Uart.output,Uart.byteCnt,samples, samples,parity,TRUE);
} }
if(Uart.byteCnt==0) Dbprintf("[2] Error, Uart.byteCnt==0, Uart.bitCnt=%d", Uart.bitCnt);
/* And ready to receive another command. */ /* And ready to receive another command. */
UartReset(); UartReset();
/* And also reset the demod code, which might have been */ /* And also reset the demod code, which might have been */