UART FIFO....URGENT!!!!!!!!!!!!

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

UART FIFO....URGENT!!!!!!!!!!!!

368 Views
lpcware
NXP Employee
NXP Employee
Content originally posted in LPCWare by karanmehta93 on Wed Oct 17 22:41:58 MST 2012
What are the limiting conditions in the THRE interrupt to prevent it's accidential calls?
What would happen if my UART FIFO's are disabled and I try to add another no in UnTHR while the last no. is in transit ?

Please help urgent...............!!!!!!!!!!!!!!!!
Labels (1)
0 Kudos
1 Reply

341 Views
lpcware
NXP Employee
NXP Employee
Content originally posted in LPCWare by PhilYoung on Sat Oct 20 16:11:55 MST 2012
The THR is not the transmit register, so any character you write to it will be transferred to the transmit register within a few clock cycles if there is nothing being transmitted, then you can write a second character to the THR, but writing to the THR when it is not empty will just overwrite the character stored in it so it doesn't get transmitted, you will see missing characters in the output stream but never corrupted characters.
0 Kudos