Inherit from SoftSerial and use software buffers for TX and RX. This allows the SoftSerial to operate in a IRQ driven mode. Overrides most (but not all) stdio functions as SoftSerial did

Dependencies:   Buffer SoftSerial

Dependents:   2014_Ensoul_Capstone F103RB_tcp_rtu_modbus_copy_v1_0 SDP_Testing Nucleo_SFM ... more

Fork of BufferedSerial by Sam Grove

Todo: Write something here :)

Revision:
7:58d0adeb95aa
Parent:
6:4e3e18b41ea6
Child:
9:5b069a1896f9
--- a/BufferedSoftSerial.h	Sat Apr 26 20:55:42 2014 +0000
+++ b/BufferedSoftSerial.h	Sun Apr 27 08:33:35 2014 +0000
@@ -45,8 +45,8 @@
  * #include "mbed.h"
  * #include "BufferedSoftSerial.h"
  * 
- * BufferedSoftSerial buf(USBTX, USBRX);
  * SoftSerial block(USBTX, USBRX);
+* BufferedSoftSerial buf(USBTX, USBRX);
  * 
  * int main()
  * {