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 support@ccsinfo.com

[SOLVED] Software method for low frequency PWM

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



Joined: 28 Apr 2020
Posts: 22

View user's profile Send private message

[SOLVED] Software method for low frequency PWM
PostPosted: Mon Oct 26, 2020 11:01 am     Reply with quote

Hi everyone,
I would like to ask for your help on this problem. I am trying to generate 50Hz PWM pulse for controlling hobby servo.
I've already tried the method stated by Ttelmah and PCM Programmer in those topics:

http://www.ccsinfo.com/forum/viewtopic.php?t=17993
http://www.ccsinfo.com/forum/viewtopic.php?t=20050

The above method used timer0. I modify the code to see if we could use timer1 as an alternative but it doesn't work as expected. My idea is to preload timer1 value 65280 so that it would count to 65536 (256 times) like timer0. However, the output pulse is fluctuated at 0 and 1Hz.

My code is as follows:
Code:
#include <16F877A.H>
#fuses XT, NOWDT, NOPROTECT, BROWNOUT, PUT, NOLVP
#use delay(clock = 4000000)
#define PWM_PIN  PIN_B1
#define LOOPCNT 78;
int8 width;

#INT_TIMER1
void tick(void);

void main(void){
width=20;
set_timer1(65280);
setup_timer_1(T1_INTERNAL|T1_DIV_BY_1);
enable_interrupts(GLOBAL);
enable_interrupts(INT_TIMER1);

while(TRUE);
}

#INT_TIMER1
void tick(void){
static int8 loop = LOOPCNT;
static int8 pulse = width;

if(--loop == 0)
  {
   loop = LOOPCNT;
   pulse = width;
  }

if(pulse)
  {
   output_high(PWM_PIN);
   pulse--;
  }
else
  {
   output_low(PWM_PIN);
  }
}


Thank you very much for your time.


Last edited by S1gnature on Tue Oct 27, 2020 7:13 am; edited 1 time in total
gaugeguy



Joined: 05 Apr 2011
Posts: 288

View user's profile Send private message

PostPosted: Mon Oct 26, 2020 11:33 am     Reply with quote

set_timer1(65280) does not set a preload value. It does a one time set of the timer value.
PCM programmer



Joined: 06 Sep 2003
Posts: 21708

View user's profile Send private message

PostPosted: Mon Oct 26, 2020 11:52 am     Reply with quote

Add this line at the start of your #int_timer1 isr:
Code:
set_timer1(PRELOAD + get_timer1()); 


Put this line above main():
Code:
#define PRELOAD 65280
Ttelmah



Joined: 11 Mar 2010
Posts: 19217

View user's profile Send private message

PostPosted: Mon Oct 26, 2020 12:10 pm     Reply with quote

Look at this approach instead, which uses the CCP:

<http://www.ccsinfo.com/forum/viewtopic.php?t=50914&highlight=servo>

This gives much less resources used and more accurate timings.
S1gnature



Joined: 28 Apr 2020
Posts: 22

View user's profile Send private message

PostPosted: Tue Oct 27, 2020 7:13 am     Reply with quote

Thank you all!
I have tried both methods and they worked well.
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