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.

syslink example for L138 in CCS issue

 Hi All!

I'm trying to build sysexample for L138 from the mcsdk_1.1.0.2 in CCS

During the build I see follow error:


Cannot read property "base" from undefined (/home/user/workspace_v5_4/syslink_test/Dsp.cfg#86)

I use defauld Dsp.cfg from example folder

Piece of Dsp.cfg with trouble:

....

SharedRegion.setEntryMeta(0,
    new SharedRegion.Entry({
        name:           "SR0",
        base:           SR0Mem.base,         // <<something is wrong
        len:            SR0Mem.len,
        ownerProcId:    MultiProc.getIdMeta("HOST"),
        cacheEnable:    false,
        isValid:        true
    }) 
);

....


What's wrong in the project?