Fix for UIP read of DLE escape character.
Fork of MTS-Cellular by
Diff: Cellular/Cellular.h
- Revision:
- 52:2cb58398a4f9
- Parent:
- 31:529db15abda7
- Child:
- 53:1aee5fe47adb
--- a/Cellular/Cellular.h Tue Aug 05 18:35:22 2014 +0000 +++ b/Cellular/Cellular.h Mon Aug 11 16:03:19 2014 +0000 @@ -187,18 +187,13 @@ * to your favorite serial library. * * @param io the io interface that is attached to the cellular radio. - * @param DCD this is the dcd signal from the radio. If attached the - * the pin must be passed in here for this class to operate correctly. - * The default is not connected. - * @param DTR this is the dtr signal from the radio. If attached the - * the pin must be passed in here for this class to operate correctly. * The default is not connected. * @returns true if the init was successful, otherwise false. */ virtual bool init(MTSBufferedIO* io); /** Sets up the physical connection pins - * (DTR,DCD, and RESET obviously) + * (DTR,DCD, and RESET) */ bool configureSignals(unsigned int DCD = NC, unsigned int DTR = NC, unsigned int RESET = NC); @@ -234,7 +229,7 @@ * @param the APN as a string. * @returns the standard AT Code enumeration. */ - virtual Code setApn(const std::string& apn)=0; + virtual Code setApn(const std::string& apn) = 0; /** This method is used to set the DNS which enables the use of URLs instead * of IP addresses when making a socket connection.