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-rtos by
Revision 4:70bd33086f56, committed 2012-07-30
- 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
