This is an example based on mbed-os
cellular APIs that demonstrates a TCP or UDP echo transaction with a public echo server.
This particular cellular application uses a cellular network and network-socket APIs that are part of mbed-os
.
The program uses a generic cellular modem driver using an external IP stack (LWIP) standard 3GPP AT 27.007 AT commands to setup the cellular modem and registers to the network.
After registration, the driver opens a point-to-point protocol (PPP) pipe using LWIP with the cellular modem and connects to internet. This driver currently supports UART data connection type only between your cellular modem and MCU.
For more information on ARM mbed OS cellular APIs and porting guide, please visit the mbed OS cellular documentation.
$ mbed import mbed-os-example-cellular
$ cd mbed-os-example-cellular
#OR
$ git clone [email protected]:ARMmbed/mbed-os-example-cellular.git
$ cd mbed-os-example-cellular
See the file mbed_app.json
in the root directory of your application. This file contains all the user specific configurations your application needs. Provide the pin code for your SIM card, as well as any APN settings if needed. For example:
"sim-pin-code": {
"help": "SIM PIN code",
"value": "\"1234\""
},
"apn": {
"help": "The APN string to use for this SIM/network, set to 0 if none",
"value": "\"internet\""
},
"username": {
"help": "The user name string to use for this APN, set to zero if none",
"value": 0
},
"password": {
"help": "The password string to use for this APN, set to 0 if none",
"value": 0
}
You can choose which socket type the application should use. For example:
"sock-type": "TCP",
If you like details and wish to know about all the AT interactions between the modem and your driver, turn on the modem AT echo trace. Set the modem_trace
field value to be true.
"modem_trace": {
"help": "Turns AT command trace on/off from the cellular modem, defaults to off",
"value": true
},
The generic cellular modem driver this application uses was written using only a standard AT command set. It uses PPP with an mbed-supported external IP stack. These abilities make the driver essentially generic, or nonvendor specific. However, this particular driver is for onboard-modem types. In other words, the modem exists on the mbed Enabled target as opposed to plug-in modules (shields). For more details, please see our mbed OS cellular documentation.
Examples of mbed Enabled boards with onboard modem chips include u-blox C027 and MultiTech MTS Dragonfly.
Use mbed CLI commands to generate a binary for the application. For example, in the case of GCC, use the following command:
$ mbed compile -m YOUR_TARGET_WITH_MODEM -t GCC_ARM
Drag and drop the application binary from BUILD/YOUR_TARGET_WITH_MODEM/GCC_ARM/mbed-os-example-cellular.bin
to your mbed Enabled target hardware, which appears as a USB device on your host machine.
Attach a serial console emulator of your choice (for example, PuTTY, Minicom or screen) to your USB device. Set the baudrate to 115200, and reset your board by pressing the reset button.
You should see an output similar to this:
mbed-os-example-cellular, Connecting...
Connection Established.
UDP: Sent 4 Bytes to echo.u-blox.com
Received from echo server 4 Bytes
Success. Exiting