mirror of https://github.com/ARMmbed/mbed-os.git
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.pull/4991/head
parent
c3eae587eb
commit
72f07ec4d9
|
|
@ -9,7 +9,7 @@ define symbol __ICFEDIT_region_ROM_end__ = 0x0801FFFF;
|
|||
define symbol __ICFEDIT_region_RAM_start__ = 0x200000C0;
|
||||
define symbol __ICFEDIT_region_RAM_end__ = 0x20003FFF;
|
||||
/*-Sizes-*/
|
||||
define symbol __ICFEDIT_size_cstack__ = 0x800;
|
||||
define symbol __ICFEDIT_size_cstack__ = 0x400;
|
||||
define symbol __ICFEDIT_size_heap__ = 0x1000;
|
||||
/**** End of ICF editor section. ###ICF###*/
|
||||
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ define symbol __ICFEDIT_region_ROM_end__ = 0x0801FFFF;
|
|||
define symbol __ICFEDIT_region_RAM_start__ = 0x200000C0;
|
||||
define symbol __ICFEDIT_region_RAM_end__ = 0x20003FFF;
|
||||
/*-Sizes-*/
|
||||
define symbol __ICFEDIT_size_cstack__ = 0x800;
|
||||
define symbol __ICFEDIT_size_cstack__ = 0x400;
|
||||
define symbol __ICFEDIT_size_heap__ = 0x1000;
|
||||
/**** End of ICF editor section. ###ICF###*/
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue