This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

UART1- LPC2101

I m using 14.7456Mhz Crystal. I am trying to send one data through UART1 using LPC2101.This is my initialization

PINSEL0 = 0x00050000; /* Enable RxD1 and TxD1*/
U1LCR = 0x83; /* 8 bits, 1 Stop bit */
U1DLL = 96; /* 9600 Baud Rate @ 14.7456MHz */
U1DLM = 0;
U1LCR = 0x03;

Is there any mistake in my initialization.. I didnt get the output

0