Is there a HAL_ADC_Stop_DMA() alternative to be able to start second transfer using HAL_ADC_Start_DMA() for single conversion?
Using a STM32F413 and ADC HAL drivers.After a successfully completed single conversion initiated by HAL_ADC_Start_DMA() one apparently needs to call HAL_ADC_Stop_DMA() in order for next HAL_ADC_Start_DMA() to actually start a new transfer. There are ...