cancel
Showing results for 
Search instead for 
Did you mean: 

i don't know what is the reason for this error.

DSEO
Associate II

I am testing the stemwin using the stm32f429i-disco Board.

When building the project, I get the following error and I can not trace the error.

This error occur when i use GUI_Init() Function

Please help me!!

0690X000006DlFhQAK.jpg

3 REPLIES 3

You have too much data, nearly 2MB. Make your graphics smaller, and define them as "const" so they end up only in Flash, not in RAM.

AvaTar
Lead

I think the text "region RAM overflowing" is pretty self-explanatory, isn't it ?

Too many or too big variables / arrays / structs.

You should probably be using SDRAM, so you'd need to get that initialized, and described in the linker script, and then direct your large allocations into that space.

Tips, Buy me a coffee, or three.. PayPal Venmo
Up vote any posts that you find helpful, it shows what's working..