Arduino Core API Library besed on mbed platform.

Dependents:   WeeESP8266 ESP8266_moj

Committer:
itead
Date:
Tue Feb 10 10:39:42 2015 +0000
Revision:
4:1fec2e4c60e5
Parent:
0:5ebc917ebd09
Change buffer size

Who changed what in which revision?

UserRevisionLine numberNew contents of line
itead 0:5ebc917ebd09 1 #ifndef __ARDUINOAPI_ITOAS_H__
itead 0:5ebc917ebd09 2 #define __ARDUINOAPI_ITOAS_H__
itead 0:5ebc917ebd09 3
itead 0:5ebc917ebd09 4 #include "cstdlib"
itead 0:5ebc917ebd09 5
itead 0:5ebc917ebd09 6 char* utoa( unsigned long value, char *string, int radix );
itead 0:5ebc917ebd09 7 char* itoa( int value, char *string, int radix );
itead 0:5ebc917ebd09 8 char* ultoa( unsigned long value, char *string, int radix );
itead 0:5ebc917ebd09 9 char* ltoa( long value, char *string, int radix );
itead 0:5ebc917ebd09 10
itead 0:5ebc917ebd09 11 #endif /* #ifndef __ARDUINOAPI_ITOAS_H__ */