1/* 2 * Copyright (c) 2022 Nordic Semiconductor ASA 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7&radio { 8 status = "okay"; 9 /* This is an example number of antennas that may be available 10 * on antenna matrix board. 11 */ 12 dfe-antenna-num = <10>; 13 /* This is an example switch pattern that will be used to set an 14 * antenna for Tx PDU (period before start of Tx CTE). 15 */ 16 dfe-pdu-antenna = <0x1>; 17 18 /* These are example GPIO pin numbers that are provided to 19 * Radio peripheral. The pins will be acquired by Radio to 20 * drive antenna switching when AoD is enabled. 21 */ 22 dfegpio0-gpios = <&gpio0 3 0>; 23 dfegpio1-gpios = <&gpio0 4 0>; 24 dfegpio2-gpios = <&gpio0 28 0>; 25 dfegpio3-gpios = <&gpio0 29 0>; 26}; 27