User Activity

I am trying to generate PWM by using DMA with HAL library: uint16_t buffer[1] = {1500}; ... Status = HAL_TIM_PWM_Start_DMA(&htim2, TIM_CHANNEL_1, (uint32_t *)buffer, 1);however nothing happens. I am able to generate PWM without DMA: TIM2->CCR1 = 5...