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

CCP1 Half bridge waveforms question

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



Joined: 12 Jan 2016
Posts: 2
Location: mumbai

View user's profile Send private message

CCP1 Half bridge waveforms question
PostPosted: Wed Jan 13, 2016 12:33 am     Reply with quote

Dear all I'm new in this programing.

In my ccp1 half bridge programing I'm getting in my SCOPE waveform result like this:

P1A: ___|--|___
P1B: ----|__|----

but I actually want it like this:

P1A: ____|--|___
P1B: |--|_____|--|___


My humble request is that please help me some one.

my Code is:
Code:

void main()
{
long value,value1;

while( 1 )
  //if (INPUT(PIN_B0)==0)
  {
   setup_ccp1(CCP_PWM_L_H | CCP_PWM_HALF_BRIDGE);
   setup_timer_2(T2_DIV_BY_4,99,1);
   
   setup_adc_ports(AN0_TO_AN1);
   setup_adc(ADC_CLOCK_INTERNAL);
   
   set_adc_channel(1);
   value=read_adc();
   value1=read_adc();
   set_pwm1_duty(value);
  }

}
Ttelmah



Joined: 11 Mar 2010
Posts: 19359

View user's profile Send private message

PostPosted: Wed Jan 13, 2016 2:11 am     Reply with quote

WHAT PIC....

Makes a huge difference to the options available.
peter.rebeiro



Joined: 12 Jan 2016
Posts: 2
Location: mumbai

View user's profile Send private message

CCP1 Half bridge waveforms question
PostPosted: Wed Jan 13, 2016 5:51 am     Reply with quote

Thank you for your attention
The uc ic PIC 18F4520
Ttelmah



Joined: 11 Mar 2010
Posts: 19359

View user's profile Send private message

PostPosted: Wed Jan 13, 2016 8:12 am     Reply with quote

Look at figure 16-2 'PWM output relationships'.

The key point is that the gap between the falling edge of P1A, and the rising edge of P1B, is the bit marked there as 'delay'. This is the 'dead band delay', designed to stop there being a conflict if it takes longer to turn a driver off, than on. So you need to increase this.
This unfortunately is one of those awfully documented things. It has been discussed here before. This is actually the optional parameter in the setup_ccp function.

So:
Code:

setup_ccp1(CCP_PWM_L_H | CCP_PWM_HALF_BRIDGE, 5);


Sets the dead band delay to 5. Try increasing and decreasing the value and you will see the gap between the edges change.
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