2015-10-25 10:59 AM
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 errorregion `RAM' overflowed by 1919320 bytes
2015-10-25 01:39 PM
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.2015-10-28 02:17 AM
2015-10-29 12:18 AM