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

Revision:
28:4427f2e6bbab
Parent:
17:ac64a6b90925
Child:
35:6a6ee1adff84
--- a/UbloxATCellularInterfaceExt.cpp	Mon Aug 19 12:25:22 2019 +0500
+++ b/UbloxATCellularInterfaceExt.cpp	Mon Aug 26 16:55:43 2019 +0500
@@ -598,6 +598,11 @@
                           _at->recv("OK");
                 break;
 
+            case HTTP_REQ_HEADER:	//9
+                success = _at->send("AT+UHTTP=%d,%d,\"%s\"", httpProfile, httpOpCode, httpInPar) &&
+                _at->recv("OK");
+                break;
+
             default:
                 debug_if(_debug_trace_on, "httpSetPar: unknown httpOpCode %d\n", httpOpCode);
                 break;