Software serial, for when you are out of serial pins

Dependents:   BufferedSoftSerial neurGAI_Seeed_BLUETOOTH LPC-SD-35 ESP-WROOM-02_test ... more

Revision:
5:acfd0329f648
Parent:
2:9e01a38606b4
Child:
6:517082212c00
--- a/SoftSerial.cpp	Sat Apr 26 20:04:49 2014 +0000
+++ b/SoftSerial.cpp	Sat Apr 26 20:55:02 2014 +0000
@@ -1,6 +1,6 @@
 #include "SoftSerial.h"
 
-SoftSerial::SoftSerial(PinName TX, PinName RX) {
+SoftSerial::SoftSerial(PinName TX, PinName RX, const char* name) {
     tx_en = rx_en = false;
     if (TX != NC) {
         tx = new DigitalOut(TX);