zephyr/boards/shields/nrf7002ek/nrf7002ek_nrf7000.overlay
Chaitanya Tata 051c63f6a9 boards: shields: Add nRF70 series EKs (Evaluation kits)
These shields in the Arduino form factor can be mounted on supported
boards and can provide Wi-Fi6 capability.

Base shield is nRF7002, with variants as nRF7001 (2.4GHz only) and
nRF7000 (dual band scan only).

Signed-off-by: Chaitanya Tata <Chaitanya.Tata@nordicsemi.no>
2024-08-06 10:27:21 +02:00

27 lines
445 B
Text

/*
* Copyright (c) 2024 Nordic Semiconductor ASA
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <freq.h>
/ {
chosen {
zephyr,wifi = &wlan0;
};
};
&arduino_spi {
status = "okay";
nrf70: nrf7002-spi@0 {
compatible = "nordic,nrf7000-spi";
status = "okay";
reg = <0>;
spi-max-frequency = <DT_FREQ_M(8)>;
/* Include common nRF70 overlays */
#include "nrf7002ek_common.dtsi"
#include "nrf7002ek_common_5g.dtsi"
};
};