From 85cf28451b9276eec5777b37bd92f0fcccd5a4e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lari=20Lehtom=C3=A4ki?= Date: Fri, 3 Jul 2015 16:45:30 +0300 Subject: [PATCH] cpu/stm32f3: Split the RAM on STM32F334 into RAM and CCM RAM --- cpu/stm32f3/ldscripts/stm32f334r8.ld | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cpu/stm32f3/ldscripts/stm32f334r8.ld b/cpu/stm32f3/ldscripts/stm32f334r8.ld index 4db2c518f2..dbf9a07e01 100644 --- a/cpu/stm32f3/ldscripts/stm32f334r8.ld +++ b/cpu/stm32f3/ldscripts/stm32f334r8.ld @@ -21,7 +21,8 @@ MEMORY { rom (rx) : ORIGIN = 0x08000000, LENGTH = 64K - ram (rwx) : ORIGIN = 0x20000000, LENGTH = 16K + ram (rwx) : ORIGIN = 0x20000000, LENGTH = 12K + ccmram (rwx): ORIGIN = 0x10000000, LENGTH = 4K } INCLUDE cortexm_base.ld