NANO130: Decrease heap to 2.75KiB to spare SRAM for static allocation

This adjustment is to pass compile on IAR on which heap configuration is hard-coded and cannot be adjusted according to staic SRAM usage.
pull/12047/head
Chun-Chieh Li 2019-12-09 17:41:51 +08:00
parent 6df5eea841
commit 3e4e0629dc
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ define symbol __ICFEDIT_region_IRAM_start__ = 0x20000000;
define symbol __ICFEDIT_region_IRAM_end__ = 0x20004000 - 1; define symbol __ICFEDIT_region_IRAM_end__ = 0x20004000 - 1;
/*-Sizes-*/ /*-Sizes-*/
define symbol __ICFEDIT_size_cstack__ = MBED_BOOT_STACK_SIZE; define symbol __ICFEDIT_size_cstack__ = MBED_BOOT_STACK_SIZE;
define symbol __ICFEDIT_size_heap__ = 0xC00; define symbol __ICFEDIT_size_heap__ = 0xB00;
/**** End of ICF editor section. ###ICF###*/ /**** End of ICF editor section. ###ICF###*/