Skip to main content
YGao.3
Associate
December 29, 2021
Solved

Hi STM32g474 do not have the function "HAL_DMAEx_MultiBufferStart_IT()", i want to realize two DMA buffer for ADC,are there any examples for ping-pong buffer? Thank you

  • December 29, 2021
  • 1 reply
  • 1044 views

..

This topic has been closed for replies.
Best answer by TDK

The STM32G4 doesn't have the double-buffer DMA capability (DBM=1) that some other families do.

You can use a single buffer and use the HT and TC interrupts to process each half of the buffer.

1 reply

TDK
TDKBest answer
Super User
December 29, 2021

The STM32G4 doesn't have the double-buffer DMA capability (DBM=1) that some other families do.

You can use a single buffer and use the HT and TC interrupts to process each half of the buffer.

"If you feel a post has answered your question, please click ""Accept as Solution""."
YGao.3
YGao.3Author
Associate
December 29, 2021

Thank you for reply.