Skip to content

Commit 8731015

Browse files
nvlsianpuadbridge
authored andcommitted
fix mbed-os-rtos-rtx-target_cortex_m-tests-memory-heap_and_stack@IAR by increasing heap size for IAR. Corected initial MSP for ARMCC.
1 parent 8898650 commit 8731015

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

targets/TARGET_NORDIC/TARGET_NRF5_SDK13/TARGET_MCU_NRF52840/device/TOOLCHAIN_ARM_STD/startup_nrf52832.s

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
; POSSIBILITY OF SUCH DAMAGE.
2626
; ---------------------------------------------------------------------------*/
2727

28-
__initial_sp EQU 0x20010000
28+
__initial_sp EQU 0x20040000
2929

3030
PRESERVE8
3131
THUMB

targets/TARGET_NORDIC/TARGET_NRF5_SDK13/TARGET_MCU_NRF52840/device/TOOLCHAIN_IAR/nRF52832.icf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export symbol __ICFEDIT_region_RAM_end__;
1313
/*-Sizes-*/
1414
/*Heap 1/4 of ram and stack 1/8*/
1515
define symbol __ICFEDIT_size_cstack__ = 0x800;
16-
define symbol __ICFEDIT_size_heap__ = 0x1800;
16+
define symbol __ICFEDIT_size_heap__ = 0x3000;
1717
/**** End of ICF editor section. ###ICF###*/
1818

1919
define symbol __code_start_soft_device__ = 0x0;

0 commit comments

Comments
 (0)