1/*
2 * Copyright (c) 2024 Croxel, Inc.
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7/ {
8	chosen {
9		zephyr,console = &bt_nus_console_uart;
10		zephyr,shell-uart = &bt_nus_console_uart;
11	};
12
13	bt_nus_console_uart: bt_nus_console_uart {
14		compatible = "zephyr,nus-uart";
15		rx-fifo-size = <1024>;
16		tx-fifo-size = <1024>;
17	};
18};
19