Implementation of the CellularInterface for u-blox C030 boards with N2xx modems. Note: requires the N211 module firmware to be at least 06.57 A01.02.
Dependents: example-ublox-cellular-interface HelloMQTT example-ublox-cellular-interface_r410M example-ublox-mbed-client ... more
Revision 14:7fb0bbdc4242, committed 2019-02-13
- Comitter:
- fahim.alavi@u-blox.com
- Date:
- Wed Feb 13 10:48:13 2019 +0500
- Parent:
- 13:2504d4160042
- Commit message:
- Pure virtual method overrider added to remove build errors with updated mbed-os
Changed in this revision
diff -r 2504d4160042 -r 7fb0bbdc4242 UbloxATCellularInterfaceN2xx.cpp --- a/UbloxATCellularInterfaceN2xx.cpp Tue May 15 10:23:16 2018 +0100 +++ b/UbloxATCellularInterfaceN2xx.cpp Wed Feb 13 10:48:13 2019 +0500 @@ -877,6 +877,10 @@ _localListenPort = port; } +void UbloxATCellularInterfaceN2xx::set_plmn(const char *plmn) { + +} + // Callback in case the connection is lost. void UbloxATCellularInterfaceN2xx::connection_status_cb(Callback<void(nsapi_error_t)> cb) {
diff -r 2504d4160042 -r 7fb0bbdc4242 UbloxATCellularInterfaceN2xx.h --- a/UbloxATCellularInterfaceN2xx.h Tue May 15 10:23:16 2018 +0100 +++ b/UbloxATCellularInterfaceN2xx.h Wed Feb 13 10:48:13 2019 +0500 @@ -259,6 +259,12 @@ */ virtual const char *get_gateway(); + /** Set the plmn. PLMN controls to what network device registers. + * + * @param plmn user to force what network to register. + */ + virtual void set_plmn(const char *plmn); + /** Call back in case connection is lost. * * @param cb The function to call.