Skip to content

Commit d7594f6

Browse files
Merge pull request ARMmbed#4309 from c1728p9/limit_nucleo_isr_stack
Limit ISR stack to 4k on NUCLEO_F429ZI
2 parents 42f9a59 + 14cfe8b commit d7594f6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ 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 64K and stack 24K */
19-
define symbol __ICFEDIT_size_cstack__ = 0x6000;
18+
/*Heap 64K and stack 4K */
19+
define symbol __ICFEDIT_size_cstack__ = 0x1000;
2020
define symbol __ICFEDIT_size_heap__ = 0x10000;
2121
/**** End of ICF editor section. ###ICF###*/
2222

0 commit comments

Comments
 (0)