Skip to content

Commit 1205b6a

Browse files
khoa-nguyen-18nordicjm
authored andcommitted
[nrf fromtree] tests: drivers: uart: Add support test uart_async for ek_ra8p1
Add support test uart_async_api for Renesas ek_ra8p1 Signed-off-by: Khoa Nguyen <[email protected]> (cherry picked from commit e6f9cd3)
1 parent d2227a1 commit 1205b6a

File tree

1 file changed

+32
-0
lines changed

1 file changed

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

0 commit comments

Comments
 (0)