Hi !
I try to use MCU Settings in MCUXpresso ( I use LPS55S69 SDK and etc.) for define FLASH and RAM sections with NOINIT attributes.
But looks like any section what was added is added to common pool with .bss and etc attributes.
How-to via MCU settings or via Freemaker scripts define NOLOAD sections what looks like this in final linker file:
.text_Flash3 0x10090000 (NOLOAD) :
{
PROVIDE (__flash3_start = .);
KEEP(*(.flash3_storage*))
PROVIDE (__flash3_end = .);
}
.data_SRAM4 0x30042000 (NOLOAD) :
{
__sram4_start = .;
KEEP(*(.sram4*))
__sram4_end = .;
}
Regards,
Eugene