STM32F4: added linker script section for a .bss area in the 128kB SRAM
This commit is contained in:
parent
b5ca097c52
commit
cff09ca3c3
|
|
@ -169,6 +169,7 @@ SECTIONS
|
|||
.bss2 (NOLOAD) :
|
||||
{
|
||||
*(.bss.fb)
|
||||
*(.bss2)
|
||||
. = ALIGN(8);
|
||||
_end = .;
|
||||
PROVIDE(end = .);
|
||||
|
|
|
|||
|
|
@ -168,6 +168,7 @@ SECTIONS
|
|||
.bss2 (NOLOAD) :
|
||||
{
|
||||
*(.bss.fb)
|
||||
*(.bss2)
|
||||
. = ALIGN(8);
|
||||
_end = .;
|
||||
PROVIDE(end = .);
|
||||
|
|
|
|||
Loading…
Reference in New Issue