STM32F4: added linker script section for a .bss area in the 128kB SRAM

This commit is contained in:
Silvano Seva 2025-03-07 19:05:36 +01:00
parent b5ca097c52
commit cff09ca3c3
2 changed files with 2 additions and 0 deletions

View File

@ -169,6 +169,7 @@ SECTIONS
.bss2 (NOLOAD) : .bss2 (NOLOAD) :
{ {
*(.bss.fb) *(.bss.fb)
*(.bss2)
. = ALIGN(8); . = ALIGN(8);
_end = .; _end = .;
PROVIDE(end = .); PROVIDE(end = .);

View File

@ -168,6 +168,7 @@ SECTIONS
.bss2 (NOLOAD) : .bss2 (NOLOAD) :
{ {
*(.bss.fb) *(.bss.fb)
*(.bss2)
. = ALIGN(8); . = ALIGN(8);
_end = .; _end = .;
PROVIDE(end = .); PROVIDE(end = .);