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

Port A on PIC16F876

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



Joined: 28 Apr 2006
Posts: 3

View user's profile Send private message

Port A on PIC16F876
PostPosted: Fri Apr 28, 2006 12:09 pm     Reply with quote

hi,
Could some one tell me what is the best way to configure PORT A as digitalouts on the PIC16f876. The datasheet says that the ports are configured as analog inputs by default. Presently I am using the following to configure PORTA as digitals. I am not sure if I need to add something more.

#use fast_io(A)

main(){

set_tris_A(0x00);
SETUP_ADC(ADC_OFF);


while();
}

thks
PCM programmer



Joined: 06 Sep 2003
Posts: 21708

View user's profile Send private message

PostPosted: Fri Apr 28, 2006 2:21 pm     Reply with quote

That's one way to do it. An easier way is to get rid of the #fast_io()
statement and use the CCS pin i/o functions, such as output_low,
output_high, input(), output_float(), output_a(), input_a(), etc.
In standard i/o mode, the compiler will automatically set the correct TRIS
for you. Standard i/o mode is the default mode of the compiler. You
don't have to specify 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