User Activity

Hi, I'm pretty new to stm32.My goal is to use HAL_TIM_Encoder_Start() , HAL_TIM_Encoder_Start_DMA(), HAL_TIM_Encoder_Start_IT() commands from Hal library. I have the stm32f407 Discovery board.in polling mode//-----------------------------------------...
uint32_t dma_buffer_for_adc; uint32_t adc_value_1;   void HAL_ADC_ConvCpltCallback(ADC_HandleTypeDef* hadc) { adc_value_1 = dma_buffer_for_adc ;// }   HAL_ADC_Start_DMA (&hadc1, &dma_buffer_for_adc, 1);here I have implemented a single channel contin...