stm32f429: allow using all of ram

This commit is contained in:
Markus Barenhoff
2018-03-30 14:01:18 +02:00
committed by Karl Palsson
parent fe6a2b5f13
commit ce364386d6

View File

@@ -25,7 +25,8 @@
MEMORY MEMORY
{ {
rom (rx) : ORIGIN = 0x08000000, LENGTH = 2048K rom (rx) : ORIGIN = 0x08000000, LENGTH = 2048K
ram (rwx) : ORIGIN = 0x20000000, LENGTH = 128K /* (esden) This should be 256 but I get segfault. :( */ ccm (rwx) : ORIGIN = 0x10000000, LENGTH = 64K
ram (rwx) : ORIGIN = 0x20000000, LENGTH = 192K
} }
/* Include the common ld script. */ /* Include the common ld script. */