Skip to content

Commit 2d65b89

Browse files
committed
[mbed][MTS_DRAGONFLY_F411RE] update stack and heap size for Dragonfly in IAR
1 parent b7e8c02 commit 2d65b89

File tree

1 file changed

+4
-4
lines changed
  • libraries/mbed/targets/cmsis/TARGET_STM/TARGET_STM32F4/TARGET_MTS_DRAGONFLY_F411RE/TOOLCHAIN_IAR

1 file changed

+4
-4
lines changed

libraries/mbed/targets/cmsis/TARGET_STM/TARGET_STM32F4/TARGET_MTS_DRAGONFLY_F411RE/TOOLCHAIN_IAR/stm32f411xe.icf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ define region ROM_region = mem:[from __region_ROM_start__ to __region_ROM_end__]
1515
define region RAM_region = mem:[from __region_RAM_start__ to __region_RAM_end__];
1616

1717
/* Stack and Heap */
18-
/* Stack: 32kB - 408B for vector table */
19-
/* Heap: 80kB */
20-
define symbol __size_cstack__ = 0x7e68;
21-
define symbol __size_heap__ = 0x14000;
18+
/* Stack: 4kB - 408B for vector table */
19+
/* Heap: 96kB */
20+
define symbol __size_cstack__ = 0xe68;
21+
define symbol __size_heap__ = 0x18000;
2222
define block CSTACK with alignment = 8, size = __size_cstack__ { };
2323
define block HEAP with alignment = 8, size = __size_heap__ { };
2424
define block STACKHEAP with fixed order { block HEAP, block CSTACK };

0 commit comments

Comments
 (0)