1/*
2 * Copyright (c) 2024 STMicroelectronics
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7/ {
8	chosen {
9		zephyr,bt-hci = &bt_hci_uart;
10	};
11};
12
13&arduino_serial {
14	current-speed = <921600>;
15
16	bt_hci_uart: bt_hci_uart {
17		compatible = "zephyr,bt-hci-uart";
18		status = "okay";
19	};
20};
21