Hai,
I am using msp430f5418 with IAR.
For my project I am using easyGUI and freeRTOS.
When I compile it without freeRTOS it works fine and the code size details
OPTIMIZATION : LOW
38172 bytes of CODE memory
4168 bytes of DATA memory (+ 10 absolute )
8793 bytes of CONST memory
But When I include freeRTOS it wont work if I compile in LOW Optimization mode. The details give below.
39850 bytes of CODE memory (+ 2 absolute )
5982 bytes of DATA memory (+ 16 absolute )
8808 bytes of CONST memory
For high optimization mode program works but at some point of time it goes to address 0x00 and stucks.
The highly optimized compillation details are,
33466 bytes of CODE memory (+ 2 absolute )
5982 bytes of DATA memory (+ 16 absolute )
8808 bytes of CONST memory
why is it so?
Is there any code size limit for MSP?
Thanks