This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

Compiler/MSP430FR2355: Please explain why I cannot set breakpoint??

Part Number: MSP430FR2355

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;
            }
        }

**Attention** This is a public forum