2022-01-18 05:32 AM
2022-01-19 06:40 AM
Hello @AN.4 ,
I advise you to refer to the UM2576, in section "2.4 Setting breakpoints" section.
I hope this helps !
If my answer satisfy your need, please select it as Best so that this thread will marked as solved.
Thanks
Imen
2022-01-19 06:53 AM
Thanks for response.
I want to set the condition for breakpoint, so that when condition is true then breakpoint occurs.
In breakpoint properties -> common -> condition, you can set the condition.
I want to know the syntax to write the if condition for the same.
2023-04-18 11:27 AM
It's a boolean expression in C/C++; For example, if you want this breakpoint breaks only when the global variable global_a is equal to 100, just input global_a == 100.