Tool/software: Code Composer Studio
I'm bringing up the HET PWM int the TMS570LC4357.
I have enabled the HET1 driver in the enable driver section
I am using the default Input Pin Mux configuration (A13,B13,H4,J4,M3,A9,A3,J17,D6)
Under HET1
I am using the default HET Global timing Config
Under PWM 0-7
I am using 50% cycle and 10000 uS period - slow blink for each of the 8 PWMs
I have selected enable PWM after PWM init
I have selected pins 17, 31,0,25,28,29, 27,5 for each of the PWM "pins" - as eval board documentation said they are the eval board LEDs
I have not adjusted anything in the Pin 0-7, pin 8-15, pin 16-23, pin 24-32 tabs
My code is the following:
hetInit();
pwmStart(hetRAM1,0);
pwmStart(hetRAM1,1);
pwmStart(hetRAM1,2);
pwmStart(hetRAM1,3);
pwmStart(hetRAM1,4);
pwmStart(hetRAM1,5);
pwmStart(hetRAM1,6);
pwmStart(hetRAM1,7);
Is there anything else I should configure as there is no output?