STM32L496xG: increase IAR heap size

pull/9411/head
jeromecoutant 2019-01-16 16:30:28 +01:00 committed by Cruz Monrreal II
parent 1a8844e8ed
commit 8e0663f8d8
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ if (!isdefinedsymbol(MBED_BOOT_STACK_SIZE)) {
}
define symbol __size_cstack__ = MBED_BOOT_STACK_SIZE;
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 };