Tool/software:
Hello,
I would like to use the TIMER A3.0 as a PWM output. I have defined the following for this purpose:
void pwmTempLuefter(real outpwm) {
real vCCR0;
P4DIR |= BIT1;
P4SEL0 |= BIT1;
PM5CTL0 |=LOCKLPM5;
vCCR0 = 65500;
TA3CCR0 = (uint16)vCCR0;
TA3CCTL1 = OUTMOD_6; // CCR1 reset/set
TA3CCR1 = (uint16)(vCCR0*outpwm); // CCR1 PWM duty cycle ...Code
The PWM on TIMERB0, for example, works. What is different with TIMER A3.0?
Can anyone help me here?