Merge pull request #4924 from hasnainvirk/iar_fix_c027

Adjust Stack size Allocation (IAR, LPC176x)
pull/4968/head
Jimmy Brisson 2017-09-05 11:20:44 -05:00 committed by GitHub
commit 2f2da779cb
1 changed files with 3 additions and 2 deletions

View File

@ -12,9 +12,10 @@ define symbol __ICFEDIT_region_RAM_start__ = 0x100000C8;
define symbol __ICFEDIT_region_RAM_end__ = 0x10007FDF;
/*-Sizes-*/
/*Heap 1/4 of ram and stack 1/8*/
/* Heap 7K, Vector table stack about 4K (this is actual stack size in mbed-os 2) */
define symbol __ICFEDIT_size_cstack__ = 0x1000;
define symbol __ICFEDIT_size_heap__ = 0x2000;
define symbol __ICFEDIT_size_heap__ = 0x1C00;
/**** End of ICF editor section. ###ICF###*/
define symbol __CRP_start__ = 0x000002FC;