2018-12-04 07:48:18 -05:00
|
|
|
/* Memory layout for bootloader and internal filesystem configuration (this here describes the app part):
|
|
|
|
|
|
|
|
FLASH_TEXT .isr_vector
|
|
|
|
FLASH_TEXT .text
|
|
|
|
FLASH_TEXT .data
|
|
|
|
|
|
|
|
RAM .data
|
|
|
|
RAM .bss
|
|
|
|
RAM .heap
|
|
|
|
RAM .stack
|
|
|
|
*/
|
|
|
|
|
|
|
|
ENTRY(Reset_Handler)
|
|
|
|
|
2022-08-14 18:35:23 -04:00
|
|
|
REGION_ALIAS("FLASH_COMMON", FLASH_TEXT);
|
|
|
|
|
2018-12-04 07:48:18 -05:00
|
|
|
/* define output sections */
|
|
|
|
SECTIONS
|
|
|
|
{
|
2022-08-14 18:35:23 -04:00
|
|
|
INCLUDE common_isr.ld
|
|
|
|
INCLUDE common_text.ld
|
|
|
|
INCLUDE common_extratext_data_in_flash.ld
|
2020-10-29 08:07:51 -04:00
|
|
|
INCLUDE common_bss_heap_stack.ld
|
2018-12-04 07:48:18 -05:00
|
|
|
}
|