mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2024-12-02 10:24:11 +01:00
54 lines
1.0 KiB
Plaintext
54 lines
1.0 KiB
Plaintext
|
MEMORY
|
||
|
{
|
||
|
FLASH (rx) : ORIGIN = 0x08004000, LENGTH = 112K
|
||
|
SRAM (rwx) : ORIGIN = 0x20000000, LENGTH = 0x00005000
|
||
|
}
|
||
|
|
||
|
_estack = 0x20004FF0;
|
||
|
|
||
|
/* Section Definitions */
|
||
|
SECTIONS
|
||
|
{
|
||
|
.text :
|
||
|
{
|
||
|
KEEP(*(.isr_vector .isr_vector.*))
|
||
|
*(.text .text.* .gnu.linkonce.t.*)
|
||
|
*(.glue_7t) *(.glue_7)
|
||
|
*(.rodata .rodata* .gnu.linkonce.r.*)
|
||
|
} > FLASH
|
||
|
|
||
|
.ARM.extab :
|
||
|
{
|
||
|
*(.ARM.extab* .gnu.linkonce.armextab.*)
|
||
|
} > FLASH
|
||
|
|
||
|
.ARM.exidx :
|
||
|
{
|
||
|
*(.ARM.exidx* .gnu.linkonce.armexidx.*)
|
||
|
} > FLASH
|
||
|
|
||
|
. = ALIGN(4);
|
||
|
_etext = .;
|
||
|
_sidata = .;
|
||
|
|
||
|
.data : AT (_etext)
|
||
|
{
|
||
|
_sdata = .;
|
||
|
*(.data .data.*)
|
||
|
. = ALIGN(4);
|
||
|
_edata = . ;
|
||
|
} > SRAM
|
||
|
|
||
|
/* .bss section which is used for uninitialized data */
|
||
|
.bss (NOLOAD) :
|
||
|
{
|
||
|
_sbss = . ;
|
||
|
*(.bss .bss.*)
|
||
|
*(COMMON)
|
||
|
. = ALIGN(4);
|
||
|
_ebss = . ;
|
||
|
} > SRAM
|
||
|
|
||
|
. = ALIGN(4);
|
||
|
_end = . ;
|
||
|
}
|