Hi,
I am facing a problem by start up from sybios the __TI_auto_init function takes about 650ms these is too high for my requirements we have to start up under 100ms some tasks.
I find out that these time I can reduce withe the reducing the heap size from sysbios.
But my problem is how I can find out the correct heap and stack size for sysbios ?
And also is there any option to reduce these time ?
bios_6_33_04_39
xdctools_3_23_03_53
xdais_7_21_01_07
/*
* The BIOS module will create the default heap for the system.
* Specify the size of this default heap.
*/
BIOS.heapSize = 0x80000;
/* System stack size (used by ISRs and Swis) */
Program.stack = 0x5000;