Other Parts Discussed in Thread: SYSCONFIG, SYSBIOS, MSP432E401Y
Greetings,
I am still pretty new to using CCS and currently trying to reconfigure the "udpecho_MSP_EXP432E401Y_tirtos_ccs" example project in the Network Services section for use on my MSP432E411Y custom board (25 MHz external clock provided). Starting with the example project, in the project properties General->Products tab I have changed to project to use SysConfig version 1.8.1 instead of the default 1.4. I have then opened the udpecho.syscfg file in CCS SysConfig editor and switched the chip to the MSP432E411YTZAD . I then also changed the "tirtos_builds_MSP_EXP432E401Y_release_ccs" Properties General->Projects tab to use the MSP432E411Y as the Variant.
The project builds successfully but using the the debugger it appears to be getting hung up inside the ,BIOS_start(); call in main_tirtos.c One of the places I see it looping to is simplelink_msp432e4_sdk_4_20_00_12/kernel/tirtos/packages/ti/sysbios/knl/Task.c (seen) below as well as Idle.c in the same folder location.
/*
* ======== Task_restore ========
*/
Void Task_restore(UInt tskKey)
{
if (tskKey == FALSE) {
(Void)Hwi_disable();
if (Task_module->workFlag == TRUE &&
(BIOS_swiEnabled == FALSE ||
(BIOS_swiEnabled == TRUE && Swi_enabled() == TRUE))) {
Task_schedule();
}
Task_module->locked = FALSE;
(Void)Hwi_enable();
}
}
Although I would like to understand the cause of this behavior, my main question currently is what are the detailed steps to convert a MSP432E401Y project for use with a MSP432E411Y?
Thank you