In our design we need to generate multiple PWM signals.
Each of them may have a different duty cycles, but totally it should be 100%.
Non of the signal overlaps with one another.
We already have software based solution (timer interrupt to set/reset IO pin) and it works fine.
But is it possible to do it with hardware PWM to save software overhead ?
It seems with capture and reset/set/toggle function of MSP430,
we can only generte two PWM signals to share a 100% duty cycle: using Output mode 2 and
Output mode 7.
If we use second or third channel TBxCL2 or TBxCL3, it only generates new PWM signal
with different EQU1 point in above picutre,
but not be able to get we want we need: multiple non-overlapping PWM signals.
Any suggestions?