Skip to content

Commit 72f07ec

Browse files
committed
Make room on stm32f07 for tickless
Decrease the interrupt stack from 2k down to 1k so there is enough ram to build all the tests with tickless enabled. In general, targets should not need an interrupt stack greater than 1k with mbed-os.
1 parent c3eae58 commit 72f07ec

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

targets/TARGET_STM/TARGET_STM32F0/TARGET_NUCLEO_F070RB/device/TOOLCHAIN_IAR/stm32f070xb.icf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ define symbol __ICFEDIT_region_ROM_end__ = 0x0801FFFF;
99
define symbol __ICFEDIT_region_RAM_start__ = 0x200000C0;
1010
define symbol __ICFEDIT_region_RAM_end__ = 0x20003FFF;
1111
/*-Sizes-*/
12-
define symbol __ICFEDIT_size_cstack__ = 0x800;
12+
define symbol __ICFEDIT_size_cstack__ = 0x400;
1313
define symbol __ICFEDIT_size_heap__ = 0x1000;
1414
/**** End of ICF editor section. ###ICF###*/
1515

targets/TARGET_STM/TARGET_STM32F0/TARGET_NUCLEO_F072RB/device/TOOLCHAIN_IAR/stm32f072xb.icf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ define symbol __ICFEDIT_region_ROM_end__ = 0x0801FFFF;
99
define symbol __ICFEDIT_region_RAM_start__ = 0x200000C0;
1010
define symbol __ICFEDIT_region_RAM_end__ = 0x20003FFF;
1111
/*-Sizes-*/
12-
define symbol __ICFEDIT_size_cstack__ = 0x800;
12+
define symbol __ICFEDIT_size_cstack__ = 0x400;
1313
define symbol __ICFEDIT_size_heap__ = 0x1000;
1414
/**** End of ICF editor section. ###ICF###*/
1515

0 commit comments

Comments
 (0)