NUCLEO_L4R5ZI: set IAR linker stack size to 1KB

pull/8341/head
bcostm 2018-07-25 11:28:13 +02:00 committed by adbridge
parent f6d4acc33c
commit 7242150040
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ define region ROM_region = mem:[from __region_ROM_start__ to __region_ROM_end__]
define region SRAM1_region = mem:[from __region_SRAM1_start__ to __region_SRAM1_end__];
/* Stack and Heap */
define symbol __size_cstack__ = 0x8000; /* 32KB */
define symbol __size_cstack__ = 0x400; /* 1KB */
define symbol __size_heap__ = 0x20000; /* 128KB */
define block CSTACK with alignment = 8, size = __size_cstack__ { };
define block HEAP with alignment = 8, size = __size_heap__ { };