Hi TI Engineer
My CCS Version is CCS5.2 , complier version C6000 V7.4.1.
I create a program which include a lot of" switch case ".But after I build and load the program to the chip, I find that I can't toggle the breakPoints in all the last case branch,for example:
switch{
case a:
xxx
case b:
xxx
case c:
xxx ---- the breakpoint cannot be toggled here
default:
xxx
}(all break omitted)
As I know only the non-built code can behave like this, so I hesitate that all of the last case branch have not been complied,.
I rebuild the program several times,and make sure there is no any error and warnnings,but all of this is invalid.Can you give me some advice for this?Thank you very much.