1/*
2 * Copyright 2023 NXP
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7/ {
8	chosen {
9		zephyr,bt-hci = &bt_hci_uart;
10	};
11};
12
13&lpuart3 {
14	status = "okay";
15	current-speed = <3000000>;
16	hw-flow-control;
17
18	bt_hci_uart: bt_hci_uart {
19		compatible = "zephyr,bt-hci-uart";
20		status = "okay";
21	};
22};
23