Change NUCLEO_F303RE IAR Linker script heap size

* Change the heap size value to be the stated 1/4 of the RAM.
pull/7798/head
Simo Sillankorva 2018-08-16 01:58:43 -07:00
parent 83608d59ac
commit c6acfd389b
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ define region CCMRAM_region = mem:[from __region_CCMRAM_start__ to __region_CCMR
/* Stack and Heap */
/*Heap 1/4 of ram and stack 1/8*/
define symbol __size_cstack__ = 0x2000;
define symbol __size_heap__ = 0x4000;
define symbol __size_heap__ = 0x5000;
define block CSTACK with alignment = 8, size = __size_cstack__ { };
define block HEAP with alignment = 8, size = __size_heap__ { };
define block STACKHEAP with fixed order { block HEAP, block CSTACK };