mirror of
https://github.com/embassy-rs/embassy.git
synced 2024-11-22 14:53:03 +00:00
ed2a87a262
Embassy-boot is a simple bootloader that works together with an application to provide firmware update capabilities with a minimal risk. The bootloader consists of a platform-independent part, which implements the swap algorithm, and a platform-dependent part (currently only for nRF) that provides addition functionality such as watchdog timers softdevice support.
19 lines
734 B
Plaintext
19 lines
734 B
Plaintext
MEMORY
|
|
{
|
|
/* NOTE 1 K = 1 KiBi = 1024 bytes */
|
|
FLASH : ORIGIN = 0x00000000, LENGTH = 24K
|
|
BOOTLOADER_STATE : ORIGIN = 0x00006000, LENGTH = 4K
|
|
ACTIVE : ORIGIN = 0x00007000, LENGTH = 64K
|
|
DFU : ORIGIN = 0x00017000, LENGTH = 68K
|
|
RAM (rwx) : ORIGIN = 0x20000000, LENGTH = 32K
|
|
}
|
|
|
|
__bootloader_state_start = ORIGIN(BOOTLOADER_STATE);
|
|
__bootloader_state_end = ORIGIN(BOOTLOADER_STATE) + LENGTH(BOOTLOADER_STATE);
|
|
|
|
__bootloader_active_start = ORIGIN(ACTIVE);
|
|
__bootloader_active_end = ORIGIN(ACTIVE) + LENGTH(ACTIVE);
|
|
|
|
__bootloader_dfu_start = ORIGIN(DFU);
|
|
__bootloader_dfu_end = ORIGIN(DFU) + LENGTH(DFU);
|