mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2024-12-01 09:24:10 +01:00
1807c5c27e
modified: flight/pios/stm32f4xx/library.mk new file: flight/pios/stm32f4xx/link_STM32F4xx_RQ_bl_memory.ld new file: flight/pios/stm32f4xx/link_STM32F4xx_RQ_fw_memory.ld new file: flight/pios/stm32f4xx/link_STM32F4xx_RQ_sections.ld new file: flight/pios/stm32f4xx/link_STM32F4xx_RQ_sections_compat.ld modified: flight/pios/stm32f4xx/pios_bl_helper.c modified: flight/pios/stm32f4xx/pios_flash_internal.c modified: flight/pios/stm32f4xx/pios_sys.c
10 lines
440 B
Plaintext
10 lines
440 B
Plaintext
MEMORY
|
|
{
|
|
FLASH (rx) : ORIGIN = 0x08000000, LENGTH = 0x008000 - 0x000080
|
|
BD_INFO (r) : ORIGIN = 0x08008000 - 0x80, LENGTH = 0x000080
|
|
RSVD (rx) : ORIGIN = 0x08008000, LENGTH = 0x020000 - 0x008000
|
|
FW (rx) : ORIGIN = 0x08020000, LENGTH = 0x1e0000
|
|
CCSRAM (rw) : ORIGIN = 0x10000000, LENGTH = 0x010000
|
|
SRAM (rwx) : ORIGIN = 0x20000000, LENGTH = 0x030000
|
|
}
|