Posted on March 01, 2018 at 14:15Concerning the gaps in a BIN you are absolutely right. However if one do not need to pre-allocate memory in RAM2 region at the compilation time this solution works prefectly.Using (NOLOAD) directive prevents program ...
Posted on March 01, 2018 at 11:47You may consider adding an attribute (NOLOAD) to the section of your additional RAM block, like this: .ram2 (NOLOAD) : { _sram2 = .; *(.ram2) KEEP(*(.ram2)) . = ALIGN(4); _eram2 = .; } >RAM2 I...