Implementation of the CellularInterface for u-blox C027 and C030 (non-N2xx flavour) modems that uses the IP stack on-board the cellular modem, hence not requiring LWIP (and so less RAM) and allowing any AT command exchanges to be carried out at the same time as data transfers (since the modem remains in AT mode all the time). This library may be used from mbed 5.5 onwards. If you need to use SMS, USSD or access the modem file system at the same time as using the CellularInterface then use ublox-at-cellular-interface-ext instead.

Dependents:   example-ublox-cellular-interface example-ublox-cellular-interface_r410M example-ublox-mbed-client example-ublox-cellular-interface ... more

Files at this revision

API Documentation at this revision

Comitter:
fahimalavi
Date:
Mon Jun 24 11:42:03 2019 +0500
Parent:
27:3d709ee8c3e1
Child:
29:773cfb0fe56c
Commit message:
Deprecated CellularBase replaced with CellularInterface

Changed in this revision

UbloxATCellularInterface.h Show annotated file Show diff for this revision Revisions of this file
--- a/UbloxATCellularInterface.h	Thu May 23 13:07:14 2019 +0500
+++ b/UbloxATCellularInterface.h	Mon Jun 24 11:42:03 2019 +0500
@@ -17,7 +17,7 @@
 #define _UBLOX_AT_CELLULAR_INTERFACE_
 
 #include "UbloxCellularBase.h"
-#include "CellularBase.h"
+#include "CellularInterface.h"
 #include "NetworkStack.h"
 
 /** UbloxATCellularInterface class.
@@ -61,7 +61,7 @@
  *  modems on the C030 and C027 boards for 2G/3G/4G modules using
  *  the IP stack running on the cellular module.
  */
-class UbloxATCellularInterface : public CellularBase, public NetworkStack, virtual public UbloxCellularBase  {
+class UbloxATCellularInterface : public CellularInterface, public NetworkStack, virtual public UbloxCellularBase  {
 
 public:
     /** Constructor.