This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

RTOS/CC1352P: Restart of collector in SUB 1 GHZ communication

Part Number: CC1352P
Other Parts Discussed in Thread: CC1352R

Tool/software: TI-RTOS

Hello,

I am using CC1352P and CC1352R custom boards, my collector CC1352P gets restarted by the following reasons.

I used the rSrc = SysCtrlResetSourceGet(); this function to get the restart reason.

Firstly i got 0x7 and the reason for that i could not get but from TRM recommendation i made 

if(rSrc == 0x07)
{
#ifdef DEBUG_CONNECTIVITY_MODULE
UART_write(uart, "\nWarm Reset Occured Performing System Reset\n", 44);
#endif
SysCtrlSystemReset();
}

After this implementation i got always 0x6 which is a Software reset via SYSRESET or hardware power management timeout detection.

For some custom boards i got 0x5. which is SCLK_LFSCLK_MF or SCLK_HF clock loss detect.

Is there any solution for the above reset reasons.

Thanks & Regards

Haricharan