Dependencies:   Buffer SoftSerial

Fork of BufferedSoftSerial by Erik -

Revision:
12:be98fe8d3762
Parent:
9:5b069a1896f9
--- a/BufferedSoftSerial.h	Wed Jan 25 12:19:49 2017 +0000
+++ b/BufferedSoftSerial.h	Fri Feb 17 07:37:06 2017 +0000
@@ -25,7 +25,7 @@
 #define BUFFEREDSOFTSERIAL_H
  
 #include "mbed.h"
-#include "Buffer.h"
+#include "MyBuffer.h"
 #include "SoftSerial.h"
 
 /** A serial port (UART) for communication with other serial devices
@@ -79,8 +79,8 @@
 class BufferedSoftSerial : public SoftSerial 
 {
 private:
-    Buffer <char> _rxbuf;
-    Buffer <char> _txbuf;
+    MyBuffer <char> _rxbuf;
+    MyBuffer <char> _txbuf;
  
     void rxIrq(void);
     void txIrq(void);