Tool/software:
When debugging, I add 2 breakpoints in the interrupt service function.
I resume the program, the program stops at the first breakpoint and never reaches the second breakpoint.
I step into the program, it can reach the second breakpoint.
I step over the program, it only stops at the first breakpoint.
If I delete the first breakpoint, the program will reach the second breakpoint.
If I delete both of them, the program runs well.
What the reason for this? How to resolve the problem??