Resolved! STM32 memory to memory DMA with Timer
Hi, I am trying to do MemToMem DMA operation on Timer input capture.My code:#define BufferSize 1000 uint16_t BUFFER_DATA[BufferSize]; TIM_HandleTypeDef htim = htim3; DMA_HandleTypeDef hdma = hdma_tim3_ch4_up; uint32_t channel = TIM_CHANNEL_4; uint3...