STM32L496xG: increase IAR heap size

pull/9508/head
jeromecoutant 2019-01-16 16:30:28 +01:00 committed by adbridge
parent 3099acc864
commit 206589045c
1 changed files with 2 additions and 1 deletions

View File

@ -20,7 +20,8 @@ define region SRAM1_region = mem:[from __region_SRAM1_start__ to __region_SRAM1_
/* Stack 1/8 and Heap 1/4 of RAM */
define symbol __size_cstack__ = 0x8000;
define symbol __size_heap__ = 0xa000;
define symbol __size_heap__ = 0x10000;
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 };