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>
12 lines
161 B
Plaintext
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";
|
|
};
|