mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-01-08 12:50:52 +00:00
22 lines
387 B
Plaintext
Executable File
22 lines
387 B
Plaintext
Executable File
/* Linker script to configure memory regions. */
|
|
|
|
SEARCH_DIR(.)
|
|
GROUP(-lgcc -lc -lnosys)
|
|
|
|
MEMORY
|
|
{
|
|
FLASH (rx) : ORIGIN = 0x0, LENGTH = 0x40000
|
|
RAM (rwx) : ORIGIN = 0x20000000, LENGTH = 0x8000
|
|
}
|
|
|
|
SECTIONS
|
|
{
|
|
.fs_data_out ALIGN(4):
|
|
{
|
|
PROVIDE( __start_fs_data = .);
|
|
KEEP(*(fs_data))
|
|
PROVIDE( __stop_fs_data = .);
|
|
} = 0
|
|
}
|
|
|
|
INCLUDE "nrf5x_common.ld" |