Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of mbed-src by
Revision 119:063a65f72629, committed 2014-03-14
- Comitter:
- mbed_official
- Date:
- Fri Mar 14 15:15:06 2014 +0000
- Parent:
- 118:b44c45162f28
- Child:
- 120:3e3b6882f22a
- Commit message:
- Synchronized with git revision 9319e1bf307b63f5522aeb2d5c02565f5c3c9efa
Full URL: https://github.com/mbedmicro/mbed/commit/9319e1bf307b63f5522aeb2d5c02565f5c3c9efa/
[LPC1549] Fixed initial value of stack pointer
Changed in this revision
| targets/cmsis/TARGET_NXP/TARGET_LPC15XX/TOOLCHAIN_ARM_MICRO/startup_LPC15xx.s | Show annotated file Show diff for this revision Revisions of this file |
--- a/targets/cmsis/TARGET_NXP/TARGET_LPC15XX/TOOLCHAIN_ARM_MICRO/startup_LPC15xx.s Fri Mar 14 10:00:07 2014 +0000
+++ b/targets/cmsis/TARGET_NXP/TARGET_LPC15XX/TOOLCHAIN_ARM_MICRO/startup_LPC15xx.s Fri Mar 14 15:15:06 2014 +0000
@@ -31,8 +31,9 @@
Stack_Size EQU 0x00000200
AREA STACK, NOINIT, READWRITE, ALIGN=3
-Stack_Mem SPACE Stack_Size
-__initial_sp
+ EXPORT __initial_sp
+
+__initial_sp EQU 0x02009000 ; Top of RAM from LPC1549
; <h> Heap Configuration
