This should be an easy one to fix for someone who understands code composer better than I do.
I have an initialized global variable:
int indx = 0;
However, I have noticed that when I terminate a debugging session, then start a new debugging session (i.e. click debug icon), this variable does not get reset to zero... Is this the expected behavior for code composer? I thought it was a part of the C standard to always reinitialize global variables that are declared initialized...
Thanks for everyone's help in advance!