2018-08-28 10:57 PM
I do debugging, so I have a breakpoint, but compiler jumping the breakpoint.
2018-08-29 12:10 AM
cache off for single step...
2018-08-29 01:08 AM
Thank you for answered, but I don't understand.
2018-08-29 01:15 AM
I found that single stepping with the Cache turned on made the IDE unstable.
Which processor are you using ?
2018-08-29 01:24 AM
Or no machine code associated with said source lines ?
Be more specific.
2018-08-29 01:59 AM
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);
2018-08-29 02:07 AM
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.