fcc1568546
* Remove FLASH_ISR and merge .isr_vector into FLASH_TEXT. This saves some code space, especially on nRF52 devices. * Reserve space for nonvolatile storage of data. This is the place for a filesystem (to be added).
29 lines
836 B
Plaintext
29 lines
836 B
Plaintext
/*
|
|
GNU linker script for NRF51 AC w/ no SoftDevice
|
|
*/
|
|
/* Specify the memory areas */
|
|
SEARCH_DIR(.)
|
|
GROUP(-lgcc -lc -lnosys)
|
|
MEMORY
|
|
{
|
|
FLASH (rx) : ORIGIN = 0x00000000, LENGTH = 256K /* entire flash */
|
|
FLASH_TEXT (rx) : ORIGIN = 0x00000000, LENGTH = 192K /* app */
|
|
FLASH_USER (rx) : ORIGIN = 0x00030000, LENGTH = 64K /* app data, filesystem */
|
|
RAM (xrw) : ORIGIN = 0x20000000, LENGTH = 32K /* use all RAM */
|
|
}
|
|
|
|
/* produce a link error if there is not this amount of RAM for these sections */
|
|
_minimum_stack_size = 4K;
|
|
_minimum_heap_size = 24K;
|
|
|
|
/* top end of the stack */
|
|
|
|
/*_stack_end = ORIGIN(RAM) + LENGTH(RAM);*/
|
|
_estack = ORIGIN(RAM) + LENGTH(RAM);
|
|
|
|
/* RAM extents for the garbage collector */
|
|
_ram_end = ORIGIN(RAM) + LENGTH(RAM);
|
|
_heap_end = 0x20006000; /* tunable */
|
|
|
|
INCLUDE "boards/common.ld"
|