This class adds HTTP, FTP and CellLocate client support for u-blox modules for the C027 and C030 boards (excepting the C030 N2xx flavour) from mbed 5.5 onwards. The HTTP, FTP and CellLocate operations are all hosted on the module, minimizing RAM consumption in the mbed MCU. It also sub-classes ublox-cellular-driver-gen to bring in SMS, USSD and modem file system support if you need to use these functions at the same time as the cellular interface.

Dependencies:   ublox-at-cellular-interface

Dependents:   example-ublox-at-cellular-interface-ext HelloMQTT ublox_new_driver_test example-ublox-at-cellular-interface-ext ... more

Files at this revision

API Documentation at this revision

Comitter:
amq
Date:
Tue Oct 30 18:54:19 2018 +0000
Parent:
14:08717b418ba1
Child:
16:00ba752520bb
Commit message:
Add ability to set priority for the Rx thread

Changed in this revision

UbloxATCellularInterfaceExt.cpp Show annotated file Show diff for this revision Revisions of this file
UbloxATCellularInterfaceExt.h Show annotated file Show diff for this revision Revisions of this file
--- a/UbloxATCellularInterfaceExt.cpp	Mon Mar 26 15:40:27 2018 +0100
+++ b/UbloxATCellularInterfaceExt.cpp	Tue Oct 30 18:54:19 2018 +0000
@@ -439,8 +439,9 @@
 UbloxATCellularInterfaceExt::UbloxATCellularInterfaceExt(PinName tx,
                                                          PinName rx,
                                                          int baud,
-                                                         bool debugOn):
-                             UbloxATCellularInterface(tx, rx, baud, debugOn)
+                                                         bool debugOn,
+                                                         osPriority priority):
+                             UbloxATCellularInterface(tx, rx, baud, debugOn, priority)
 {
     // Zero HTTP stuff
     memset(_httpProfiles, 0, sizeof(_httpProfiles));
--- a/UbloxATCellularInterfaceExt.h	Mon Mar 26 15:40:27 2018 +0100
+++ b/UbloxATCellularInterfaceExt.h	Tue Oct 30 18:54:19 2018 +0000
@@ -43,7 +43,8 @@
     UbloxATCellularInterfaceExt(PinName tx = MDMTXD,
                                 PinName rx = MDMRXD,
                                 int baud = MBED_CONF_UBLOX_CELL_BAUD_RATE,
-                                bool debugOn = false);
+                                bool debugOn = false,
+                                osPriority priority = osPriorityNormal);
 
      /* Destructor.
       */