1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-15 00:02:49 +03:00

Move tools to platform directory

This commit is contained in:
Ivan Grokhotkov
2015-05-18 16:04:30 +03:00
parent 2510707911
commit 870b8b9478
45 changed files with 3609 additions and 2 deletions

13
tools/sdk/include/mem.h Normal file
View File

@ -0,0 +1,13 @@
#ifndef __MEM_H__
#define __MEM_H__
//void *pvPortMalloc( size_t xWantedSize );
//void vPortFree( void *pv );
//void *pvPortZalloc(size_t size);
#define os_malloc pvPortMalloc
#define os_free vPortFree
#define os_zalloc pvPortZalloc
#define os_realloc pvPortRealloc
#endif