mirror of https://github.com/ARMmbed/mbed-os.git
STM32L496xG: increase IAR heap size
parent
3099acc864
commit
206589045c
|
@ -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 };
|
||||
|
|
Loading…
Reference in New Issue