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
 
@@ -30,23 +30,23 @@
 
*/
 
 
/* 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
 
{
0 comments (0 inline, 0 general)