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

UART on PIC16F688
Goto page Previous  1, 2
 
Post new topic   Reply to topic    CCS Forum Index -> General CCS C Discussion
View previous topic :: View next topic  
Author Message
guest
Guest







writing own putc()
PostPosted: Thu Sep 02, 2004 10:51 am     Reply with quote

I have found the same problem with the 16F688, I was able to transmit data using TXREG but not the standard putc() CCS includes by using #use rs232. why is that? do you know?

------------------------------------------------------------------
You will also need to create your own putc() and getc() functions.
I will show you how to make the putc() function:

#byte PIR1 = 0x0c
#bit TXIF = PIR1.1

#byte TXREG = 0x15

void my_putc(char c)
{
while(~TXIF);

TXREG = c;
}[/quote]
Display posts from previous:   
Post new topic   Reply to topic    CCS Forum Index -> General CCS C Discussion All times are GMT - 6 Hours
Goto page Previous  1, 2
Page 2 of 2

 
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