aboutsummaryrefslogtreecommitdiff
path: root/cores
diff options
context:
space:
mode:
authorMatthijs Kooijman <matthijs@stdin.nl>2014-10-24 15:26:38 +0200
committerCristian Maglie <c.maglie@bcmi-labs.cc>2017-05-23 17:03:42 +0200
commitba9d416862f599f343bbd152570b39bffa56009a (patch)
treecd112ee1ff490d6f1ff06e25db0876273143cb46 /cores
parent716fba8dd98f54dcd816fa69cafdcb681b54ab11 (diff)
Move the flush method from Stream to Print
This method originally flushed pending input bytes, which makes sense in Stream. At some point it was changed to flush output bytes instead, but it was never moved to Print to reflect this. Since Stream inherits from Print, this should not really affect any users of the Stream or Print classes. However to prevent problems with existing implementations of the Print class that do not provide a flush() implementation, a default implementation is provided. We should probably remove this at some point in the future, though.
Diffstat (limited to 'cores')
-rw-r--r--cores/arduino/Print.h2
-rw-r--r--cores/arduino/Stream.h1
2 files changed, 2 insertions, 1 deletions
diff --git a/cores/arduino/Print.h b/cores/arduino/Print.h
index 4d8a2f5..2b5aafd 100644
--- a/cores/arduino/Print.h
+++ b/cores/arduino/Print.h
@@ -87,6 +87,8 @@ class Print
size_t println(double, int = 2);
size_t println(const Printable&);
size_t println(void);
+
+ virtual void flush() { /* Empty implementation for backward compatibility */ }
};
#endif
diff --git a/cores/arduino/Stream.h b/cores/arduino/Stream.h
index e4fd433..78a1c07 100644
--- a/cores/arduino/Stream.h
+++ b/cores/arduino/Stream.h
@@ -59,7 +59,6 @@ class Stream : public Print
virtual int available() = 0;
virtual int read() = 0;
virtual int peek() = 0;
- virtual void flush() = 0;
Stream() {_timeout=1000;}