tests: drivers: serial: async: Add support for stm32h735g_disco
On the STM32H735G-DK Discovery kit, when connecting a UART from pin PF7 to PF6, the test uart_async_api passes now. Signed-off-by: Benjamin Deuter <benjamin.deuter@gmail.com>
This commit is contained in:
parent
1f03bad7cb
commit
329ef222dd
|
@ -0,0 +1 @@
|
||||||
|
CONFIG_DCACHE=n
|
|
@ -0,0 +1,28 @@
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2021 STMicroelectronics
|
||||||
|
* Copyright (c) 2023 Benjamin Deuter
|
||||||
|
*
|
||||||
|
* SPDX-License-Identifier: Apache-2.0
|
||||||
|
*/
|
||||||
|
|
||||||
|
dut: &uart7 {
|
||||||
|
dmas = <&dmamux1 2 80 STM32_DMA_PERIPH_TX>,
|
||||||
|
<&dmamux1 3 79 STM32_DMA_PERIPH_RX>;
|
||||||
|
dma-names = "tx", "rx";
|
||||||
|
pinctrl-0 = <&uart7_tx_pf7 &uart7_rx_pf6>;
|
||||||
|
pinctrl-names = "default";
|
||||||
|
current-speed = <115200>;
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
&dma1 {
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
&dma2 {
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
&dmamux1 {
|
||||||
|
status = "okay";
|
||||||
|
};
|
Loading…
Reference in a new issue