2025-03-05 12:51 PM - edited 2025-03-05 2:22 PM
the same interval
there is lag between themHi ,I use stm32f401rct6 board ,I need to generate two pairs of complemdntary pwm signal to drive 4 igbt for dc full bridge converter in soft switching way,
How can achieve two pairs by some leg between them as shown in picture?
Solved! Go to Solution.
2025-03-05 1:16 PM
Hi,
most simple way: just make/set a complementary output with deadtime and adjust the deadtime to get the "gap".
(on advanced timer )
Other way would be "combined PWM" - but F4 dont have this. F303 can do this...or other ...F7 , H7 etc.
2025-03-05 1:16 PM
Hi,
most simple way: just make/set a complementary output with deadtime and adjust the deadtime to get the "gap".
(on advanced timer )
Other way would be "combined PWM" - but F4 dont have this. F303 can do this...or other ...F7 , H7 etc.
2025-03-05 2:26 PM
When set TIM1 CH1 and CH2 to generate two pair of complementary signal there is no lag between them, but I need to make lag as shown in picure
2025-03-05 3:42 PM
Use two different advanced timers, set them to start at the same time through a trigger, but set CNT of one of them to 0 and the other to the delay you want between them.
Can't do it with a single timer.
2025-03-05 3:53 PM
Therefore, my stm32f4 must be changed to another board that has more than one advanced timer