Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of MTS-Cellular by
Diff: Cellular/UIP.h
- Revision:
- 9:1a03e3f3e7fe
- Parent:
- 8:2d7259d244d1
- Child:
- 10:c188cc05aed5
diff -r 2d7259d244d1 -r 1a03e3f3e7fe Cellular/UIP.h --- 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 }; }