How to declare image to allocate memory space in SDRAM?
Hi guys,
I use STM32F429+stemwin GUI. I have many image to show on display. Due to space limitation, I try to declare image to allocate memory space in SDRAM as following line:
unsigned char _acMY_LOGO[]__attribute__((at(SDRAM_BANK_ADDR + IMAGE1_ADDR))) = { .......
the program is complied without error but when I program it, the compiler show the following warning:
No Algorithm found for: D0408000H - D040FFFFH
No Algorithm found for: D0410000H - D0416AFFH
Partial Programming Done (areas with no algorithms skipped!)
it seem the complier cannot write on SDRAM address. my complier is keil. I'm pleased if you help me "How to declare image to allocate memory space in SDRAM?"
