Subversion Repositories LedShow

Rev

Rev 2 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2 Rev 9
Line 14... Line 14...
14
**
14
**
15
**                Set memory bank area and size if external memory is used.
15
**                Set memory bank area and size if external memory is used.
16
**
16
**
17
**  Target      : STMicroelectronics STM32
17
**  Target      : STMicroelectronics STM32
18
**
18
**
19
**  Distribution: The file is distributed “as is,” without any warranty
19
**  Distribution: The file is distributed “as is,� without any warranty
20
**                of any kind.
20
**                of any kind.
21
**
21
**
22
*****************************************************************************
22
*****************************************************************************
23
** @attention
23
** @attention
24
**
24
**
Line 53... Line 53...
53
ENTRY(Reset_Handler)
53
ENTRY(Reset_Handler)
54
 
54
 
55
/* Highest address of the user mode stack */
55
/* Highest address of the user mode stack */
56
_estack = 0x20005000;    /* end of RAM */
56
_estack = 0x20005000;    /* end of RAM */
57
/* Generate a link error if heap and stack don't fit into RAM */
57
/* Generate a link error if heap and stack don't fit into RAM */
58
_Min_Heap_Size = 0x200;      /* required amount of heap  */
58
_Min_Heap_Size = 0x400;      /* required amount of heap  */
59
_Min_Stack_Size = 0x400; /* required amount of stack */
59
_Min_Stack_Size = 0x800; /* required amount of stack */
60
 
60
 
61
/* Specify the memory areas */
61
/* Specify the memory areas */
62
MEMORY
62
MEMORY
63
{
63
{
64
RAM (xrw)      : ORIGIN = 0x20000000, LENGTH = 20K
64
RAM (xrw)      : ORIGIN = 0x20000000, LENGTH = 20K