Cellular library for MTS Socket Modem Arduino Shield devices from Multi-Tech Systems

Dependents:   mtsas mtsas mtsas mtsas

Revision:
9:1a03e3f3e7fe
Parent:
8:2d7259d244d1
Child:
10:c188cc05aed5
--- a/Cellular/UIP.h	Wed May 21 15:28:37 2014 -0500
+++ b/Cellular/UIP.h	Wed May 21 15:39:35 2014 -0500
@@ -55,11 +55,6 @@
     ~UIP();
 
     virtual bool init(MTSBufferedIO* io);
-    
-    /**
-    *
-    */
-    bool configureSignals(PinName DCD = NC, PinName DTR = NC, PinName RESET = NC);
 
     // Wifi connection based commands derived from CommInterface.h
     virtual bool connect();
@@ -105,11 +100,6 @@
     * @returns the standard AT Code enumeration.
     */
     Code setSocketCloseable(bool enabled = true);  //ETX closes socket (ETX and DLE in payload are escaped with DLE)
-
-private:
-    DigitalIn* dcd; //Maps to the radio's dcd signal
-    DigitalOut* dtr; //Maps to the radio's dtr signal
-    DigitalOut* resetLine; //Maps to the radio's reset signal 
 };
 
 }