mirror of https://github.com/ARMmbed/mbed-os.git
[MAXWSNENV] Updated BLE library and stack/heap size.
parent
98dd41988b
commit
4858f3112d
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -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
|
||||
|
|
|
@ -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__ { };
|
||||
|
||||
|
|
Loading…
Reference in New Issue