Skip to main content
DSEO
Associate II
February 21, 2019
Question

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

  • February 21, 2019
  • 3 replies
  • 1720 views

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

This topic has been closed for replies.

3 replies

After Forever
Senior III
February 21, 2019

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
Senior III
February 21, 2019

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

Too many or too big variables / arrays / structs.

Tesla DeLorean
Guru
February 21, 2019

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 (See Profile) Up vote any posts that you find helpful, it shows what's working..