Email: Password: Remember Me | Create Account (Free)

Back to Subject List

Old thread has been locked -- no new posts accepted in this thread
???
01/17/02 19:24
Read: times


 
#18846 - RE: Serial RI Command Problem in code
Are you doing all your checking within the interrupt service routine? That's not good - the next character could arrive while your ISR's still thinking about the previous one!

Your ISR should do the minimum possible: read the byte, put it into a buffer, clear RI. Nothing else.
You can do the checking from the buffer in a "background" loop.

List of 5 messages in thread
TopicAuthorDate
Serial RI Command Problem in code            01/01/70 00:00      
RE: Serial RI Command Problem in code            01/01/70 00:00      
RE: Serial RI Command Problem in code            01/01/70 00:00      
RE: Serial RI Command Problem in code            01/01/70 00:00      
RE: Serial RI Command Problem in code            01/01/70 00:00      

Back to Subject List