Commit 824bc6cf authored by Guillaume Gautier's avatar Guillaume Gautier Committed by Benjamin Cabé
Browse files

tests: drivers: uart: async_api: add stm32n6 boards overlays



Add UART test overlays for Nucleo N657x0-Q and STM32N6570 DK boards.
Remove non serial boot conf file since they are now unnecessary.

Signed-off-by: default avatarGuillaume Gautier <guillaume.gautier-ext@st.com>
parent b4d79954
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
CONFIG_DCACHE=n
CONFIG_NOCACHE_MEMORY=y
CONFIG_TEST_USERSPACE=n
+15 −0
Original line number Diff line number Diff line
/*
 * Copyright (c) 2025 STMicroelectronics
 *
 * SPDX-License-Identifier: Apache-2.0
 */

dut: &usart3 {
	dmas = <&gpdma1 0 112 STM32_DMA_PERIPH_TX
		&gpdma1 1 111 STM32_DMA_PERIPH_RX>;
	dma-names = "tx", "rx";
};

&gpdma1 {
	status = "okay";
};
+2 −1
Original line number Diff line number Diff line
CONFIG_DCACHE=n
CONFIG_NOCACHE_MEMORY=y
CONFIG_TEST_USERSPACE=n
+15 −0
Original line number Diff line number Diff line
/*
 * Copyright (c) 2025 STMicroelectronics
 *
 * SPDX-License-Identifier: Apache-2.0
 */

dut: &usart2 {
	dmas = <&gpdma1 0 110 STM32_DMA_PERIPH_TX
		&gpdma1 1 109 STM32_DMA_PERIPH_RX>;
	dma-names = "tx", "rx";
};

&gpdma1 {
	status = "okay";
};