1/* 2 * Copyright (c) 2020 Gerson Fernando Budke <nandojve@gmail.com> 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7/ { 8 chosen { 9 zephyr,ieee802154 = &ieee802154_atmel_rf2xx_xplained; 10 }; 11}; 12 13&xplained1_spi { 14 status = "okay"; 15 16 ieee802154_atmel_rf2xx_xplained: rf2xx@0 { 17 compatible = "atmel,rf2xx"; 18 reg = <0x0>; 19 spi-max-frequency = <6000000>; 20 irq-gpios = <&xplained1_header 2 21 (GPIO_PULL_DOWN | GPIO_ACTIVE_HIGH)>; 22 reset-gpios = <&xplained1_header 0 GPIO_ACTIVE_LOW>; 23 slptr-gpios = <&xplained1_header 3 GPIO_ACTIVE_HIGH>; 24 status = "okay"; 25 }; 26}; 27