[MAXWSNENV] Updated BLE library and stack/heap size.

pull/2832/head
Jeremy Brodt 2016-10-10 08:50:07 -05:00
parent 98dd41988b
commit 4858f3112d
5 changed files with 4 additions and 4 deletions

View File

@ -51,7 +51,7 @@
#ifdef __STACK_SIZE
.equ Stack_Size, __STACK_SIZE
#else
.equ Stack_Size, 0x00001000
.equ Stack_Size, 0x00000800
#endif
.globl __StackTop
.globl __StackLimit
@ -66,7 +66,7 @@ __StackTop:
#ifdef __HEAP_SIZE
.equ Heap_Size, __HEAP_SIZE
#else
.equ Heap_Size, 0x00004000
.equ Heap_Size, 0x00003000
#endif
.globl __HeapBase
.globl __HeapLimit

View File

@ -15,8 +15,8 @@ define region ROM_region = mem:[from __region_ROM_start__ to __region_ROM
define region RAM_region = mem:[from __region_RAM_start__ to __region_RAM_end__];
/* Stack and Heap */
define symbol __size_cstack__ = 0x1000;
define symbol __size_heap__ = 0x4000;
define symbol __size_cstack__ = 0x0800;
define symbol __size_heap__ = 0x3000;
define block CSTACK with alignment = 8, size = __size_cstack__ { };
define block HEAP with alignment = 8, size = __size_heap__ { };