File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 9
9
FLASH (rx) : ORIGIN = 0x00000000, LENGTH = 0x040000 /* entire flash, 256 KiB */
10
10
FLASH_ISR (rx) : ORIGIN = 0x00018000, LENGTH = 0x000400 /* sector 0, 1 KiB */
11
11
FLASH_TEXT (rx) : ORIGIN = 0x00018400, LENGTH = 0x027c00 /* 159 KiB */
12
- RAM (xrw) : ORIGIN = 0x20001000 , LENGTH = 0x003000 /* 12 KiB */
12
+ RAM (xrw) : ORIGIN = 0x20002000 , LENGTH = 0x002000 /* 8 KiB */
13
13
}
14
14
15
15
/* produce a link error if there is not this amount of RAM for these sections */
16
16
_minimum_stack_size = 2K;
17
- _minimum_heap_size = 8K ;
18
-
17
+ _minimum_heap_size = 1K ;
18
+
19
19
/* top end of the stack */
20
20
21
21
/*_stack_end = ORIGIN (RAM) + LENGTH (RAM);*/
22
22
_estack = ORIGIN (RAM) + LENGTH (RAM);
23
23
24
24
/* RAM extents for the garbage collector */
25
25
_ram_end = ORIGIN (RAM) + LENGTH (RAM);
26
- _heap_end = 0x20003000 ; /* tunable */
26
+ _heap_end = 0x20003c00 ; /* tunable */
27
27
28
28
INCLUDE "boards/common.ld"
You can’t perform that action at this time.
0 commit comments