From d854547b0c56ebfe81874f3850080a1cde2f3d94 Mon Sep 17 00:00:00 2001 From: Russ Butler Date: Tue, 18 Oct 2016 11:24:13 -0500 Subject: [PATCH] NUCLEO_F429 - Increase IAR heap size Increase the IAR heap size from 48KiB to 64KiB. This give enough heap space to run the TLS encryption examples. --- .../device/TOOLCHAIN_IAR/stm32f429xx_flash.icf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/targets/TARGET_STM/TARGET_STM32F4/TARGET_F429_F439/device/TOOLCHAIN_IAR/stm32f429xx_flash.icf b/targets/TARGET_STM/TARGET_STM32F4/TARGET_F429_F439/device/TOOLCHAIN_IAR/stm32f429xx_flash.icf index 6a59ff527c..156df266be 100644 --- a/targets/TARGET_STM/TARGET_STM32F4/TARGET_F429_F439/device/TOOLCHAIN_IAR/stm32f429xx_flash.icf +++ b/targets/TARGET_STM/TARGET_STM32F4/TARGET_F429_F439/device/TOOLCHAIN_IAR/stm32f429xx_flash.icf @@ -13,9 +13,9 @@ define symbol __ICFEDIT_region_RAM_end__ = 0x2002FFFF; define symbol __ICFEDIT_region_CCMRAM_start__ = 0x10000000; define symbol __ICFEDIT_region_CCMRAM_end__ = 0x1000FFFF; /*-Sizes-*/ -/*Heap 1/4 of ram and stack 1/8*/ +/*Heap 1/3 of ram and stack 1/8*/ define symbol __ICFEDIT_size_cstack__ = 0x6000; -define symbol __ICFEDIT_size_heap__ = 0xC000; +define symbol __ICFEDIT_size_heap__ = 0x10000; /**** End of ICF editor section. ###ICF###*/