mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-16 02:11:56 +00:00
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>
22 lines
381 B
Plaintext
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>;
|
|
};
|
|
};
|