1/* 2 * Copyright (c) 2024 David Ullmann 3 * SPDX-License-Identifier: Apache-2.0 4 */ 5 6#include <zephyr/dt-bindings/gpio/gpio.h> 7 8/{ 9 aliases { 10 lora0 = &rylr_lora_modem; 11 }; 12}; 13 14 15&arduino_serial { 16 current-speed = <115200>; 17 status = "okay"; 18 rylr_lora_modem: rylr_lora_modem { 19 compatible = "reyax,rylrxxx"; 20 status = "okay"; 21 reset-gpios = <&arduino_header 16 GPIO_ACTIVE_LOW>; 22 }; 23}; 24