mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2024-12-03 11:24:10 +01:00
9 lines
424 B
Plaintext
9 lines
424 B
Plaintext
MEMORY
|
|
{
|
|
BL_FLASH (rx) : ORIGIN = 0x08000000, LENGTH = 8K - 0x80
|
|
BD_INFO (r) : ORIGIN = 0x08000000 + 8K - 0x80, LENGTH = 0x80
|
|
FLASH (rx) : ORIGIN = 0x08000000 + 8K, LENGTH = 32K - 8K
|
|
VTRAM (xrw) : ORIGIN = 0x20000000, LENGTH = 0xc0 /* First part of RAM is reserved to the vector table */
|
|
SRAM (rwx) : ORIGIN = 0x20000000 + 0xc0, LENGTH = 4K - 0xc0
|
|
}
|