Reserving 32Kib of FLASH for parameters (#5035)

This commit is contained in:
David Sidrane
2016-07-12 03:57:31 -10:00
committed by GitHub
parent 817f695297
commit 5cc58fa067
+3 -2
View File
@@ -44,12 +44,13 @@
* where the code expects to begin execution by jumping to the entry point in * where the code expects to begin execution by jumping to the entry point in
* the 0x0800:0000 address range. * the 0x0800:0000 address range.
* *
* The first 0x4000 of flash is reserved for the bootloader. * The first 16 KiB of flash is reserved for the bootloader.
* Paramater storage will use the next 2 16KiB Sectors.
*/ */
MEMORY MEMORY
{ {
flash (rx) : ORIGIN = 0x08004000, LENGTH = 1008K flash (rx) : ORIGIN = 0x0800C000, LENGTH = 976K
sram (rwx) : ORIGIN = 0x20000000, LENGTH = 128K sram (rwx) : ORIGIN = 0x20000000, LENGTH = 128K
ccsram (rwx) : ORIGIN = 0x10000000, LENGTH = 64K ccsram (rwx) : ORIGIN = 0x10000000, LENGTH = 64K
} }