We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 457b6cb commit b2b7a7aCopy full SHA for b2b7a7a
samples/boards/st/uart/circular_dma/boards/nucleo_u575zi_q.overlay
@@ -0,0 +1,16 @@
1
+/*
2
+ * Copyright (c) 2025 STMicroelectronics
3
+ *
4
+ * SPDX-License-Identifier: Apache-2.0
5
+ */
6
+
7
+&usart1 {
8
+ dmas = <&gpdma1 0 25 (STM32_DMA_PERIPH_TX)
9
+ &gpdma1 1 24 (STM32_DMA_MODE_CYCLIC | STM32_DMA_PERIPH_RX | STM32_DMA_MEM_8BITS)>;
10
+ dma-names = "tx", "rx";
11
+ fifo-enable;
12
+};
13
14
+&gpdma1 {
15
+ status = "okay";
16
0 commit comments