1/* 2 * Copyright (c) 2024 Ian Morris 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7/ { 8 chosen { 9 zephyr,bt-hci = &bt_hci_uart; 10 }; 11}; 12 13&mikrobus_serial { 14 status = "okay"; 15 16 bt_hci_uart: bt_hci_uart { 17 compatible = "zephyr,bt-hci-uart"; 18 status = "okay"; 19 20 da1453x { 21 compatible = "renesas,bt-hci-da1453x"; 22 reset-gpios = <&mikrobus_header 1 GPIO_ACTIVE_HIGH>; 23 status = "okay"; 24 }; 25 }; 26}; 27