mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2024-11-29 07:24:13 +01:00
7e73c59e90
- Allocate 10KBytes for bootloader; - Replace pios_com_msg with pios_com for ssp support - Change Speed to 9600 for higher reliability
9 lines
428 B
Plaintext
9 lines
428 B
Plaintext
MEMORY
|
|
{
|
|
BL_FLASH (rx) : ORIGIN = 0x08000000, LENGTH = 10K - 0x80
|
|
BD_INFO (r) : ORIGIN = 0x08000000 + 10K - 0x80, LENGTH = 0x80
|
|
FLASH (rx) : ORIGIN = 0x08000000 + 10K, LENGTH = 32K - 10K
|
|
VTRAM (xrw) : ORIGIN = 0x20000000, LENGTH = 0xc0 /* First part of RAM is reserved to the vector table */
|
|
SRAM (rwx) : ORIGIN = 0x20000000 + 0xc0, LENGTH = 4K - 0xc0
|
|
}
|