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

Revision:
28:aef4a3de0de3
Parent:
24:35d5b2a02df8
Child:
35:ca29480080ac
--- 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.