Changeset - e93bd62dcae4
[Not reviewed]
cortex-f0
0 1 0
Ethan Zonca - 10 years ago 2015-01-04 21:01:18
ez@ethanzonca.com
Fix RAM size
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
stm32-flash.ld
Show inline comments
 
@@ -34,25 +34,25 @@ ENTRY(Reset_Handler)
 
 
/* Highest address of the user mode stack */
 
_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 = 32K
 
  RAM (xrw)       : ORIGIN = 0x20000000, LENGTH = 4K
 
  RAM (xrw)       : ORIGIN = 0x20000000, LENGTH = 6K
 
  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)