-#define HANDLE_BIT_IF_BODY \
- if(triggered && tracing) {\
- uint8_t parity[MAX_PARITY_SIZE];\
- GetParity(receivedCmd, Uart.byteCnt, parity);\
- LogTrace(receivedCmd,Uart.byteCnt,samples, samples,parity,TRUE);\
- if(!tracing) {\
- DbpString("Reached trace limit");\
- break;\
- }\
- }\
- /* And ready to receive another command. */ \
- memset(&Uart, 0, sizeof(Uart)); \
- Uart.output = receivedCmd; \
- Uart.byteCntMax = 100; \
- Uart.state = STATE_UNSYNCD; \
- /* And also reset the demod code, which might have been */ \
- /* false-triggered by the commands from the reader. */ \
- memset(&Demod, 0, sizeof(Demod)); \
- Demod.output = receivedResponse; \
- Demod.state = DEMOD_UNSYNCD; \
-