Tool/software: TI C/C++ Compiler
Can someone please tell me why I cannot set breakpoint? See attached....1651.Doc1.docx
I cannot seem to set any breakpoint AFTER the CRC_Result if condition.....Anyone know why? Certainly this code must run after the 'if' statement?
if (!transmitter) {
if (mssgRcvd) {
mssgRcvd = F;
pRx = incoming;
P5OUT &= ~BIT0;
memcpy(noCRC, incoming, sizeof(noCRC));
CRC_Result = CRC(noCRC);
if ((char)(((CRC_Result >> 8) & 0xFF) == incoming[6]) && ((char)((CRC_Result & 0xFF) == incoming[7]))) {
A BUNCH OF CODE!!!!!!!!!!
}
RFPackets++; //troubleshooting line only
pRx = incoming;
UCA1RXBUF = 0;
UCA1IFG &= ~UCRXIFG;
UCA1IE |= UCRXIE;
}
}