Fork of the original SoftSerial library with just a little modification in order to compile it with the current mbed version.

Dependents:   Adafruit_FONA_Library_FONAtest

Fork of SoftSerial by Erik -

Revision:
9:4e4617c4a441
Parent:
6:517082212c00
--- a/SoftSerial.cpp	Sun Apr 27 19:48:40 2014 +0000
+++ b/SoftSerial.cpp	Sat Jul 05 08:07:49 2014 +0000
@@ -21,6 +21,13 @@
     format();
 }
 
+SoftSerial::~SoftSerial() {
+    if (tx_en)
+        delete(tx);
+    if (rx_en)
+        delete(rx);
+}
+
 void SoftSerial::baud(int baudrate) {
     bit_period = 1000000 / baudrate;
 }