STM32L4 External SRAM problem
Hi
I am working with a STM32L496G_Discovery board and Cube IDE
I am having problems with the external ram. I have called BSP_SRAM_Init();
and defined an array in that ram space
float testInput[TEST_LENGTH_SAMPLES] __attribute__((section("._myvars")));
In my linker file I have
MEM_BASE (xrw) : ORIGIN = 0x60000000, LENGTH = 1024K
and
._myvars(NOLOAD) : {*(._myvars)} >MEM_BASE
But I can only get NaNs in that ram space.
I did something similar with a ST32L476 EVAL board and that worked successfully
Thank you
developerR