Benjamin Hepp / BufferedSerial

Dependencies:   Buffer

Fork of BufferedSerial by Sam Grove

Revision:
13:b4080afc8cd5
Parent:
12:c7947d444267
Child:
14:2150f1edc9bc
--- a/BufferedSerial.h	Sat Feb 13 14:14:50 2016 +0000
+++ b/BufferedSerial.h	Sat Feb 13 17:10:39 2016 +0000
@@ -136,6 +136,14 @@
      *  @return The number of bytes written to the Serial Port Buffer
      */
     virtual int printf(const char* format, ...);
+
+
+    /** Write a formatted string to the BufferedSerial Port.
+     *  @param format The format string to write to the Serial Port
+     *  @param args variable argument list
+     *  @return The number of bytes written to the Serial Port Buffer
+     */
+    virtual int printf(const char* format, va_list args);
     
     /** Write data to the Buffered Serial Port
      *  @param s A pointer to data to send