Skip to content

Commit 4858f31

Browse files
committed
[MAXWSNENV] Updated BLE library and stack/heap size.
1 parent 98dd419 commit 4858f31

File tree

5 files changed

+4
-4
lines changed

5 files changed

+4
-4
lines changed
Binary file not shown.
Binary file not shown.
Binary file not shown.

targets/TARGET_Maxim/TARGET_MAX32610/device/TOOLCHAIN_GCC_ARM/startup_max32610.S

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
#ifdef __STACK_SIZE
5252
.equ Stack_Size, __STACK_SIZE
5353
#else
54-
.equ Stack_Size, 0x00001000
54+
.equ Stack_Size, 0x00000800
5555
#endif
5656
.globl __StackTop
5757
.globl __StackLimit
@@ -66,7 +66,7 @@ __StackTop:
6666
#ifdef __HEAP_SIZE
6767
.equ Heap_Size, __HEAP_SIZE
6868
#else
69-
.equ Heap_Size, 0x00004000
69+
.equ Heap_Size, 0x00003000
7070
#endif
7171
.globl __HeapBase
7272
.globl __HeapLimit

targets/TARGET_Maxim/TARGET_MAX32610/device/TOOLCHAIN_IAR/MAX32610.icf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ define region ROM_region = mem:[from __region_ROM_start__ to __region_ROM
1515
define region RAM_region = mem:[from __region_RAM_start__ to __region_RAM_end__];
1616

1717
/* Stack and Heap */
18-
define symbol __size_cstack__ = 0x1000;
19-
define symbol __size_heap__ = 0x4000;
18+
define symbol __size_cstack__ = 0x0800;
19+
define symbol __size_heap__ = 0x3000;
2020
define block CSTACK with alignment = 8, size = __size_cstack__ { };
2121
define block HEAP with alignment = 8, size = __size_heap__ { };
2222

0 commit comments

Comments
 (0)