CCS C Software and Maintenance Offers
FAQFAQ   FAQForum Help   FAQOfficial CCS Support   SearchSearch  RegisterRegister 

ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

CCS does not monitor this forum on a regular basis.

Please do not post bug reports on this forum. Send them to CCS Technical Support

PWM with PIC16LF15325

 
Post new topic   Reply to topic    CCS Forum Index -> General CCS C Discussion
View previous topic :: View next topic  
Author Message
starfire151



Joined: 01 Apr 2007
Posts: 197

View user's profile Send private message

PWM with PIC16LF15325
PostPosted: Thu Apr 03, 2025 9:42 am     Reply with quote

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.
temtronic



Joined: 01 Jul 2010
Posts: 9446
Location: Greensville,Ontario

View user's profile Send private message

PostPosted: Thu Apr 03, 2025 3:51 pm     Reply with quote

It seems simple, so post your program so others can copy/paste/compile/test !
'bits and pieces' don't show us the whole story....

also, does the PIC run a '1Hz LED program ' ??
starfire151



Joined: 01 Apr 2007
Posts: 197

View user's profile Send private message

PostPosted: Thu Apr 03, 2025 4:15 pm     Reply with quote

.h file:

Code:

#include <16LF15325.h>

#device adc=10       // 10-bit ADC => 1024 steps
#device *=16

#define clk_freq 16M
#use delay(internal=clk_freq)

#pin_select PWM3=PIN_C0
#use pwm(output=PIN_C0, frequency=15625, bits=10)


.c file:
Code:

#include <pwm_16LF15325_test.h>

void main()
{
   setup_timer_2(T2_DIV_BY_1, 127, 1);
   
   setup_pwm3(CCP_PWM);
   pwm_set_frequency(10000);   // set frequency
   pwm_set_duty_percent(200);  // 20% duty cycle

   while(TRUE)
   {
      
   }
}


I also tried to use the wizard to generate a baseline program with the pwm but it was not successful, either.

Thanks for looking at it...
Ttelmah



Joined: 11 Mar 2010
Posts: 19766

View user's profile Send private message

PostPosted: Fri Apr 04, 2025 3:28 am     Reply with quote

You are 'overpecifying things'. Normally the compiler will accept this, but
I suspect this is resulting in things not working:
Code:

#include <16LF15325.h>

#device adc=10       // 10-bit ADC => 1024 steps
#device *=16

#define clk_freq 16M
#use delay(internal=clk_freq)

#pin_select PWM3=PIN_C0
#use pwm(PWM3, frequency=15625)
//You have already specified where PWM3 is to go.
//Also specifying 'bits', implies that the frequency may be adjusted if
//needed to give this. Just specify the frequency and the compiler will
//tell you how many bits it can achieve.

void main()
{
   setup_timer_2(T2_DIV_BY_1, 127, 1);
   
   //setup_pwm3(CCP_PWM);
   //You have already setup pwm3. Don't do it again. This setup is almost
   //certainly what is stopping the  PWM. This is a dedicated PWM, _not_
   //A CCP.  CCP_PWM, is not an acceptable setting for the PWM module
   //If you look at the header file, this is not listed as a parameter for
   //this PWM.... You are using a command for the CCP peripheral
   //on the PWM. Result disaster.......
   //It'll actually turn off the enable bit for the PWM.....
   //You must _never_ use command words for the wrong peripheral.

   //This is exactly like putting diesel in a petrol car......

   pwm_set_frequency(10000);   // set frequency
   pwm_set_duty_percent(200);  // 20% duty cycle

   while(TRUE)
   {
     
   }
}
Display posts from previous:   
Post new topic   Reply to topic    CCS Forum Index -> General CCS C Discussion All times are GMT - 6 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group