Skip to content

Commit ac13a6c

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 3cbcd32 commit ac13a6c

File tree

3 files changed

+29
-1
lines changed

3 files changed

+29
-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: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
/*
2+
* SPDX-License-Identifier: Apache-2.0
3+
*/
4+
5+
dut: &usart2 {
6+
dmas = <&dmamux1 2 44 STM32_DMA_PERIPH_TX>,
7+
<&dmamux1 3 43 STM32_DMA_PERIPH_RX>;
8+
dma-names = "tx", "rx";
9+
pinctrl-0 = <&usart2_tx_pd5 &usart2_rx_pd6>;
10+
pinctrl-names = "default";
11+
current-speed = <115200>;
12+
status = "okay";
13+
};
14+
15+
&dma1 {
16+
status = "okay";
17+
};
18+
19+
&dma2 {
20+
status = "okay";
21+
};
22+
23+
&dmamux1 {
24+
status = "okay";
25+
};

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_h743zi
4143
drivers.uart.async_api.nrf_uart:

0 commit comments

Comments
 (0)