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

Committer:
mudassar0121
Date:
Mon Jan 06 14:29:40 2020 +0500
Revision:
42:98808477a691
Parent:
14:e7dcf3388403
Replaced depreciated wait_ms with ThisThread::sleep_for

Who changed what in which revision?

UserRevisionLine numberNew contents of line
RobMeades 14:e7dcf3388403 1 {
RobMeades 14:e7dcf3388403 2 "config": {
RobMeades 14:e7dcf3388403 3 "debug-on": {
RobMeades 14:e7dcf3388403 4 "help": "Set to true to get AT interface debug",
RobMeades 14:e7dcf3388403 5 "value": false
RobMeades 14:e7dcf3388403 6 },
RobMeades 14:e7dcf3388403 7 "default-pin": {
RobMeades 14:e7dcf3388403 8 "help": "The current value of the SIM PIN as a string; if PIN is enabled on your SIM, or you wish to run the SIM PIN change tests, you must put the PIN for your SIM here",
RobMeades 14:e7dcf3388403 9 "value": "\"1234\""
RobMeades 14:e7dcf3388403 10 },
RobMeades 14:e7dcf3388403 11 "apn": {
RobMeades 14:e7dcf3388403 12 "help": "The APN string to use for this SIM/network, set to 0 if none",
RobMeades 14:e7dcf3388403 13 "value": 0
RobMeades 14:e7dcf3388403 14 },
RobMeades 14:e7dcf3388403 15 "username": {
RobMeades 14:e7dcf3388403 16 "help": "The user name string to use for this APN, set to zero if none",
RobMeades 14:e7dcf3388403 17 "value": 0
RobMeades 14:e7dcf3388403 18 },
RobMeades 14:e7dcf3388403 19 "password": {
RobMeades 14:e7dcf3388403 20 "help": "The password string to use for this APN, set to 0 if none",
RobMeades 14:e7dcf3388403 21 "value": 0
RobMeades 14:e7dcf3388403 22 },
RobMeades 14:e7dcf3388403 23 "ntp-server": {
RobMeades 14:e7dcf3388403 24 "help": "The URL string of the NTP server to use during testing",
RobMeades 14:e7dcf3388403 25 "value": "\"2.pool.ntp.org\""
RobMeades 14:e7dcf3388403 26 },
RobMeades 14:e7dcf3388403 27 "ntp-port": {
RobMeades 14:e7dcf3388403 28 "help": "The port to connect to on ntp-server",
RobMeades 14:e7dcf3388403 29 "value": 123
RobMeades 14:e7dcf3388403 30 }
RobMeades 14:e7dcf3388403 31 },
RobMeades 14:e7dcf3388403 32 "macros": ["MBED_HEAP_STATS_ENABLED=1"],
RobMeades 14:e7dcf3388403 33 "target_overrides": {
RobMeades 14:e7dcf3388403 34 "*": {
RobMeades 14:e7dcf3388403 35 "target.features_add": ["COMMON_PAL"],
RobMeades 14:e7dcf3388403 36 "platform.stdio-convert-newlines": true
RobMeades 14:e7dcf3388403 37 }
RobMeades 14:e7dcf3388403 38 }
RobMeades 14:e7dcf3388403 39 }