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.

How to set up Ipc_ResetVector in CCS ?

i add 

--dynamic

--retain=Ipc_ResetVector

in  xdctools_3_22_01_21\packages\ti\targets\elf\linkcmd.xdt

and

add 

Program.sectMap["ti_sdo_ipc_init"] = new Program.SectionSpec();
Program.sectMap["ti_sdo_ipc_init"].loadAddress = 0x800000;
Program.sectMap["ti_sdo_ipc_init"].type = "NOINIT";
in sysbios cfg file

after build

i searched .map file,but there is no Ipc_ResetVector.

i need this because Ipc_CONTROLCMD_LOADCALLBACK need this to be a param, without Ipc_ResetVector , Ipc_Control always get fails.