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:
6:517082212c00
Parent:
5:acfd0329f648
Child:
9:4e4617c4a441
--- a/SoftSerial.cpp	Sat Apr 26 20:55:02 2014 +0000
+++ b/SoftSerial.cpp	Sun Apr 27 08:33:17 2014 +0000
@@ -7,11 +7,13 @@
         tx_en = true;
         tx->write(1);
         tx_bit = -1;
+        txticker.attach(this, &SoftSerial::tx_handler);
     }
     if (RX != NC) {
         rx = new InterruptIn(RX);
         rx_en = true;
         out_valid = false;
+        rxticker.attach(this, &SoftSerial::rx_handler);
         rx->fall(this, &SoftSerial::rx_gpio_irq_handler);
     }