This commit adds the asynchronous UART API testing support on the nucleo_l4r5zi board. The usart3 module is used as the secondary loop-back UART, which is required to run this test. Signed-off-by: Shlomi Vaknin <shlomi.39sd@gmail.com>
16 lines
204 B
Plaintext
16 lines
204 B
Plaintext
/* SPDX-License-Identifier: Apache-2.0 */
|
|
|
|
&usart3 {
|
|
dmas = <&dmamux1 5 29 0x440 0>,
|
|
<&dmamux1 4 28 0x480 0>;
|
|
dma-names = "tx", "rx";
|
|
};
|
|
|
|
&dma1 {
|
|
status = "okay";
|
|
};
|
|
|
|
&dmamux1 {
|
|
status = "okay";
|
|
};
|