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:
Mon Nov 11 13:01:25 2019 +0500
Parent:
37:0ceb2dfc746c
Child:
39:f038c51be44f
Commit message:
updated tests: as 'disable_psm' function name changed to 'disable_power_saving_mode'

Changed in this revision

TESTS/unit_tests/default/main.cpp Show annotated file Show diff for this revision Revisions of this file
TESTS/unit_tests/dynamic/main.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/TESTS/unit_tests/default/main.cpp	Wed Oct 09 14:48:57 2019 +0500
+++ b/TESTS/unit_tests/default/main.cpp	Mon Nov 11 13:01:25 2019 +0500
@@ -1172,7 +1172,7 @@
     TEST_ASSERT(interface->get_mno_profile(&current_profile));
     tr_debug("New MNO profile is: %d\n", current_profile);
 
-    TEST_ASSERT(interface->disable_psm());
+    TEST_ASSERT(interface->disable_power_saving_mode());
 
     TEST_ASSERT((UbloxATCellularInterface::MNOProfile)current_profile == UbloxATCellularInterface::STANDARD_EU);
 
@@ -1215,7 +1215,7 @@
     TEST_ASSERT(interface->reboot_modem());
     wait_ms(5000);
     TEST_ASSERT(interface->init(MBED_CONF_APP_DEFAULT_PIN));
-    TEST_ASSERT(interface->disable_psm());
+    TEST_ASSERT(interface->disable_power_saving_mode());
 }
 #endif
 
--- a/TESTS/unit_tests/dynamic/main.cpp	Wed Oct 09 14:48:57 2019 +0500
+++ b/TESTS/unit_tests/dynamic/main.cpp	Mon Nov 11 13:01:25 2019 +0500
@@ -245,7 +245,7 @@
     }
     TEST_ASSERT(interface->init(MBED_CONF_APP_DEFAULT_PIN));
 
-    TEST_ASSERT(interface->disable_psm());
+    TEST_ASSERT(interface->disable_power_saving_mode());
 #else
     TEST_ASSERT(interface->init(MBED_CONF_APP_DEFAULT_PIN));
 #endif