zephyr/samples/net/sockets/echo_client/arduino_101.overlay
Jukka Rissanen f626c3ccbe samples: net: sockets: Add smoke testing support
The net-app based echo-server/client applications were used for
various smoke testing purposes. As those two apps are now removed
we need to introduce the same support into sockets based echo-client
and echo-server applications.

Fixes #13300 #13481

Signed-off-by: Jukka Rissanen <jukka.rissanen@linux.intel.com>
2019-02-18 15:10:01 -05:00

22 lines
381 B
Plaintext

/*
* Copyright (c) 2018-2019 Linaro Limited
*
* SPDX-License-Identifier: Apache-2.0
*/
&spi1 {
status = "ok";
cs-gpios = <&gpio0 0 0>;
enc28j60@0 {
compatible = "microchip,enc28j60";
spi-port-name = "SPI_1";
local-mac-address = [00 00 00 00 00 00];
spi-max-frequency = <128000>;
int-gpios = <&gpio0 19 1>;
status = "ok";
label = "ETH_0";
reg = <0>;
};
};