Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: Buffer SoftSerial
Fork of BufferedSoftSerial by
Revision 11:6cece102c686, committed 2017-04-01
- Comitter:
- tsumagari
- Date:
- Sat Apr 01 11:13:55 2017 +0000
- Parent:
- 10:671a6724ce79
- Commit message:
- Buffer->MyBuff
Changed in this revision
--- a/Buffer.lib Sat Jul 05 13:23:03 2014 +0000 +++ b/Buffer.lib Sat Apr 01 11:13:55 2017 +0000 @@ -1,1 +1,1 @@ -https://mbed.org/users/sam_grove/code/Buffer/#cd0a1f4c623f +https://mbed.org/users/sam_grove/code/Buffer/#89564915f2a7
--- a/BufferedSoftSerial.h Sat Jul 05 13:23:03 2014 +0000
+++ b/BufferedSoftSerial.h Sat Apr 01 11:13:55 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);
--- a/SoftSerial.lib Sat Jul 05 13:23:03 2014 +0000 +++ b/SoftSerial.lib Sat Apr 01 11:13:55 2017 +0000 @@ -1,1 +1,1 @@ -http://mbed.org/users/Sissors/code/SoftSerial/#236fce2e5b8c +http://mbed.org/users/Sissors/code/SoftSerial/#a0029614de72
