Originally posted by ivconic
View Post
With the PIC18F4520 you need to set some bits in the CCPxCON register, and also load the PR2 register to define the PWM period.
The equation is: PWM Period = [(PR2) + 1] • 4 • TOSC • (TMR2 Prescale Value)
There are two PWM outputs, and they both use Timer 2.
From the datasheet:
15.4.4
SETUP FOR PWM OPERATION
The following steps should be taken when configuring
the CCP module for PWM operation:
1. Set the PWM period by writing to the PR2 register.
2. Set the PWM duty cycle by writing to the CCPRxL register and CCPxCON<5:4> bits.
3. Make the CCPx pin an output by clearing the appropriate TRIS bit.
4. Set the TMR2 prescale value, then enable Timer2 by writing to T2CON.
5. Configure the CCPx module for PWM operation.
Comment