From 716fba8dd98f54dcd816fa69cafdcb681b54ab11 Mon Sep 17 00:00:00 2001 From: Eric Wieser Date: Mon, 2 Jan 2017 11:17:30 +0000 Subject: Add Print::availableForWrite If available() is in the base Stream class, then availableForWrite() should be in the base Print class --- cores/arduino/Print.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'cores/arduino/Print.h') diff --git a/cores/arduino/Print.h b/cores/arduino/Print.h index d099a3b..4d8a2f5 100644 --- a/cores/arduino/Print.h +++ b/cores/arduino/Print.h @@ -22,6 +22,7 @@ #include #include // for size_t +#include // for INT_MAX #include "WString.h" #include "Printable.h" @@ -57,7 +58,11 @@ class Print size_t write(const char *buffer, size_t size) { return write((const uint8_t *)buffer, size); } - + + // default to zero, meaning "a single write may block" + // should be overriden by subclasses with buffering + virtual int availableForWrite() { return 0; } + size_t print(const __FlashStringHelper *); size_t print(const String &); size_t print(const char[]); -- cgit v1.2.3-18-g5258