Add missing boot stack size memory from heap calculation

pull/10018/head
Deepika 2019-04-12 15:28:52 -05:00
parent feba293673
commit 4b7e163b57
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@
; Minimum heap should be larger then smallest RAM bank (else can use ; Minimum heap should be larger then smallest RAM bank (else can use
; that bank for heap) and less then largest RAM bank. ; that bank for heap) and less then largest RAM bank.
#define MINIMUM_HEAP 0x4000 #define MINIMUM_HEAP 0x4000
#define RAM_FIXED_SIZE 0x0 #define RAM_FIXED_SIZE MBED_BOOT_STACK_SIZE
;Splitting the RW and ZI section in IRAM1 (MBED_RAM_SIZE-MINIMUM_HEAP = 0x8000 available) ;Splitting the RW and ZI section in IRAM1 (MBED_RAM_SIZE-MINIMUM_HEAP = 0x8000 available)
;and IRAM2 (MBED_IRAM2_SIZE = 0x3E70 available) ;and IRAM2 (MBED_IRAM2_SIZE = 0x3E70 available)