Hi,all:
I am confused by so many heaps if use sysbios/bios.
If I define below three kinds of heaps at the same time.what happen?
how to know which heap size is the real heap size ?
1. define heap in cmd file
xx.cmd file - heap 0x4000
2.define heap in cfg file
BIOS.heapSize = 0xB000;
3.define heap in cfg file
var HeapMem = xdc.useModule('ti.sysbios.heaps.HeapMem');
var heapMemParams = new HeapMem.Params();
heapMemParams.size = 0xC000;