Skip to content

Commit 933b5fd

Browse files
committed
tests: drivers: uart: uart_async_api: add support for nucleo_h753zi
- add .conf and .overlay with appropriate configurations for nucleo_h753zi - update testcase.yaml file for CI testing Signed-off-by: Fabrice DJIATSA <[email protected]>
1 parent 8d95b94 commit 933b5fd

File tree

3 files changed

+31
-1
lines changed

3 files changed

+31
-1
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
CONFIG_DCACHE=n
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
/*
2+
* Copyright (c) 2025 STMicroelectronics
3+
*
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
6+
7+
dut: &usart2 {
8+
dmas = <&dmamux1 2 44 STM32_DMA_PERIPH_TX>,
9+
<&dmamux1 3 43 STM32_DMA_PERIPH_RX>;
10+
dma-names = "tx", "rx";
11+
pinctrl-0 = <&usart2_tx_pd5 &usart2_rx_pd6>;
12+
pinctrl-names = "default";
13+
current-speed = <115200>;
14+
status = "okay";
15+
};
16+
17+
&dma1 {
18+
status = "okay";
19+
};
20+
21+
&dma2 {
22+
status = "okay";
23+
};
24+
25+
&dmamux1 {
26+
status = "okay";
27+
};

tests/drivers/uart/uart_async_api/testcase.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,9 @@ tests:
3535
extra_configs:
3636
- CONFIG_UART_WIDE_DATA=y
3737
arch_allow: arm
38-
platform_allow: nucleo_h743zi
38+
platform_allow:
39+
- nucleo_h743zi
40+
- nucleo_h753zi
3941
integration_platforms:
4042
- nucleo_h753zi
4143
drivers.uart.async_api.nrf_uart:

0 commit comments

Comments
 (0)