FreeRTOS - how to give ADC and DAC DMA buffers to task?
I'm trying to test reading data from the ADC DMA buffer, and writing it to the DAC DMA buffer, in one of my tasks.ADC_HandleTypeDef hadc2; ADC_HandleTypeDef hadc3; DMA_HandleTypeDef hdma_adc2; DMA_HandleTypeDef hdma_adc3; DAC_HandleTypeDef hdac; DM...