Changeset - 9fdc9e276115
[Not reviewed]
default
0 1 0
Ethan Zonca - 10 years ago 2014-07-09 16:41:08
ezonca@sealandaire.com
Fixed linkerfile
1 file changed with 3 insertions and 3 deletions:
0 comments (0 inline, 0 general)
stm32-flash.ld
Show inline comments
 
@@ -24,35 +24,35 @@
 
**  permitted. Atollic AB permit registered Atollic TrueSTUDIO(R) users the
 
**  rights to distribute the assembled, compiled & linked contents of this
 
**  file as part of an application binary file, provided that it is built
 
**  using the Atollic TrueSTUDIO(R) toolchain.
 
**
 
*****************************************************************************
 
*/
 
 
/* Entry Point */
 
ENTRY(Reset_Handler)
 
 
/* Highest address of the user mode stack */
 
_estack = 0x20004000;    /* end of 16K RAM */
 
_estack = 0x20001000;    /* end of 4K RAM */
 
 
/* Generate a link error if heap and stack don't fit into RAM */
 
_Min_Heap_Size = 0x200;      /* required amount of heap  */
 
_Min_Stack_Size = 0x400; /* required amount of stack */
 
 
/* Specify the memory areas */
 
MEMORY
 
{
 
  FLASH (rx)      : ORIGIN = 0x08000000, LENGTH = 256K
 
  RAM (xrw)       : ORIGIN = 0x20000000, LENGTH = 16K
 
  FLASH (rx)      : ORIGIN = 0x08000000, LENGTH = 32K
 
  RAM (xrw)       : ORIGIN = 0x20000000, LENGTH = 4K
 
  MEMORY_B1 (rx)  : ORIGIN = 0x60000000, LENGTH = 0K
 
}
 
 
/* Define output sections */
 
SECTIONS
 
{
 
  /* The startup code goes first into FLASH */
 
  .isr_vector :
 
  {
 
    . = ALIGN(4);
 
    KEEP(*(.isr_vector)) /* Startup code */
 
    . = ALIGN(4);
0 comments (0 inline, 0 general)