Commit e44a7684 authored by Thao Luong's avatar Thao Luong Committed by Benjamin Cabé
Browse files

tests: drivers: uart: Add dts node for ek_ra4l1



Add dts node for ek_ra4l1 run on uart_async_api

Signed-off-by: default avatarThao Luong <thao.luong.uw@renesas.com>
parent 5a2ee872
Loading
Loading
Loading
Loading
+25 −0
Original line number Diff line number Diff line
/*
 * Copyright (c) 2025 Renesas Electronics Corporation
 * SPDX-License-Identifier: Apache-2.0
 */

&pinctrl {
	sci9_default: sci9_default {
		group1 {
			/* tx rx */
			psels = <RA_PSEL(RA_PSEL_SCI_9, 5, 10)>,
			<RA_PSEL(RA_PSEL_SCI_9, 5, 11)>;
		};
	};
};

&sci9 {
	pinctrl-0 = <&sci9_default>;
	pinctrl-names = "default";
	status = "okay";

	dut: uart {
		current-speed = <115200>;
		status = "okay";
	};
};