Commit edca247d authored by Thomas Stranger's avatar Thomas Stranger Committed by Kumar Gala
Browse files

tests: uart_async_api: add nucleo_g474re board



Adds nucleo_g474re board to the uart_async_api test.

Signed-off-by: default avatarThomas Stranger <thomas.stranger@outlook.com>
parent 0baa7d63
Loading
Loading
Loading
Loading
+15 −0
Original line number Diff line number Diff line
/* SPDX-License-Identifier: Apache-2.0 */

&usart1 {
	dmas = <&dmamux1 2 25 0x440 0>,
	       <&dmamux1 1 24 0x480 0>;
	dma-names = "tx", "rx";
};

&dma1 {
	status = "okay";
};

&dmamux1 {
	status = "okay";
};
+2 −1
Original line number Diff line number Diff line
@@ -29,7 +29,8 @@
#define UART_DEVICE_NAME DT_LABEL(DT_NODELABEL(sercom3))
#elif defined(CONFIG_BOARD_ATSAME54_XPRO)
#define UART_DEVICE_NAME DT_LABEL(DT_NODELABEL(sercom1))
#elif defined(CONFIG_BOARD_NUCLEO_G071RB)
#elif defined(CONFIG_BOARD_NUCLEO_G071RB) || \
	defined(CONFIG_BOARD_NUCLEO_G474RE)
#define UART_DEVICE_NAME DT_LABEL(DT_NODELABEL(usart1))
#elif defined(CONFIG_BOARD_NUCLEO_L4R5ZI)
#define UART_DEVICE_NAME DT_LABEL(DT_NODELABEL(usart3))