Hi,
we are trying to bring up our application in TCI6636K2H platform, facing issue in BIOS-start up after the SWI start up the Program counter moves to Interrupt Handler HWI-1 execution due to exception, instead of executing the Task_startup() due to this idle task is not getting executed. Not sure about the exception due to what it is getting executed.
we observed when all the devices initialization(linked LLDs in our project ) is not done BIOS-starting up correctly, when any one of the device example FFT initialization(created FDQ-Q#8930 and High priority accumulation RXQ and RX flow Q#704) is enabled BIOS-start up is failing at this function ti_sysbios_knl_Swi_startup();.
Void ti_sysbios_BIOS_startFunc__I()
{
xdc_runtime_System_atexit(
(xdc_runtime_System_AtexitHandler)ti_sysbios_BIOS_exitFunc__I);
ti_sysbios_BIOS_registerRTSLock();
ti_sysbios_hal_Hwi_startup();
ti_sysbios_hal_Timer_startup();
ti_sysbios_knl_Swi_startup();
ti_sysbios_knl_Task_startup();
}
Please provide your inputs or guide us to solve this problem
Thank You
JP