1/*
2 * Copyright 2024 NXP
3 * SPDX-License-Identifier: Apache-2.0
4 */
5
6/ {
7	chosen {
8		zephyr,shell-uart = &uart1;
9	};
10};
11
12/* This configuration is to test "UART" driver
13 * UART1_RX_PTC16(J4->10)
14 * UART1_TX_PTC17(J4->12)
15 */
16
17&uart1 {
18	status = "okay";
19	pinctrl-0 = <&uart1_default>;
20	pinctrl-names = "default";
21	current-speed = <115200>;
22};
23