diff options
author | Cristian Maglie <c.maglie@bug.st> | 2014-05-24 00:13:07 +0200 |
---|---|---|
committer | Cristian Maglie <c.maglie@bug.st> | 2014-05-24 00:13:07 +0200 |
commit | f3e78a4a2920665b45b964049db3ebed9b8f1dc7 (patch) | |
tree | c5c0d29a8bb3e0b4cd73fc2c91c82941be29bdce /cores/arduino/Print.h | |
parent | c16768565b4ea62a06d21fa6d5cb0cbb0af902fa (diff) |
Backported Print class from ide-1.5.x branch
Close #1951
Diffstat (limited to 'cores/arduino/Print.h')
-rwxr-xr-x | cores/arduino/Print.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cores/arduino/Print.h b/cores/arduino/Print.h index dc76150..7b53aa4 100755 --- a/cores/arduino/Print.h +++ b/cores/arduino/Print.h @@ -51,6 +51,9 @@ class Print return write((const uint8_t *)str, strlen(str)); } virtual size_t write(const uint8_t *buffer, size_t size); + size_t write(const char *buffer, size_t size) { + return write((const uint8_t *)buffer, size); + } size_t print(const __FlashStringHelper *); size_t print(const String &); |