Other Parts Discussed in Thread: MSP430F5438A
Hello!
I'm programming a MSP430F5438A. At one point, I would like to set a break point.
But CCS refuses to set it where I want. It looks like this.
uint8 some_variable = 0; //
if(mSelect) { // (try to) Set breakpoint here
some_variable = something; // The breakpoint is set here or even further in the code.
}
else {
some_variable = something_else;
}
NB: the file hase been saved, and recompiled. I mean: If I add a line during debugging, and continue
to debug, it will of cours shift all the code by one line. But I change the code, recompile&run, try to set
a breakpont -> it doesn't work.
Any idea of what may happen?