This is a simple mbed client example demonstrating, registration of a device with mbed Device Connector and reading and writing values as well as deregistering on different Network Interfaces including Ethernet, WiFi, 6LoWPAN ND and Thread respectively.

Fork of mbed-os-example-client by mbed-os-examples

Committer:
mbed_official
Date:
Wed Feb 15 08:00:11 2017 +0000
Revision:
63:c73f78fd7982
Integrate easy-connect, fix serial, fix warning (#176)

Integrate easy-connect
- we can remove all the external RF-drivers from main folder
- get easy-connect into use
- remove all the complicated network stuff

Fix serial - we don't need raw serial and we don't need to initialize it
if we set the right stuff to mbed_app.json (added). Plain printf() works
and it even does type checking now. (Points to Kevin Bracey on this).

Start the thread in a non-deprecated way using callback to remove one compiler
warning (again, points to Kevin Bracey).

Easy-connect ESP8266 TX/RX pins in different defines.
mbed-os-example-client has NEVER used 2 sets of WiFi pins, so need
to add a define to hack them into one set - otherwise it will not compile.

The cp command would not have worked if one would have changed
the compiler. Add UBLOX ODIN ETH config to be built as well,
now that we have figured out how to make the the ethernet work
on it.

Change also the WIFI to work with easy-connect. Easy-connect has 2 separate WIFIs,
so you have to choose between ESP8266 vs. ODIN. Thus, 2 config files are also needed,
one for ESP8266 and one for ODIN.

.
Commit copied from https://github.com/ARMmbed/mbed-os-example-client

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mbed_official 63:c73f78fd7982 1 {
mbed_official 63:c73f78fd7982 2 "config": {
mbed_official 63:c73f78fd7982 3 "network-interface":{
mbed_official 63:c73f78fd7982 4 "help": "Options are ETHERNET, WIFI_ESP8266, WIFI_ODIN, MESH_LOWPAN_ND, MESH_THREAD",
mbed_official 63:c73f78fd7982 5 "value": "WIFI_ESP8266"
mbed_official 63:c73f78fd7982 6 },
mbed_official 63:c73f78fd7982 7 "wifi-ssid": {
mbed_official 63:c73f78fd7982 8 "help": "WiFi SSID",
mbed_official 63:c73f78fd7982 9 "value": "\"SSID\""
mbed_official 63:c73f78fd7982 10 },
mbed_official 63:c73f78fd7982 11 "wifi-password": {
mbed_official 63:c73f78fd7982 12 "help": "WiFi Password",
mbed_official 63:c73f78fd7982 13 "value": "\"Password\""
mbed_official 63:c73f78fd7982 14 },
mbed_official 63:c73f78fd7982 15 "wifi-tx": {
mbed_official 63:c73f78fd7982 16 "help": "TX pin for serial connection to external device",
mbed_official 63:c73f78fd7982 17 "value": "D1"
mbed_official 63:c73f78fd7982 18 },
mbed_official 63:c73f78fd7982 19 "wifi-rx": {
mbed_official 63:c73f78fd7982 20 "help": "RX pin for serial connection to external device",
mbed_official 63:c73f78fd7982 21 "value": "D0"
mbed_official 63:c73f78fd7982 22 }
mbed_official 63:c73f78fd7982 23 },
mbed_official 63:c73f78fd7982 24 "macros": ["MBEDTLS_USER_CONFIG_FILE=\"mbedtls_mbed_client_config.h\""],
mbed_official 63:c73f78fd7982 25 "target_overrides": {
mbed_official 63:c73f78fd7982 26 "*": {
mbed_official 63:c73f78fd7982 27 "target.features_add": ["LWIP", "COMMON_PAL"],
mbed_official 63:c73f78fd7982 28 "platform.stdio-baud-rate": 115200,
mbed_official 63:c73f78fd7982 29 "platform.stdio-convert-newlines": true,
mbed_official 63:c73f78fd7982 30 "lwip.ipv4-enabled": true,
mbed_official 63:c73f78fd7982 31 "lwip.ipv6-enabled": false,
mbed_official 63:c73f78fd7982 32 "mbed-trace.enable": 0
mbed_official 63:c73f78fd7982 33 },
mbed_official 63:c73f78fd7982 34 "NUCLEO_F401RE": {
mbed_official 63:c73f78fd7982 35 "wifi-tx": "PA_11",
mbed_official 63:c73f78fd7982 36 "wifi-rx": "PA_12"
mbed_official 63:c73f78fd7982 37 },
mbed_official 63:c73f78fd7982 38 "NUCLEO_F411RE": {
mbed_official 63:c73f78fd7982 39 "wifi-tx": "PA_11",
mbed_official 63:c73f78fd7982 40 "wifi-rx": "PA_12"
mbed_official 63:c73f78fd7982 41 }
mbed_official 63:c73f78fd7982 42 }
mbed_official 63:c73f78fd7982 43 }