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:
mudassar0121
Date:
Fri Jan 03 15:46:29 2020 +0500
Parent:
33:0f6b21dc0274
Child:
35:6a6ee1adff84
Commit message:
updated tests as disable_psm name changed to disable_power_saving_mode

Changed in this revision

TESTS/unit_tests/ftp/main.cpp Show annotated file Show diff for this revision Revisions of this file
TESTS/unit_tests/http/main.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/TESTS/unit_tests/ftp/main.cpp	Wed Jan 01 13:40:15 2020 +0500
+++ b/TESTS/unit_tests/ftp/main.cpp	Fri Jan 03 15:46:29 2020 +0500
@@ -224,7 +224,7 @@
         }
     }
     TEST_ASSERT(pDriver->init(MBED_CONF_APP_DEFAULT_PIN));
-    TEST_ASSERT(pDriver->disable_psm());
+    TEST_ASSERT(pDriver->disable_power_saving_mode());
 #else
     TEST_ASSERT(pDriver->init(MBED_CONF_APP_DEFAULT_PIN));
 #endif
--- a/TESTS/unit_tests/http/main.cpp	Wed Jan 01 13:40:15 2020 +0500
+++ b/TESTS/unit_tests/http/main.cpp	Fri Jan 03 15:46:29 2020 +0500
@@ -128,7 +128,7 @@
         }
     }
     TEST_ASSERT(pDriver->init(MBED_CONF_APP_DEFAULT_PIN));
-    TEST_ASSERT(pDriver->disable_psm());
+    TEST_ASSERT(pDriver->disable_power_saving_mode());
 #endif
     TEST_ASSERT(pDriver->connect(MBED_CONF_APP_DEFAULT_PIN, MBED_CONF_APP_APN,
                                  MBED_CONF_APP_USERNAME, MBED_CONF_APP_PASSWORD) == 0);