1/* 2 * Copyright (c) 2019, NXP 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7/ { 8 chosen { 9 zephyr,ieee802154 = &ieee802154_frdm_cr20a; 10 }; 11}; 12 13&arduino_spi { 14 status = "okay"; 15 16 ieee802154_frdm_cr20a: mcr20a@0 { 17 compatible = "nxp,mcr20a"; 18 reg = <0x0>; 19 spi-max-frequency = <4000000>; 20 irqb-gpios = <&arduino_header 8 21 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)>; /* D2 */ 22 reset-gpios = <&arduino_header 11 GPIO_ACTIVE_LOW>; /* D5 */ 23 status = "okay"; 24 }; 25}; 26