Skip to content

Commit 7f8b74a

Browse files
djiatsaf-stcfriedt
authored andcommitted
tests: drivers: uart: uart_elementary: update configurations
changes test configuration for nucleo_h753zi and nucleo_g071rb - nucleo_g071rb Delete undefined USB node to resolve CI failure. Update CTS and RTS pin signals to avoid another conflict. - nucleo_h753zi Add CTS and RTS pins. - stm32u083c_dk Finally, remove stm32u083c_dk due to pin conflicts (see UM3292 table 14). - update sample.yaml to exclude nucleo_h743zi, which will no longer be available for testing. Also remove stm32u083c_dk from CI testing. Signed-off-by: Fabrice DJIATSA <[email protected]>
1 parent c7b31f3 commit 7f8b74a

File tree

4 files changed

+3
-33
lines changed

4 files changed

+3
-33
lines changed

tests/drivers/uart/uart_elementary/boards/nucleo_g071rb.overlay

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*/
66

77
dut: &usart1 {
8-
pinctrl-0 = <&usart1_tx_pb6 &usart1_rx_pb7 &usart1_rts_pa12 &usart1_cts_pa11>;
8+
pinctrl-0 = <&usart1_tx_pb6 &usart1_rx_pb7 &usart1_rts_pb3 &usart1_cts_pb4>;
99
dmas = <&dmamux1 3 51 STM32_DMA_PERIPH_TX>,
1010
<&dmamux1 4 50 STM32_DMA_PERIPH_RX>;
1111
dma-names = "tx", "rx";
@@ -19,7 +19,3 @@ dut: &usart1 {
1919
&dmamux1 {
2020
status = "okay";
2121
};
22-
23-
&usb {
24-
status = "disabled"
25-
};

tests/drivers/uart/uart_elementary/boards/nucleo_h753zi.overlay

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ dut: &usart2 {
88
dmas = <&dmamux1 2 44 STM32_DMA_PERIPH_TX>,
99
<&dmamux1 3 43 STM32_DMA_PERIPH_RX>;
1010
dma-names = "tx", "rx";
11-
pinctrl-0 = <&usart2_tx_pd5 &usart2_rx_pd6>;
11+
pinctrl-0 = <&usart2_tx_pd5 &usart2_rx_pd6 &usart2_rts_pd4 &usart2_cts_pd3>;
1212
pinctrl-names = "default";
1313
current-speed = <115200>;
1414
hw-flow-control;

tests/drivers/uart/uart_elementary/boards/stm32u083c_dk.overlay

Lines changed: 0 additions & 25 deletions
This file was deleted.

tests/drivers/uart/uart_elementary/testcase.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,9 @@ tests:
3232
- nucleo_f091rc
3333
- nucleo_g071rb
3434
- nucleo_g474re
35-
- nucleo_h743zi
35+
- nucleo_h753zi
3636
- nucleo_l152re
3737
- stm32n6570_dk/stm32n657xx/sb
38-
- stm32u083c_dk
3938
integration_platforms:
4039
- nrf54h20dk/nrf54h20/cpuapp
4140
drivers.uart.uart_elementary_dual_nrf54h:

0 commit comments

Comments
 (0)