How to change DMA srcAddress
I’ve created a SPI peripheral as a slave in transmit-only mode. It operates in circular mode DMA and generates a complete callback every 20 milliseconds. Upon receiving the complete callback, I want to modify the source address of the DMA request.Currently, I achieve this by aborting the SPI and then initiating a new DMA transfer with the updated address configuration.
Why do I need to change the DMA Source Address?I’m implementing a ring buffer pointer.
Note: I’ve utilized the HAL framework for this implementation.
