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 62:444020d511f5, committed 2015-01-22
- Comitter:
- mbed_official
- Date:
- Thu Jan 22 07:45:07 2015 +0000
- Parent:
- 61:9387d4c49609
- Child:
- 63:5448826aa700
- Commit message:
- Synchronized with git revision 1c9ba7ca9c2fdab8507ea1e4e08bc60c22a732d3
Full URL: https://github.com/mbedmicro/mbed/commit/1c9ba7ca9c2fdab8507ea1e4e08bc60c22a732d3/
Correct warning when assigning HEAP_START to stack_pointer
Changed in this revision
| rtx/TARGET_CORTEX_M/RTX_CM_lib.h | Show annotated file Show diff for this revision Revisions of this file |
--- a/rtx/TARGET_CORTEX_M/RTX_CM_lib.h Mon Jan 12 08:15:33 2015 +0000 +++ b/rtx/TARGET_CORTEX_M/RTX_CM_lib.h Thu Jan 22 07:45:07 2015 +0000 @@ -304,10 +304,10 @@ #endif #ifdef __CC_ARM -extern unsigned char Image$$RW_IRAM1$$ZI$$Limit[]; +extern uint32_t Image$$RW_IRAM1$$ZI$$Limit[]; #define HEAP_START (Image$$RW_IRAM1$$ZI$$Limit) #elif defined(__GNUC__) -extern unsigned char __end__[]; +extern uint32_t __end__[]; #define HEAP_START (__end__) #elif defined(__ICCARM__) #pragma section="HEAP"
