How to start PWM without using HAL
I have initialise the code in Low layer(No HAL).So now i have config the timer channel as PWM generation output and set clock, ARR,duty cycle as per the requirement.
Earlier when I was using HAL, after initialising i can just wrote HAL_TIM_PWM_Start function and it will automatically start the timer as pwm. But now when I'm using Low layer, there is not function for that. So how can i Start the timer in pwm or any mode(output,input compare mode etc.) using the register or any low layer functions.
For ref.- There is a register (TIM1->CR1 |= TIM_CR_CEN ) this will start the timer.
