Skip to content

Commit c8734cf

Browse files
authored
Merge pull request #8252 from juhoeskeli/stm32f207_IAR
Adjust heap size on stm32f207
2 parents 365d61e + f8c8c3c commit c8734cf

File tree

1 file changed

+1
-1
lines changed
  • targets/TARGET_STM/TARGET_STM32F2/TARGET_NUCLEO_F207ZG/device/TOOLCHAIN_IAR

1 file changed

+1
-1
lines changed

targets/TARGET_STM/TARGET_STM32F2/TARGET_NUCLEO_F207ZG/device/TOOLCHAIN_IAR/stm32f207xx.icf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ define region RAM_region = mem:[from __region_RAM_start__ to __region_RAM_end__]
2121
/* Stack: 1024B */
2222
/* Heap: 64kB */
2323
define symbol __size_cstack__ = 0x400;
24-
define symbol __size_heap__ = 0x10000;
24+
define symbol __size_heap__ = 0xF000;
2525
define block CSTACK with alignment = 8, size = __size_cstack__ { };
2626
define block HEAP with alignment = 8, size = __size_heap__ { };
2727
define block STACKHEAP with fixed order { block HEAP, block CSTACK };

0 commit comments

Comments
 (0)