Skip to content

Commit b0a1fd9

Browse files
authored
Merge pull request #3871 from mazimkhan/master
Increase HEAP size for UBLOX_EVK_ODIN_W2 and NUCLEO_F429ZI
2 parents 2b60e03 + 1f0d731 commit b0a1fd9

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

targets/TARGET_STM/TARGET_STM32F4/TARGET_STM32F429xI/device/TOOLCHAIN_IAR/stm32f429xx_flash.icf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ define symbol __ICFEDIT_region_RAM_end__ = 0x2002FFFF;
1515
define symbol __ICFEDIT_region_CCMRAM_start__ = 0x10000000;
1616
define symbol __ICFEDIT_region_CCMRAM_end__ = 0x1000FFFF;
1717
/*-Sizes-*/
18-
/*Heap 1/4 of ram and stack 1/8*/
18+
/*Heap 1/2 of ram and stack 1/8*/
1919
define symbol __ICFEDIT_size_cstack__ = 0x6000;
20-
define symbol __ICFEDIT_size_heap__ = 0xC000;
20+
define symbol __ICFEDIT_size_heap__ = 0x18000;
2121
/**** End of ICF editor section. ###ICF###*/
2222

2323

@@ -36,4 +36,4 @@ place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec };
3636

3737
place in ROM_region { readonly };
3838
place in RAM_region { readwrite,
39-
block CSTACK, block HEAP };
39+
block CSTACK, block HEAP };

targets/TARGET_STM/TARGET_STM32F4/TARGET_UBLOX_EVK_ODIN_W2/device/TOOLCHAIN_IAR/stm32f439xx_flash.icf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ define symbol __ICFEDIT_region_RAM_end__ = 0x2002FFFF;
1515
define symbol __ICFEDIT_region_CCMRAM_start__ = 0x10000000;
1616
define symbol __ICFEDIT_region_CCMRAM_end__ = 0x1000FFFF;
1717
/*-Sizes-*/
18-
/*Heap 1/4 of ram and stack 1/8*/
18+
/*Heap 1/2 of ram and stack 1/8*/
1919
define symbol __ICFEDIT_size_cstack__ = 0x6000;
20-
define symbol __ICFEDIT_size_heap__ = 0xC000;
20+
define symbol __ICFEDIT_size_heap__ = 0x18000;
2121
/**** End of ICF editor section. ###ICF###*/
2222

2323

@@ -36,4 +36,4 @@ place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec };
3636

3737
place in ROM_region { readonly };
3838
place in RAM_region { readwrite,
39-
block CSTACK, block HEAP };
39+
block CSTACK, block HEAP };

0 commit comments

Comments
 (0)