Part Number: TMS320F280049
Hi Champ,
When i didn't program DCSM OTP, but call the DCSM_secureZone1() function to set FORCESEC , which will cause the CPU break at 0x3fbd92.
the code like following, may i know the reason?
void main(void)
{
//
// Initialize device clock and peripherals
//
Device_init();
//
// Initialize GPIO and configure GPIO pins for CANTX/CANRX
//
Device_initGPIO();
//
// Initialize PIE and clear PIE registers. Disables CPU interrupts.
//
Interrupt_initModule();
//
// Initialize the PIE vector table with pointers to the shell Interrupt
// Service Routines (ISR).
//
Interrupt_initVectorTable();
//
// Enable Global Interrupt (INTM) and realtime interrupt (DBGM)
//
EINT;
ERTM;
DCSM_secureZone1();
for(;;)
{
cot++;
}
}

