Skip to content

Commit 4797b53

Browse files
authored
Merge pull request #6488 from SiliconLabs/bugfix/armcc_sp
Fix initial SP for new Silicon Labs targets on ARMCC
2 parents 603a23f + e487043 commit 4797b53

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

targets/TARGET_Silicon_Labs/TARGET_EFM32/TARGET_EFM32PG12/device/TOOLCHAIN_ARM_STD/startup_efm32pg12b.S

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Stack_Size EQU 0x00001000
3636

3737
AREA STACK, NOINIT, READWRITE, ALIGN=3
3838
Stack_Mem SPACE Stack_Size
39-
__initial_sp
39+
__initial_sp EQU 0x20040000
4040

4141

4242
; <h> Heap Configuration

targets/TARGET_Silicon_Labs/TARGET_EFM32/TARGET_EFR32MG1/device/TOOLCHAIN_ARM_STD/startup_efr32mg1p.S

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Stack_Size EQU 0x00000400
3333

3434
AREA STACK, NOINIT, READWRITE, ALIGN=3
3535
Stack_Mem SPACE Stack_Size
36-
__initial_sp
36+
__initial_sp EQU 0x20008000
3737

3838

3939
; <h> Heap Configuration

targets/TARGET_Silicon_Labs/TARGET_EFM32/TARGET_EFR32MG12/device/TOOLCHAIN_ARM_STD/startup_efr32mg12p.S

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Stack_Size EQU 0x00004000
3333

3434
AREA STACK, NOINIT, READWRITE, ALIGN=3
3535
Stack_Mem SPACE Stack_Size
36-
__initial_sp
36+
__initial_sp EQU 0x20040000
3737

3838

3939
; <h> Heap Configuration

0 commit comments

Comments
 (0)