Part Number: TMS320F28386S
In the program below I set a breakpoint on first executable line. If I hit continue it completes the program and comes back to the breakpoint. The same happens repeatedly. The debugger should stop but it does not.
//main.c
#include "driverlib.h"
#include "device.h"
//
// Main
//
uint32_t main(void)
{
Device_init();
Device_initGPIO();
Interrupt_initModule();
Interrupt_initVectorTable();
//
// Enable Global Interrupt (INTM) and realtime interrupt (DBGM)
//
EINT;
ERTM;
return(0);
}