User Activity

Hello.I want to integrate ADC with DMA, and calculate the average count of all convertions.I'm using the following code:In adc.c:```if(HAL_ADC_PollForConversion(&hadc1, 10) == HAL_OK) {uint16_t value = HAL_ADC_GetValue(&hadc1);USART_Send("%.3f", valu...
Kudos given to