Other Parts Discussed in Thread: SYSBIOS
Hi,all:
My cfg like below:
var HeapMem = xdc.useModule('ti.sysbios.heaps.HeapMem');
var heapMemParams = new HeapMem.Params();
heapMemParams.size = 1000000;//intHeapSize;
heapMemParams.sectionName = ".output_buffer";
Program.global.INTMEM_HEAP = HeapMem.create(heapMemParams);
Memory.defaultHeapInstance = Program.global.INTMEM_HEAP;
Program.sectMap[".output_buffer"] = "DDR3";
As I understand,ti.sysbios.heaps.HeapMem should be placed on DDR3 and its address should
be beyond the 0x8000 0000.But in fact when I see the ROV it is all different.
From that figure,The HeapMem start from 0x0080bcd0 which should be in the range of L2SRAM not DDR3.
Why ? Thanks!
