zephyr/boards/shields/mikroe_eth_click/mikroe_eth_click.overlay
TOKITA Hiroshi 5be6c1789e boards: shields: mikroe_eth_click: Enable full-duplex
Following the change that replaces ETH_ENC28J60_0_FULL_DUPLEX
by devicetree property.
Enable `full-duplex` explicitly in overlay files.

Signed-off-by: TOKITA Hiroshi <tokita.hiroshi@fujitsu.com>
2023-05-05 16:17:29 +02:00

18 lines
439 B
Plaintext

/* Copyright (c) 2020 Linaro Limited.
* SPDX-License-Identifier: Apache-2.0
*/
&mikrobus_spi {
status = "okay";
eth_click_mikroe_eth_click: eth_click@0 {
compatible = "microchip,enc28j60";
reg = <0x0>;
full-duplex;
local-mac-address = [00 00 00 01 02 03];
/* Errata B7/1 specifies min 8Mhz, 20MHz max according to RM */
spi-max-frequency = <10000000>;
int-gpios = <&mikrobus_header 7 GPIO_ACTIVE_LOW>; /* INT */
};
};