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.

Creat own platform on 6678 failed

Hello,

MY board is customed 6678 platform. I want to creat my own platform,after I refered the part 6.2.2 in the SYS/BIOS user guide.The memories are allocated as ,

follow picture,the project is the MessageQ example provided by ccs.

after I add the platform to the project and build the project,some erro appeared,the error is: error #10234-D: unresolved symbols remain.look at the next picture.

I changed back to the default platform (ti.platforms.evm6678),the error is same. the same problem is meeted in the forum,the link is  e2e.ti.com/.../764407, but I put the platform in the folder ti/ccsv5/ccs_bas,it couldn't solve the problem. I don't know what's wrong ?

  • Hi Yongjun wang,

    Moved this thread over keystone forum. Thank you.

    I you think this problem is due to RTSC platform created, you can post this on TI-RTOS forum for some help. Thank you.

    Please post your compiler related queries to Compiler forum  TI-RTOS (SYS/BIOS) related queries to TI-RTOS Forum and Code Composer Studio related queries to CCS Forum

  • Hi yongjun wang,
    Please make sure that you have added the IPC module declarations in your BIOS configuration file (*.cfg)


    Ex:
    /* Load and configure the IPC packages */
    var MessageQ = xdc.useModule('ti.sdo.ipc.MessageQ');
    var Ipc = xdc.useModule('ti.sdo.ipc.Ipc');
    var HeapBufMP = xdc.useModule('ti.sdo.ipc.heaps.HeapBufMP');
    var SharedRegion = xdc.useModule('ti.sdo.ipc.SharedRegion');
    var MultiProc = xdc.useModule('ti.sdo.utils.MultiProc');