`checkpatch.pl` requires that dts sources are indented with tabs, fix all the spaces that slipped in while checkpatch wasn't watching. Signed-off-by: Jordan Yates <jordan@embeint.com>
18 lines
280 B
Plaintext
18 lines
280 B
Plaintext
/*
|
|
* Copyright (c) 2024 Croxel, Inc.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/ {
|
|
chosen {
|
|
zephyr,console = &bt_nus_console_uart;
|
|
};
|
|
|
|
bt_nus_console_uart: bt_nus_console_uart {
|
|
compatible = "zephyr,nus-uart";
|
|
rx-fifo-size = <1024>;
|
|
tx-fifo-size = <1024>;
|
|
};
|
|
};
|