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?