zephyr/tests/drivers/uart/uart_async_api/boards/nucleo_f103rb.overlay
Francois Ramu bd9182887a tests: drivers: uart asynch test with overlay for each stm32 board
Based on the new bindings for the stm32 dma feature,
the overlay for enabling the dma on uart client is modified.

Signed-off-by: Francois Ramu <francois.ramu@st.com>
2021-07-22 04:52:53 -04:00

12 lines
161 B
Plaintext

/* SPDX-License-Identifier: Apache-2.0 */
&usart1 {
dmas = <&dma1 4 0x440>,
<&dma1 5 0x480>;
dma-names = "tx", "rx";
};
&dma1 {
status = "okay";
};