Add support test app uart_async_api for fpb_ra4e1 and voice_ra4e1 boards Signed-off-by: Khoa Nguyen <khoa.nguyen.xh@renesas.com>
29 lines
445 B
Plaintext
29 lines
445 B
Plaintext
/*
|
|
* 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, 1, 9)>,
|
|
<RA_PSEL(RA_PSEL_SCI_9, 1, 10)>;
|
|
};
|
|
};
|
|
};
|
|
|
|
&spi0 {
|
|
status = "disabled";
|
|
};
|
|
|
|
&sci9 {
|
|
pinctrl-0 = <&sci9_default>;
|
|
pinctrl-names = "default";
|
|
status = "okay";
|
|
dut: uart {
|
|
current-speed = <115200>;
|
|
status = "okay";
|
|
};
|
|
};
|