Skip to content

Commit

Permalink
modifying to work for the STM32F3-Discover board
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt committed Jan 19, 2013
1 parent 9fbc87c commit 3e119f0
Show file tree
Hide file tree
Showing 128 changed files with 36,330 additions and 24,698 deletions.
7 changes: 4 additions & 3 deletions Device/ldscripts/stm32f0.ld → Device/ldscripts/stm32f3.ld
@@ -1,14 +1,15 @@
/*
Default linker script for STM32F051R8T6 64k 8k
Copyright RAISONANCE S.A.S. 2007
Best guess at a linker script for STM32F303VCT6 256k 48k
(but 8K is special "core coupled memory"...)
modified from original file by RAISONANCE S.A.S. 2007

!!! This file is automatically generated by RIDE !!!
Do not modify it, as it will be erased at every link.
You can use, copy and distribute this file freely, but without any waranty.
*/

/* include the memory spaces definitions sub-script */
INCLUDE "stm32f0discovery_def.ld"
INCLUDE "stm32f3discovery_def.ld"

/* include the sections management sub-script for FLASH mode */
INCLUDE "sections_flash.ld"
Expand Down
@@ -1,5 +1,6 @@
/*
Linker subscript for STM32F051 definitions with 64K Flash and 8K RAM
Linker subscript for STM32F303VCT6 definitions with 256K Flash and 48K RAM
(but 8K is special core-coupled ram, so we'll only use 40K...maybe 32K to be safe)
Copyright RAISONANCE 2007
!!! This file is automatically generated by RIDE !!!
Do not modify it, as it will be erased at every link.
Expand All @@ -12,9 +13,10 @@ ENTRY(Reset_Handler)

MEMORY
{
FLASH (rx) : ORIGIN = 0x08000000, LENGTH = 64K
RAM (xrw) : ORIGIN = 0x20000000, LENGTH = 8K
FLASH (rx) : ORIGIN = 0x08000000, LENGTH = 256K
RAM (xrw) : ORIGIN = 0x20000000, LENGTH = 32K
}

/* highest address of the user mode stack */
_estack = 0x20002000;
/* this is essentially 0x20000000 + 32K */
_estack = 0x20008000;
305 changes: 0 additions & 305 deletions Device/startup_stm32f0xx.s

This file was deleted.

0 comments on commit 3e119f0

Please sign in to comment.