From 7ded03787817f65fac27cb0969b7cab00dc4821a Mon Sep 17 00:00:00 2001 From: Matthijs Kooijman Date: Tue, 24 Dec 2013 10:57:32 +0100 Subject: Add Print::write(const char *, size_t) The new function just calls Print::write(const uint8_t *, size_t), but this allows writing out a buffer of chars (without having to learn about casts). --- cores/arduino/Print.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cores/arduino/Print.h b/cores/arduino/Print.h index dc76150..7b53aa4 100644 --- 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 &); -- cgit v1.2.3-18-g5258