Hello,
I am currently debugging an example project but find it very difficult to debug.
I cannot find an arrow in the window displaying the contents of my .c files indicating the next statement to be executed.
This is a very finnicky problem because sometimes it does work, but I am unsure what determines this.
I always see an arrow in the disassembly window during debug, indicating which line is about to execute.
I don't know much about assembler, so the disassembly window is useless to me.
I would be most grateful if somebody could explain to me what it is that determines whether I can see the next C statement about to be executed.
KR
The Options->C/C++->Language/Code Generation->Optimization
You're much more likely to get a one-to-one linear sequencing with it OFF, otherwise it's free to reorder your code, or discard it, and in a manner you're likely to find confusing.