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_LF, SCLK_MF or SCLK_HF clock loss detect.
Is there any solution for the above reset reasons.
Thanks & Regards
Haricharan