From 4832449dd2c7f9de3807d8d473c69c557711a6e8 Mon Sep 17 00:00:00 2001 From: Federico Ruiz Ugalde Date: Wed, 26 Jun 2013 05:45:41 -0600 Subject: [PATCH] stm32f3discovery ld script corrected as recommended in #82. --- examples/stm32/f3/stm32f3-discovery/stm32f3-discovery.ld | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/stm32/f3/stm32f3-discovery/stm32f3-discovery.ld b/examples/stm32/f3/stm32f3-discovery/stm32f3-discovery.ld index 1fdcc18..5e83aaa 100644 --- a/examples/stm32/f3/stm32f3-discovery/stm32f3-discovery.ld +++ b/examples/stm32/f3/stm32f3-discovery/stm32f3-discovery.ld @@ -18,13 +18,13 @@ * along with this library. If not, see . */ -/* Linker script for ST STM32F4DISCOVERY (STM32F407VG, 1024K flash, 128K RAM). */ +/* Linker script for ST STM32F3DISCOVERY (STM32F303VC, 256K flash, 48K RAM (Of which 8kB are CCM RAM and 40KB are SRAM). */ /* Define memory regions. */ MEMORY { rom (rx) : ORIGIN = 0x08000000, LENGTH = 256K - ram (rwx) : ORIGIN = 0x20000000, LENGTH = 20K + ram (rwx) : ORIGIN = 0x20000000, LENGTH = 40K } /* Include the common ld script. */