I have a TM4C1294 which is software-reseting.
Early in the code I check the cause and clear the register:
resetCause = SysCtlResetCauseGet();
SysCtlResetCauseClear(0x107F); // Clear all known reset causes
And the cause is SYSCTL_CAUSE_SW.
Is there any strategy to find out where was the code running when the reset happened? I'm having a hard time to step into debugging on this particular case...
The issue causing the reset seems to be similar to what was posted on the thread below - but still, I'd like to figure out if the "last living location" can be figured out.