In (STM32F103RB) Advanced-control timers (TIM1), I wonder why PWM signal (TIM1-CH3N) is not generated.
I want to generate a PWM signal through the Timer.
(STM32F104RB) In CubeMX, "channel 3" of timer1 (TIM1) is set to "PWM Generation CH3N", and "channel4" of timer1 is set to "PWM Generation CH4".
The parameter settings are the same as shown below.
(Prescaler 399 / Counter Mode Up / Counter Period 999 / PWM Mode 1 / Pulse 499 / Fast Mode disable / CHN Polarity High / CHN Idle State Reset)
In Atollic TrueSTUDIO, I added the code as below.
HAL_TIM_Base_Start_IT (& htim1);
HAL_TIM_PWM_Start (& htim1, TIM_CHANNEL_3);
HAL_TIM_PWM_Start (& htim1, TIM_CHANNEL_4);
As a result of checking with the oscilloscope, the "TIM1 - CH4" pin (PA11) generates the PWM signal as intended but no signal is generated in the "TIM1 - CH3N" pin (PB15). I do not know how to solve it. I need your help.