Question
Can SRAM1, SRAM2, SRAM3 be treated as one continuous memory region?
(This is regarding STM32H75x)
SRAM1, SRAM2, and SRAM3 are separate in the memory map, but they are continuous - there are no gaps between them:
Can they be treated as continuous with respect to the linker, for example:
RAM_D2 (xrw) : ORIGIN = 0x30000000, LENGTH = 288KAnd then place some arbitrary data in that region?
Like, can we place an array that is 288k in that region and use it as a heap, or will bad things happen at the region where SRAM1 ends / SRAM2 starts, etc?