Replies: 1 comment
-
Yes, you are correct, feel free to open a PR. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
The circular DMA sample contains the following DMA configuration for the NUCLEO-C031C6 board in
https://github.com/zephyrproject-rtos/zephyr/blob/main/samples/boards/st/uart/circular_dma/boards/nucleo_c031c6.overlay
<&dmamux1 3 52 (STM32_DMA_PERIPH_RX | STM32_DMA_MEM_8BITS | STM32_DMA_MODE_CYCLIC)>;
This MCU has only 3 channels (0 - 2)
The sample works when changed to:
<&dmamux1 2 52 (STM32_DMA_PERIPH_RX | STM32_DMA_MEM_8BITS | STM32_DMA_MODE_CYCLIC)>;
Beta Was this translation helpful? Give feedback.
All reactions