Hi
I already can launch group with core0 and core2 according to the following picture, the left side is run on core0, and right side run on core2.

But core2 can't run after I power off and power on the device. Only can run in debug mode.
Is there anyone has experience or idea about this?
The attachment is my main.c file, I also add the following code into the main function.
void start_core_cm7_2(void){
IP_MC_ME->PRTN0_CORE4_ADDR = (uint32)0x00800000;
IP_MC_ME->PRTN0_CORE4_PCONF = MC_ME_PRTN0_CORE4_PCONF_CCE_MASK;
IP_MC_ME->PRTN0_CORE4_PUPD = MC_ME_PRTN0_CORE4_PUPD_CCUPD_MASK;
IP_MC_ME->CTL_KEY = 0x5AF0U;
IP_MC_ME->CTL_KEY = 0xA50FU;
while (IP_MC_ME->PRTN0_CORE4_PUPD == 1) { };
while ((IP_MC_ME->PRTN0_CORE4_STAT & MC_ME_PRTN0_CORE4_STAT_CCS_MASK) == 0) { };
}
Thanks
BR, BillWen