Toll-Free Customer Support 24/7

ARM Development Board - LPC2148 - UART

#include <lpc214x.h>
#include <stdint.h>
#include "UART.h"
int main(void)
{
char receive;
UART0_init();
while(1)
{
receive = UART0_RxChar();
UART0_SendString("Received:");
UART0_TxChar(receive);
UART0_SendString("\r\n");
}
}

Back to top