[mbed][MTS_DRAGONFLY_F411RE] update stack and heap size for Dragonfly in IAR

pull/1001/head
Mike Fiore 2015-03-23 14:44:40 -05:00
parent b7e8c02ab4
commit 2d65b89b78
1 changed files with 4 additions and 4 deletions

View File

@ -15,10 +15,10 @@ 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__]; define region RAM_region = mem:[from __region_RAM_start__ to __region_RAM_end__];
/* Stack and Heap */ /* Stack and Heap */
/* Stack: 32kB - 408B for vector table */ /* Stack: 4kB - 408B for vector table */
/* Heap: 80kB */ /* Heap: 96kB */
define symbol __size_cstack__ = 0x7e68; define symbol __size_cstack__ = 0xe68;
define symbol __size_heap__ = 0x14000; define symbol __size_heap__ = 0x18000;
define block CSTACK with alignment = 8, size = __size_cstack__ { }; define block CSTACK with alignment = 8, size = __size_cstack__ { };
define block HEAP with alignment = 8, size = __size_heap__ { }; define block HEAP with alignment = 8, size = __size_heap__ { };
define block STACKHEAP with fixed order { block HEAP, block CSTACK }; define block STACKHEAP with fixed order { block HEAP, block CSTACK };