Dependencies:   Buffer SoftSerial

Fork of BufferedSoftSerial by Erik -

Files at this revision

API Documentation at this revision

Comitter:
tsumagari
Date:
Fri Feb 17 07:37:06 2017 +0000
Parent:
11:050e2b137e78
Commit message:
Buffer.h -> MyBuffer.h

Changed in this revision

Buffer.lib Show annotated file Show diff for this revision Revisions of this file
BufferedSoftSerial.h Show annotated file Show diff for this revision Revisions of this file
diff -r 050e2b137e78 -r be98fe8d3762 Buffer.lib
--- a/Buffer.lib	Wed Jan 25 12:19:49 2017 +0000
+++ b/Buffer.lib	Fri Feb 17 07:37:06 2017 +0000
@@ -1,1 +1,1 @@
-https://mbed.org/users/sam_grove/code/Buffer/#cd0a1f4c623f
+https://mbed.org/users/sam_grove/code/Buffer/#89564915f2a7
diff -r 050e2b137e78 -r be98fe8d3762 BufferedSoftSerial.h
--- 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);