HardwareSerial - availableForWrite() support (#1226)

* HardwareSerial - availableForWrite() support

* fix indentation errors (tab vs space)
This commit is contained in:
mtabu
2018-04-06 18:07:46 +02:00
committed by Me No Dev
parent 149190fe11
commit aa1288aa6e
4 changed files with 14 additions and 0 deletions

View File

@ -40,6 +40,7 @@ public:
void begin(unsigned long baud, uint32_t config=SERIAL_8N1, int8_t rxPin=-1, int8_t txPin=-1, bool invert=false);
void end();
int available(void);
int availableForWrite(void);
int peek(void);
int read(void);
void flush(void);