Skip to content

Commit 39bf000

Browse files
tests: drivers: uart: Add support test UART for ek_ra4c1
Add support test app ``uart_async_api`` for Renesas ek_ra4c1 board Signed-off-by: Khoa Nguyen <[email protected]>
1 parent 9046637 commit 39bf000

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
/*
2+
* Copyright (c) 2025 Renesas Electronics Corporation
3+
* SPDX-License-Identifier: Apache-2.0
4+
*/
5+
6+
&pinctrl {
7+
sci9_default: sci9_default {
8+
group1 {
9+
/* tx rx */
10+
psels = <RA_PSEL(RA_PSEL_SCI_9, 1, 9)>,
11+
<RA_PSEL(RA_PSEL_SCI_9, 1, 10)>;
12+
};
13+
};
14+
};
15+
16+
&sci9 {
17+
pinctrl-0 = <&sci9_default>;
18+
pinctrl-names = "default";
19+
interrupts = <60 1>, <61 1>, <62 1>, <63 1>;
20+
interrupt-names = "rxi", "txi", "tei", "eri";
21+
status = "okay";
22+
23+
dut: uart {
24+
current-speed = <115200>;
25+
status = "okay";
26+
};
27+
};

0 commit comments

Comments
 (0)