cancel
Showing results for 
Search instead for 
Did you mean: 

STemWin and RTOS

smhhadima
Associate II
Posted on October 25, 2015 at 18:59

is there is any example of STemWin using FreeRTOS?

I am using discovery kit STM32F429

I have my main function has only GUI_Init();

I keep getting this error 

region `RAM' overflowed by 1919320 bytes

3 REPLIES 3
Posted on October 25, 2015 at 21:39

Using which tool chain?

The error would suggest you have some huge graphic image #include'd that needs to be ''const'', or you have some dynamic allocation or heap expectation.

You should perhaps look at your linker script or scatter file, and make sure you have a handle on what's getting placed in SRAM (internal) and SDRAM (external), because there isn't 1.9MB of SRAM on the part.

Tips, Buy me a coffee, or three.. PayPal Venmo
Up vote any posts that you find helpful, it shows what's working..
smhhadima
Associate II
Posted on October 28, 2015 at 10:17

Any tool chain will be fine with me. ( I am working with Coocox and CubMX)

I just need to learn from a working code using RTOS because I couldn't find any.

smhhadima
Associate II
Posted on October 29, 2015 at 08:18

Any help?