You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 24, 2019. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+5-6Lines changed: 5 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -26,8 +26,8 @@ The application:
26
26
* K64F (Ethernet)
27
27
* NUCLEO_F429ZI (Ethernet)
28
28
* UBLOX_EVK_ODIN_W2 (WiFi & Ethernet - use the supplied `configs/eth_v4.json` for Ethernet)
29
-
* K64F + GROVE SEEED shield (Wifi)
30
-
* NUCLEO_F429ZI + GROVE SEEED shield (Wifi)
29
+
* K64F + GROVE SEEED shield (WiFi)
30
+
* NUCLEO_F429ZI + GROVE SEEED shield (WiFi)
31
31
32
32
Apart from this, this example can work on other mbed OS supported hardware boards which support any of the given network interface including Ethernet, WiFi, Mesh (6LoWPAN) or Thread, provided the configuration fulfills condition that the target hardware has TLS entropy implemented for it and the complete example configuration of mbed Client, selected network interface and mbed OS components fits into hardware's given memory size (Flash size and RAM size).
33
33
@@ -86,7 +86,7 @@ To register the application with the Connector service, you need to create and s
86
86
87
87
First, you need to select the RF driver to be used by the 6LoWPAN/Thread stack. This example supports [AT86RF233/212B](https://github.com/ARMmbed/atmel-rf-driver) and [NXP-MCR20a](https://github.com/ARMmbed/mcr20a-rf-driver) radio shields.
88
88
89
-
To add the Atmel driver to you application from command line, call: `mbed add https://github.com/ARMmbed/atmel-rf-driver`.
89
+
To add the Atmel driver to your application from the command line, call: `mbed add https://github.com/ARMmbed/atmel-rf-driver`.
90
90
Please make sure that the `mbed_app.json` file points to the correct radio driver type:
91
91
92
92
```json
@@ -234,8 +234,7 @@ For example, NUCLEO_F401RE requires a different serial connection:
234
234
235
235
### IP address setup
236
236
237
-
This example uses IPv4 to communicate with the [mbed Device Connector Server](https://api.connector.mbed.com) except for 6LoWPAN ND and Thread. However, you can easily change it to IPv6
238
-
by changing the mbed_app.json you make:
237
+
This example uses IPv4 to communicate with the [mbed Device Connector Server](https://api.connector.mbed.com) except for 6LoWPAN ND and Thread. However, you can easily change it to IPv6 by changing the `mbed_app.json` you make:
239
238
```
240
239
"target_overrides": {
241
240
"*": {
@@ -245,7 +244,7 @@ by changing the mbed_app.json you make:
245
244
"mbed-trace.enable": 0
246
245
}
247
246
```
248
-
by modifying the ipv4-enable or ipv6-enable to true/false. Only one should be true.
247
+
by modifying the `ipv4-enabled` or `ipv6-enabled` to `true/false`. Only one should be true.
249
248
250
249
The example program should automatically get an IP address from the router when connected over Ethernet or WiFi.
0 commit comments