Library that implements the CellularInterface using PPP and LWIP on the mbed MCU. May be used on the C027 and C030 (non-N2xx flavour) boards from mbed 5.5 onwards.

Dependents:   example-ublox-cellular-interface HelloMQTT example-ublox-cellular-interface_r410M example-ublox-mbed-client

Revision:
1:80ec3fccad9e
Parent:
0:44dd95724bc2
Child:
2:4c533665168c
--- a/UbloxPPPCellularInterface.h	Wed Jun 14 09:27:55 2017 +0000
+++ b/UbloxPPPCellularInterface.h	Thu Jun 15 14:05:47 2017 +0100
@@ -44,7 +44,7 @@
  *  LWIP running on the mbed MCU, connected to the modem via PPP.
  */
 class UbloxPPPCellularInterface : public CellularBase,
-                                      virtual public UbloxCellularBase {
+                                  virtual public UbloxCellularBase {
 
 public:
     /** Constructor.
@@ -55,9 +55,9 @@
      * @param debug_on true to switch AT interface debug on, otherwise false.
      */
     UbloxPPPCellularInterface(PinName tx = MDMTXD,
-                                  PinName rx = MDMRXD,
-                                  int baud = MBED_CONF_UBLOX_CELL_BAUD_RATE,
-                                  bool debug_on = false);
+                              PinName rx = MDMRXD,
+                              int baud = MBED_CONF_UBLOX_CELL_BAUD_RATE,
+                              bool debug_on = false);
 
     /* Destructor.
      */
@@ -237,6 +237,6 @@
     bool set_atd();
 };
 
-#endif //NSAPI_PPP_AVAILABLE
-#endif //_UBLOX_PPP_CELLULAR_INTERFACE_
+#endif // NSAPI_PPP_AVAILABLE
+#endif // _UBLOX_PPP_CELLULAR_INTERFACE_