2022-03-18 03:40 AM
I work with STM32CubeIde 1.8. I put stop points, they are not taken into account by the debbugger. I assume that the C compiler options are chosen to optimize the code at the busy memory and execution speed level. With these options it does not take into account the points . how to modify these options ?
Solved! Go to Solution.
2022-03-18 07:59 AM
To access compiler options: right click the project name, then "Properties"
C/C++build > Settings > Tool Setting tab
Then select the tool entry like "Optimization"
2022-03-18 07:59 AM
To access compiler options: right click the project name, then "Properties"
C/C++build > Settings > Tool Setting tab
Then select the tool entry like "Optimization"
2022-03-18 11:44 AM
Being accustomed to other development environments I had not noticed the possibility of invalidating the break points to the left of « Terminate and Relaunch. Your answer led me to search and I validated the hold points. This allows me to see the essential error of the program.
Thank you.
2022-03-18 11:48 AM