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

Back to Subject List

Thread Closed: Issue successfully resolved

???
03/11/04 18:26
Read: times


 
#66530 - RE: Serial comm interrupt driven Done
Responding to: ???'s previous message
yet another issue.
SERIAL: JB TI,CLEAR 
MOV A,SBUF 
CLR RI

Okay, you looks at TI and if it is not set then you think that it is RI which generates the interrupt. Some vendors (like Atmel AT89S8252/S53 etc) define SPI interrupt to the same vector address as UART`s one. As result, it may be not UART but SPI which requires the interrupt. So be careful about it as well. Better use something like:
INT_UART:
	JB	RI,INT_UART_GET
	JB	TI,INT_UART_SEND
; oops, if we are here then it needs
; some framework to fix a malfunction,
; be placed here
	RETI

Regards,
Oleg

List of 8 messages in thread
TopicAuthorDate
Serial comm interrupt driven Done            01/01/70 00:00      
   RE: Serial comm interrupt driven Done            01/01/70 00:00      
   RE: Serial comm interrupt driven Done            01/01/70 00:00      
      RE: Serial comm interrupt driven Done            01/01/70 00:00      
   RE: Serial comm interrupt driven Done            01/01/70 00:00      
   RE: Serial comm interrupt driven Done            01/01/70 00:00      
      RE: Serial comm interrupt driven Done            01/01/70 00:00      
      RE: Serial comm interrupt driven Done            01/01/70 00:00      

Back to Subject List