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

kbhit

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







kbhit
PostPosted: Mon Jan 06, 2003 9:27 am     Reply with quote

Dear experts,
I am using MPLAB6.10 and CCS-PCH 3.125. Processor is 18F6720.
Emulator is ICE2k with PCM18XE1 POD.
I will use "kbhit" to receive a character from RS232(Pins C6, C7) and i know that there has to be a change on PIR1 bit 5,
but there is no reaction on that bit.
Does anyone has the same problem and know maybe a solution?

best regards
l. preisigke
___________________________
This message was ported from CCS's old forum
Original Post ID: 10458
Jean-Louis VERN
Guest







Re: kbhit
PostPosted: Tue Jan 07, 2003 2:08 pm     Reply with quote

I don't know if if you have this problem, but in case of overrun, RCIF don't change...
kb_hit() reset interface in case of overrun...

Best regards

Jean-Louis VERN

#BYTE RCSTA = 0xFAB // 18F (change adress for 16F/C)

#BIT OERR = RCSTA.1
#BIT CREN = RCSTA.4

BIT kb_hit( void )
{
if( OERR ){
CREN = 0;
CREN = 1;
}
return RCIF;
}
___________________________
This message was ported from CCS's old forum
Original Post ID: 10517
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