Changeset 1003
- Timestamp:
- 11/18/08 10:39:36 (7 weeks ago)
- Location:
- firmware/branches/cpp
- Files:
-
- 2 added
- 2 modified
-
core/makingthings/rtos_.cpp (added)
-
core/makingthings/rtos_.h (added)
-
core/startup/extras.c (modified) (2 diffs)
-
projects/heavy/Makefile (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
firmware/branches/cpp/core/startup/extras.c
r456 r1003 2 2 3 3 #include <reent.h> 4 #include <stdlib.h> 5 6 #include "projdefs.h" 7 #include "portable.h" 4 8 5 9 void *_sbrk_r (struct _reent *r, ptrdiff_t t ) … … 56 60 } 57 61 62 void* malloc( size_t size ) 63 { 64 return pvPortMalloc( size ); 65 } 58 66 67 void free( void* memory ) 68 { 69 vPortFree( memory ); 70 } 71 72 -
firmware/branches/cpp/projects/heavy/Makefile
r970 r1003 85 85 ../../core/makingthings/tcpserver.cpp \ 86 86 ../../core/makingthings/osc_cpp.cpp \ 87 ../../core/makingthings/rtos_.cpp \ 87 88 ../../libraries/appled/appled_.cpp \ 88 89 make_.cpp \
