Skip to content
This repository was archived by the owner on Apr 24, 2019. It is now read-only.

Push IPvx printout to easy-connect.h #246

Merged
merged 1 commit into from
May 11, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -313,12 +313,12 @@ To build the example using mbed CLI:

If you are using either of the following configurations remember to copy .mbedignore as well:

```
```
configs/eth_*
configs/wifi_*
```
```

```
```
cp configs/eth-wifi-mbedignore ./.mbedignore
```

Expand Down Expand Up @@ -351,7 +351,8 @@ The application prints debug messages over the serial port, so you can monitor i
After connecting, you should see messages about connecting to mbed Device Connector:

```
Starting mbed Client example in IPv4 mode
Starting mbed Client example
[EasyConnect] IPv4 mode
[EasyConnect] Using Ethernet
[EasyConnect] Connected to Network successfully
[EasyConnect] IP address 192.168.8.110
Expand Down
2 changes: 1 addition & 1 deletion easy-connect.lib
Original file line number Diff line number Diff line change
@@ -1 +1 @@
https://github.com/ARMmbed/easy-connect/#6fb5842becaefd360f57916a587b5a0ffdc45ff0
https://github.com/ARMmbed/easy-connect/#d827cdb1c3fb5a419b721646a2e1fc49fbd3fdf0
7 changes: 1 addition & 6 deletions main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -358,12 +358,7 @@ Add MBEDTLS_NO_DEFAULT_ENTROPY_SOURCES and MBEDTLS_TEST_NULL_ENTROPY in mbed_app
// Keep track of the main thread
mainThread = osThreadGetId();

printf("\nStarting mbed Client example in ");
#if defined (MESH) || (MBED_CONF_LWIP_IPV6_ENABLED==true)
printf("IPv6 mode\n");
#else
printf("IPv4 mode\n");
#endif
printf("\nStarting mbed Client example\n");

mbed_trace_init();

Expand Down