Merge pull request #8225 from juhoeskeli/IAR_STM32F412xG

Adjust stack & heap for IAR on STM32F412xG
pull/8192/merge
Martin Kojtal 2018-10-09 10:34:25 -05:00 committed by GitHub
commit 7c1cdc85ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 2 deletions

View File

@ -18,8 +18,9 @@ define region ROM_region = mem:[from __region_ROM_start__ to __region_ROM_end__]
define region RAM_region = mem:[from __region_RAM_start__ to __region_RAM_end__];
/* Stack and Heap */
define symbol __size_cstack__ = 0x8000;
define symbol __size_heap__ = 0x10000;
/*Heap 84kB and stack 1kB */
define symbol __size_cstack__ = 0x400;
define symbol __size_heap__ = 0x15000;
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 };