Skip to content

Commit fc43629

Browse files
khoa-nguyen-18kartben
authored andcommitted
tests: drivers: uart: Add support uart_async_api for ek_ra4m1
Add support uart_async_api to run test app on ek_ra4m1 board Signed-off-by: Khoa Nguyen <[email protected]>
1 parent 0c277e7 commit fc43629

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
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, 6, 2)>,
11+
<RA_PSEL(RA_PSEL_SCI_9, 6, 1)>;
12+
};
13+
};
14+
};
15+
16+
&sci9 {
17+
pinctrl-0 = <&sci9_default>;
18+
pinctrl-names = "default";
19+
interrupts = <28 1>, <29 1>, <30 1>, <31 1>;
20+
interrupt-names = "rxi", "txi", "tei", "eri";
21+
status = "okay";
22+
dut: uart {
23+
current-speed = <115200>;
24+
status = "okay";
25+
};
26+
};

0 commit comments

Comments
 (0)