Reduce heap size on stm32f207

pull/8252/head
Juho Eskeli 2018-09-26 10:07:45 +03:00
parent 65a0a1aecd
commit f8c8c3cf68
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 };