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

Files at this revision

API Documentation at this revision

Comitter:
mudassar0121
Date:
Fri Nov 22 19:45:14 2019 +0500
Parent:
39:f038c51be44f
Child:
41:69998003d95a
Commit message:
set full_functionality in test_set_new_rat

Changed in this revision

TESTS/unit_tests/default/main.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/TESTS/unit_tests/default/main.cpp	Wed Nov 20 12:59:14 2019 +0500
+++ b/TESTS/unit_tests/default/main.cpp	Fri Nov 22 19:45:14 2019 +0500
@@ -1077,6 +1077,7 @@
 
     // Power-up the modem
     TEST_ASSERT(interface->init());
+    interface->set_functionality_mode(UbloxCellularBase::FUNC_FULL);
 
     // Check if modem is registered with network
     if (interface->is_registered_csd() || interface->is_registered_psd() || interface->is_registered_eps()) {
@@ -1127,7 +1128,6 @@
                                    MBED_CONF_APP_USERNAME, MBED_CONF_APP_PASSWORD) == 0);
 
     drop_connection(interface);
-    interface->deinit();
 }