I am using CCS v5 to develop and debug a Stellaris microcontroller (LM4F232H5QD), and sometimes it appears that the "Resume" function is not working. Typically I'm setting a breakpoint inside some repeating piece of code, like a for loop, and I want to resume until the breakpoint hits again next time around. The problem that I am experiencing is that it never seems to run the loop again, it just stops immediately when I click resume. For example; I am watching some counter variable, and when I click resume a few times I expect it to increase, but it stays at the same value. What I have to do in this case is to manually single-step over the code that increases the counter variable, and then click resume. Any ideas what could be wrong?