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

Set PWM Configuration

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



Joined: 18 Nov 2013
Posts: 160

View user's profile Send private message

Set PWM Configuration
PostPosted: Fri Jan 23, 2015 3:51 pm     Reply with quote

Are there built-in functions to configure the Enhanced PWM for different output configurations (single, half-bridge, full-bridge, etc.) and dead-band delay? There are no options for this in the #use pwm statement and I'm not seeing any functions in the May 2014 compiler manual.

I'm using a PIC18F8722, and PCHW v5.035.
PCM programmer



Joined: 06 Sep 2003
Posts: 21708

View user's profile Send private message

PostPosted: Fri Jan 23, 2015 4:20 pm     Reply with quote

From looking at the .LST file, it looks like this should work:
The deadband is specified as the 2nd parameter (after the comma)
in the setup_ccp1() statement:
Code:

#include <18F8722.h>
#fuses INTRC_IO, NOWDT
#use delay(clock=4M)

//===================================
void main()
{
setup_timer_2(T2_DIV_BY_1, 255, 1);
setup_ccp1(CCP_PWM_HALF_BRIDGE | CCP_PWM_H_H, 5);
set_pwm1_duty(64);   // 25% duty cycle
 
while(TRUE);
}

The .LST file gives me the result shown below, and it is putting 5 into the
ECCP1DEL register which is the Deadband delay register.
Code:

...... setup_ccp1(CCP_PWM_HALF_BRIDGE | CCP_PWM_H_H, 5); 
00026:  BCF    TRISC.2
00028:  BCF    LATC.2
0002A:  BCF    TRISE.6
0002C:  MOVLW  8C
0002E:  MOVWF  CCP1CON
00030:  MOVLW  05   // Load deadband value into ECCP1DEL
00032:  MOVWF  ECCP1DEL
00034:  CLRF   ECCP1AS

This was tested with compiler vs. 5.036.
SeeCwriter



Joined: 18 Nov 2013
Posts: 160

View user's profile Send private message

PostPosted: Fri Jan 23, 2015 5:05 pm     Reply with quote

Ok, I'm blind. It's plain as day. Thanks.
SeeCwriter



Joined: 18 Nov 2013
Posts: 160

View user's profile Send private message

PostPosted: Mon Jan 26, 2015 4:33 pm     Reply with quote

Why would I get an "Undefined identifier" error for CCP_DELAY in the following statement?

setup_ccp1(CCP_PWM | CCP_PWM_HALF_BRIDGE | CCP_SHUTDOWN_AC_L | CCP_SHUTDOWN_BD_L | CCP_DELAY);

The manual clearly shows it as one of the options. And the 18F8722 has the feature.
PCM programmer



Joined: 06 Sep 2003
Posts: 21708

View user's profile Send private message

PostPosted: Mon Jan 26, 2015 4:50 pm     Reply with quote

Well, the manual is wrong. I figured out what apparently does work.
If you want a clarification, you should send an email to CCS support.
Ttelmah



Joined: 11 Mar 2010
Posts: 19372

View user's profile Send private message

PostPosted: Tue Jan 27, 2015 3:56 am     Reply with quote

Also, look at the chip errata.

CCS left it out for a reason..... :(

You should be able to use it by creating your own define, but they you'll have to be super careful about the duty cycles you use. (0-3 not allowed, and 7, 11, 15, 19 etc..). Ouch.
SeeCwriter



Joined: 18 Nov 2013
Posts: 160

View user's profile Send private message

PostPosted: Tue Jan 27, 2015 9:52 am     Reply with quote

I asked tech support about it, and the response was, "not all options are available on all devices. Check the device header file." So I did a grep of the entire Devices directory. Not a single device header file contains a define for CCP_DELAY. So it appears that CCS just doesn't support that feature, period.

I don't understand your comment about being careful with duty cycles, and why certain numbers are not allowed.
Ttelmah



Joined: 11 Mar 2010
Posts: 19372

View user's profile Send private message

PostPosted: Tue Jan 27, 2015 10:16 am     Reply with quote

Several chips do happily let you use deadband's, but on your's there is an erratum:
"35. Module: ECCP (PWM Mode)
When configured for half-bridge operation with
dead band (CCPxCON<7:6> = 10), the PWM output
may be corrupted for certain values of the
PWM duty cycle. This can occur when these
additional criteria are also met:
• a non-zero, dead-band delay is specified
(PxDC6:PxDC0 > 0); and
• the duty cycle has a value of 0 through 3, or
4n + 3 (n ≥ 1).
Work around
None.
Date Codes that pertain to this issue:
All engineering and production devices."

So if you enable the dead-band in half bridge, instead of getting the nice 'no clash during crossover' behaviour, you may get corrupted PWM outputs. Uurgh.....
SeeCwriter



Joined: 18 Nov 2013
Posts: 160

View user's profile Send private message

PostPosted: Tue Jan 27, 2015 11:25 am     Reply with quote

Interesting. Since that errata was released in 2006, and it applies only to Rev A1 silicon, you don't think this has been fixed by now?
The errata sheet for the Rev B1 silicon, released in 2009, has a different CCP module issue that affects modules I'm not using in my application.
I would think they are only shipping Rev B1, or later, silicon, now.
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