1
0
Fork 0
mirror of https://github.com/iNavFlight/inav.git synced 2025-07-24 00:35:34 +03:00

[LD] Add missing SYSTEM_MEMORY section to flash_f7_split

This commit is contained in:
Alberto García Hierro 2020-03-24 20:10:02 +00:00 committed by Michel Pastor
parent 7a32cd8417
commit 25f483db64

View file

@ -67,6 +67,15 @@ SECTIONS
__exidx_end = .;
} >FLASH
/* System memory (read-only bootloader) interrupt vector */
.system_isr_vector (NOLOAD) :
{
. = ALIGN(4);
PROVIDE (system_isr_vector_table_base = .);
KEEP(*(.system_isr_vector)) /* Bootloader code */
. = ALIGN(4);
} >SYSTEM_MEMORY
.busdev_registry :
{
PROVIDE_HIDDEN (__busdev_registry_start = .);