From 41f8bf45bcdfd3098f7d81e0de78493ca89c8e77 Mon Sep 17 00:00:00 2001
From: Cristian Maglie <c.maglie@arduino.cc>
Date: Fri, 28 Nov 2014 09:58:15 +0100
Subject: [PATCH]  Uart now imports default write functions from Stream

---
 cores/arduino/Uart.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/cores/arduino/Uart.h b/cores/arduino/Uart.h
index d97ce564..f2c43912 100644
--- a/cores/arduino/Uart.h
+++ b/cores/arduino/Uart.h
@@ -38,6 +38,7 @@ class Uart : public HardwareSerial
     int read();
     void flush();
     size_t write(const uint8_t data);
+    using Print::write; // pull in write(str) and write(buf, size) from Print
 
     void IrqHandler();
 
-- 
GitLab