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

Doubt in the definition of a function

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



Joined: 30 Jan 2008
Posts: 197

View user's profile Send private message

Doubt in the definition of a function
PostPosted: Wed Jun 08, 2011 4:21 pm     Reply with quote

Hi, someone can tell me what my error in the Sample definition of this function?

Code:
#include <18F452.H>
#fuses HS, NOWDT, BROWNOUT, PUT, NOLVP
#use delay(clock=20000000)

#define DAQ0   PIN_C0

void Reset(int DX ){
   output_low(DX);
   delay_us(500);                      
   output_float(DX);
   delay_us(500);                      
}

void main(){
   
while (1){
   
   Reset(DAQ0);
   }
}
PCM programmer



Joined: 06 Sep 2003
Posts: 21708

View user's profile Send private message

PostPosted: Wed Jun 08, 2011 4:49 pm     Reply with quote

Quote:
#define DAQ0 PIN_C0

Look in 18F452.h and see the number value for PIN_C0.

Then look at the size of the parameter that you put in the function
declaration:
Quote:
void Reset(int DX ){

An 'int' in CCS is an unsigned 8-bit integer. It can only hold 0 to 255.
You need to edit the function declaration and fix it.
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