Official mbed Real Time Operating System based on the RTX implementation of the CMSIS-RTOS API open standard.

Fork of mbed-rtos by mbed official

Revision:
30:b69b81781cda
Parent:
29:9d826f3cfb27
--- a/rtx/RTX_CM_lib.h	Tue Apr 29 08:36:23 2014 +0000
+++ b/rtx/RTX_CM_lib.h	Wed Apr 30 16:26:20 2014 +0000
@@ -199,7 +199,7 @@
 osThreadDef_t os_thread_def_main = {(os_pthread)main, osPriorityNormal, 0, NULL};
 
 // This define should be probably moved to the CMSIS layer
-#if   defined(TARGET_LPC1768) || defined(TARGET_LPC1549)
+#if   defined(TARGET_LPC1768)
 #define INITIAL_SP            (0x10008000UL)
 
 #elif defined(TARGET_LPC11U24)
@@ -238,6 +238,12 @@
 #elif defined(TARGET_STM32F407) || defined(TARGET_F407VG)
 #define INITIAL_SP            (0x20020000UL)
 
+#elif defined(TARGET_LPC1549)
+#define INITIAL_SP            (0x02009000UL)
+
+#elif defined(TARGET_LPC11U68)
+#define INITIAL_SP            (0x10004000UL)
+
 #else
 #error "no target defined"