mirror of
https://github.com/openmv/openmv.git
synced 2025-09-26 23:09:13 +08:00
boot/stm32: Add ram function section.
This commit is contained in:
parent
a152b170ea
commit
a436ab0f4f
@ -90,5 +90,15 @@ SECTIONS
|
||||
_estack = .;
|
||||
} >RAM
|
||||
|
||||
.ram_function : ALIGN(4)
|
||||
{
|
||||
_ram_function_start = .;
|
||||
*(.ram_function*)
|
||||
. = ALIGN(4);
|
||||
_ram_function_end = .;
|
||||
} > RAM AT> ROM
|
||||
|
||||
_ram_function_flash = LOADADDR(.ram_function);
|
||||
|
||||
.ARM.attributes 0 : { *(.ARM.attributes) }
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user