Merge pull request #8252 from juhoeskeli/stm32f207_IAR

Adjust heap size on stm32f207
pull/8316/head
Anna Bridge 2018-10-08 12:36:53 +01:00 committed by GitHub
commit c8734cf62a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ define region RAM_region = mem:[from __region_RAM_start__ to __region_RAM_end__]
/* Stack: 1024B */
/* Heap: 64kB */
define symbol __size_cstack__ = 0x400;
define symbol __size_heap__ = 0x10000;
define symbol __size_heap__ = 0xF000;
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 };