I want to generate a PWM signal using DMA TIMER, in which the duty cylce should change in very frequently. Till 10 times the Duty Cycle changes with out any issues after which when I increase the array size the waveform is getting not correct. Kindly help
DMA config as below hdma_tim.Instance = TIMx_CC1_DMA_INST; hdma_tim.Init.Channel = DMA_CHANNEL_6; hdma_tim.Init.Direction = DMA_MEMORY_TO_PERIPH; hdma_tim.Init.PeriphInc = DMA_PINC_DISABLE; hdma_tim.Init.MemInc = DMA_MINC_ENABLE; hdma_...