Other Parts Discussed in Thread: SYSBIOS
What is the right way to configure a memory space (for example at bf000000) to be none-cache (when assessed by C674x DSP core)?
I tried to add MAR bit in *.cfg file, for example:
Var Cache = xdc.useModule('xdc.runtime.knl.Cache');
/* Disable caching for remote logging area, which start from 0xbf000000 */
Cache.MAR191_192 = 0x00000000;
The build process give error of (no element named 'MAR191_192')
Thanks.