Question
I have a STM32H7B3I Eval-board, Keil compiler and emWin. The demo "Hello world" is running just fine when the LCD_LAYER0_FRAME_BUFFER is placer in SDRAM on adr. ((int)0xD0000000). But I want it to run in the SRAM from adr. ((int)0x68000000).
I have maked this changes to make the switch from SDRAM to the SRAM (IS61WV102416BLL) on the Board.
#define GUI_NUM_LAYERS 1
#define LCD_LAYER0_FRAME_BUFFER ((int)0x68000000)
/* Initializes the SRAM device in the Main*/
BSP_SRAM_Init(0);
But it don’t Work, if I set LCD_LAYER0_FRAME_BUFFER back to
((int)0xD0000000) SDRAM
then it work.
It looks to be something that needs to
be Init but I can’t see what it is.
Need help.