STM32H7~How to allocate arrays to a certain location
I tried adding this to the linker file/* used by the startup to initialize data */ _sidata_RAM_D3 = LOADADDR(.data_RAM_D3); /* Initialized data sections goes into RAM_D3, load LMA copy after code */ .data_RAM_D3 : { . = ALIGN(4); _sdata_RAM_D3 = ....