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.

MSPM0C1104: MSPM0C1104

Part Number: MSPM0C1104

Dear sir/mam

i  am  unable to take breakpoint in code composer studio  in main function.how can i remove this issue.

please reply sir/mam.

Regards

Alok

  • Hello, 

    Are you trying to add or remove a breakpoint?   

    To add, you can usually double click on the line number of the code or right click and say "add breakpoint."  Sometimes it will move the break point to the end of condition or function, depending how the code is being compiled.  You can add __BKPT(0); to your code for force a break point at a certain spot.  

    To remove breakpoints, the easiest way is in the breakpoint menu under the View menu.  You can see all breakpoints in the code and disable them individually.  

    Thanks,

    JD

  • If you have optimization on, the line you are trying to breakpoint on might have been optimized away. Choose another line earlier in the function.