starfire151
Joined: 01 Apr 2007 Posts: 196
|
PWM with PIC16LF15325 |
Posted: Thu Apr 03, 2025 9:42 am |
|
|
I've been trying to get the PWM output to work with a PIC16LF15325 but have been unsuccessful.
From the header support file:
#pin_select PWM3=PIN_C0
#use pwm(output=PIN_C0, frequency=15625, bits=10)
From the main program:
setup_pwm3(CCP_PWM);
pwm_set_frequency(10000); // set frequency
pwm_set_duty_percent(200); // 20% duty cycle
pwm_on();
I have tried using PIN_A4 and PIN_C0 as outputs but have not been able to see the PWM output with a scope.
Is there something I'm not setting up correctly?
Thanks. |
|