cancel
Showing results for 
Search instead for 
Did you mean: 

In TrueStudio, While debugging, compiler is not stay breakpoint.

kadir ustun1
Senior

I do debugging, so I have a breakpoint, but compiler jumping the breakpoint.

6 REPLIES 6
T J
Lead

cache off for single step...

kadir ustun1
Senior

Thank you for answered, but I don't understand.

T J
Lead

I found that single stepping with the Cache turned on made the IDE unstable.

Which processor are you using ?

AvaTar
Lead

Or no machine code associated with said source lines ?

Be more specific.

kadir ustun1
Senior

I using STM32F429. And My code part is :

  uint16_t tempfloat;

tempfloat = (paramatres[5] & 0x00FF) << 16;

tempfloat |= (paramatres[6] & 0x00FF)<<8;

tempfloat |= (paramatres[7] & 0x00FF);

AvaTar
Lead

What about the project settings ?

With optimization levels greater or equal to 1, the compiler reorganizes the code, and single-stepping can be full of surprises.