This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

Rx Timeout Interrupt

Hi,

We are using UART : TL16C752B in one of our design. But sometimes I am getting Rx buffer timeout, which is causing the indefinite halt in serial communication between Uart and corresponding device. Unless it is cleared, the interface is not working properly.

Is there any way out in disabling that particular Rx timeout interrupt and make that interface work ?

Here is how are we initializing the uart registers.

      UchFCR1 = 0xC7;
      UchLCR1 = 0xBF;
      UchEFR1 = 0x00;
      UchLCR1 = 0x00;
      UchMCR1 = 0x08;
      UchLCR1 =  0x80;
      UchDLL1 =  0x02; 
      UchDLH1 =  0x00; 
      UchLCR1 = 0x03;
      UchIER1 = 0x01;

Hope to get an advice. Thanks in advance.

Best Regards,

Sagar