Add support new target: ST Nucleo-L152RE 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

Files at this revision

API Documentation at this revision

Comitter:
emilmont
Date:
Mon Jul 30 10:27:24 2012 +0000
Parent:
3:4238c328365e
Child:
5:9654a71f5a90
Commit message:
Implement new RTOS memory model for LPC11U24

Changed in this revision

RTX_Conf_CM.c Show annotated file Show diff for this revision Revisions of this file
rtx.lib Show annotated file Show diff for this revision Revisions of this file
--- a/RTX_Conf_CM.c	Mon Jul 23 15:39:12 2012 +0000
+++ b/RTX_Conf_CM.c	Mon Jul 30 10:27:24 2012 +0000
@@ -58,7 +58,11 @@
 
 //   <o>Scheduler (+ interrupts) stack size [bytes] <64-4096:8><#/4>
 #ifndef OS_SCHEDULERSTKSIZE
- #define OS_SCHEDULERSTKSIZE    256
+#  if defined(TARGET_LPC1768) || defined(TARGET_LPC2368)
+#      define OS_SCHEDULERSTKSIZE    256
+#  elif defined(TARGET_LPC11U24)
+#      define OS_SCHEDULERSTKSIZE    128
+#  endif
 #endif
 
 //   <o>Idle stack size [bytes] <64-4096:8><#/4>
--- a/rtx.lib	Mon Jul 23 15:39:12 2012 +0000
+++ b/rtx.lib	Mon Jul 30 10:27:24 2012 +0000
@@ -1,1 +1,1 @@
-http://mbed.org/users/mbed_official/code/rtx/#7b566891202a
+http://mbed.org/users/mbed_official/code/rtx/#11cebe4716fa