Mike R / Mbed 2 deprecated Pinscape_Controller_V2

Dependencies:   mbed FastIO FastPWM USBDevice

Fork of Pinscape_Controller by Mike R

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers NewMalloc.h Source File

NewMalloc.h

00001 #ifndef _NEWMALLOC_H_
00002 #define _NEWMALLOC_H_
00003 
00004 #include "mbed.h"
00005 
00006 // our custom memory allocator
00007 void *xmalloc(size_t);
00008 
00009 // Number of free bytes remaning
00010 size_t mallocBytesFree();
00011 
00012 #endif