- added Delay to Serial flush method

Dependents:   WeeESP8266

Fork of ArduinoAPI by ITEAD STUDIO

Committer:
JojoS
Date:
Mon Apr 24 16:23:14 2017 +0000
Revision:
7:c62910a9e405
Parent:
0:5ebc917ebd09
support routiines for ESP;

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__ */