samples: stm32: Add nucleo_u575zi_q support for circular DMA
Add nucleo_u575zi_q support to samples/boards/st/uart/circular_dma Signed-off-by: Adam Berlinger <adam.berlinger@st.com>
This commit is contained in:
parent
457b6cb427
commit
b2b7a7ab03
1 changed files with 16 additions and 0 deletions
|
@ -0,0 +1,16 @@
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2025 STMicroelectronics
|
||||||
|
*
|
||||||
|
* SPDX-License-Identifier: Apache-2.0
|
||||||
|
*/
|
||||||
|
|
||||||
|
&usart1 {
|
||||||
|
dmas = <&gpdma1 0 25 (STM32_DMA_PERIPH_TX)
|
||||||
|
&gpdma1 1 24 (STM32_DMA_MODE_CYCLIC | STM32_DMA_PERIPH_RX | STM32_DMA_MEM_8BITS)>;
|
||||||
|
dma-names = "tx", "rx";
|
||||||
|
fifo-enable;
|
||||||
|
};
|
||||||
|
|
||||||
|
&gpdma1 {
|
||||||
|
status = "okay";
|
||||||
|
};
|
Loading…
Add table
Add a link
Reference in a new issue