Content originally posted in LPCWare by Chevin on Mon Dec 07 06:46:29 MST 2015
Hello,
I had the same problem and it took me some hours to sort it out. Just replace
LPC_IOCON->PIO0_8 = 0x02;
with
LPC_IOCON->PIO0_8 |= 0x02;
Background: If you clear the reserved Bit 7, then the UART1 receiver will stop working. UART0 seems not to be affected by this problem.
I'm glad that it works now for me.
Bye, Eike