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 15:29007aef10a4, committed 2013-11-19
- Comitter:
- mbed_official
- Date:
- Tue Nov 19 09:00:05 2013 +0000
- Parent:
- 14:ee87e782d34f
- Child:
- 16:3474615e591f
- Commit message:
- Synchronized with git revision 'ec1a027088bf562c011ef2197ec2589990449a36 (https://github.com/mbedmicro/mbed/commit/'ec1a027088bf562c011ef2197ec2589990449a36/)
Author: Bogdan Marinescu
Increase available RAM for RTX on LPC11U24'
Changed in this revision
| rtx/RTX_CM_lib.h | Show annotated file Show diff for this revision Revisions of this file |
--- a/rtx/RTX_CM_lib.h Wed Sep 11 20:15:08 2013 +0100
+++ b/rtx/RTX_CM_lib.h Tue Nov 19 09:00:05 2013 +0000
@@ -203,7 +203,7 @@
#define INITIAL_SP (0x10008000UL)
#elif TARGET_LPC11U24
-#define INITIAL_SP (0x10001000UL)
+#define INITIAL_SP (0x10002000UL)
#elif TARGET_LPC1114
#define INITIAL_SP (0x10001000UL)
@@ -226,8 +226,8 @@
extern unsigned char Image$$RW_IRAM1$$ZI$$Limit[];
#define HEAP_START (Image$$RW_IRAM1$$ZI$$Limit)
#elif defined(__GNUC__)
-extern unsigned char __HeapLimit[];
-#define HEAP_START (__HeapLimit)
+extern unsigned char __end__[];
+#define HEAP_START (__end__)
#endif
void set_main_stack(void) {
