Rev 65 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 65 | Rev 76 | ||
---|---|---|---|
Line 32... | Line 32... | ||
32 | ENTRY(Reset_Handler) |
32 | ENTRY(Reset_Handler) |
33 | 33 | ||
34 | /* Highest address of the user mode stack */ |
34 | /* Highest address of the user mode stack */ |
35 | _estack = 0x20014000; /* end of RAM */ |
35 | _estack = 0x20014000; /* end of RAM */ |
36 | /* Generate a link error if heap and stack don't fit into RAM */ |
36 | /* Generate a link error if heap and stack don't fit into RAM */ |
37 | _Min_Heap_Size = 0x200; /* required amount of heap */ |
37 | _Min_Heap_Size = 0x800; /* required amount of heap */ |
38 | _Min_Stack_Size = 0x400; /* required amount of stack */ |
38 | _Min_Stack_Size = 0x800; /* required amount of stack */ |
39 | 39 | ||
40 | /* Specify the memory areas */ |
40 | /* Specify the memory areas */ |
41 | MEMORY |
41 | MEMORY |
42 | { |
42 | { |
43 | FLASH (rx) : ORIGIN = 0x8000000, LENGTH = 512K |
43 | FLASH (rx) : ORIGIN = 0x8000000, LENGTH = 512K |