File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F411xE/device/TOOLCHAIN_IAR Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -18,9 +18,9 @@ define region ROM_region = mem:[from __region_ROM_start__ to __region_ROM_end__]
18
18
define region RAM_region = mem:[from __region_RAM_start__ to __region_RAM_end__];
19
19
20
20
/* Stack and Heap */
21
- /*Heap 1/4 of ram and stack 1/8 */
22
- define symbol __size_cstack__ = 0x4000 ;
23
- define symbol __size_heap__ = 0x8000 ;
21
+ /*Heap 84kB and stack 1kB */
22
+ define symbol __size_cstack__ = 0x400 ;
23
+ define symbol __size_heap__ = 0x15000 ;
24
24
define block CSTACK with alignment = 8, size = __size_cstack__ { };
25
25
define block HEAP with alignment = 8, size = __size_heap__ { };
26
26
define block STACKHEAP with fixed order { block HEAP, block CSTACK };
You can’t perform that action at this time.
0 commit comments