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:
19:ee06f3b2b078
Parent:
18:071ae6c6e581
Child:
20:737d307fd4d6
--- a/TESTS/unit_tests/http/main.cpp	Wed Jan 30 16:44:51 2019 +0500
+++ b/TESTS/unit_tests/http/main.cpp	Thu Jan 31 18:14:52 2019 +0500
@@ -54,7 +54,11 @@
 #endif
 
 // The time to wait for a HTTP command to complete
-#define HTTP_TIMEOUT  20000
+#ifndef MBED_CONF_APP_HTTP_TIMEOUT
+#define HTTP_TIMEOUT  10000
+#else
+#define HTTP_TIMEOUT  MBED_CONF_APP_HTTP_TIMEOUT
+#endif
 
 // The HTTP echo server, as described in the
 // first answer here: