1/* 2 * Copyright (c) 2024 Nordic Semiconductor ASA 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6#include <freq.h> 7 8/ { 9 chosen { 10 zephyr,wifi = &wlan0; 11 }; 12}; 13 14&arduino_spi { 15 status = "okay"; 16 17 nrf70: nrf7001-spi@0 { 18 compatible = "nordic,nrf7001-spi"; 19 status = "okay"; 20 reg = <0>; 21 spi-max-frequency = <DT_FREQ_M(8)>; 22 23 /* Include common nRF70 overlays */ 24 #include "nrf7002ek_common.dtsi" 25 }; 26}; 27