BufferedSoftSerial patch

Dependencies:   SoftSerial

Fork of BufferedSoftSerial by Erik -

Files at this revision

API Documentation at this revision

Comitter:
herz1012
Date:
Tue Jul 17 12:21:05 2018 +0000
Parent:
10:671a6724ce79
Commit message:
Buffer library was changed to MyBuffer

Changed in this revision

Buffer.lib Show diff for this revision Revisions of this file
BufferedSoftSerial.h Show annotated file Show diff for this revision Revisions of this file
SoftSerial.lib Show annotated file Show diff for this revision Revisions of this file
--- a/Buffer.lib	Sat Jul 05 13:23:03 2014 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,1 +0,0 @@
-https://mbed.org/users/sam_grove/code/Buffer/#cd0a1f4c623f
--- a/BufferedSoftSerial.h	Sat Jul 05 13:23:03 2014 +0000
+++ b/BufferedSoftSerial.h	Tue Jul 17 12:21:05 2018 +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);
--- a/SoftSerial.lib	Sat Jul 05 13:23:03 2014 +0000
+++ b/SoftSerial.lib	Tue Jul 17 12:21:05 2018 +0000
@@ -1,1 +1,1 @@
-http://mbed.org/users/Sissors/code/SoftSerial/#236fce2e5b8c
+http://mbed.org/users/Sissors/code/SoftSerial/#a0029614de72