Merge pull request #4309 from c1728p9/limit_nucleo_isr_stack

Limit ISR stack to 4k on NUCLEO_F429ZI
pull/4183/head
Jimmy Brisson 2017-05-12 12:17:50 -05:00 committed by GitHub
commit d7594f63af
1 changed files with 2 additions and 2 deletions

View File

@ -15,8 +15,8 @@ define symbol __ICFEDIT_region_RAM_end__ = 0x2002FFFF;
define symbol __ICFEDIT_region_CCMRAM_start__ = 0x10000000;
define symbol __ICFEDIT_region_CCMRAM_end__ = 0x1000FFFF;
/*-Sizes-*/
/*Heap 64K and stack 24K */
define symbol __ICFEDIT_size_cstack__ = 0x6000;
/*Heap 64K and stack 4K */
define symbol __ICFEDIT_size_cstack__ = 0x1000;
define symbol __ICFEDIT_size_heap__ = 0x10000;
/**** End of ICF editor section. ###ICF###*/