void uart_init(void)
sets all necessary registers to enable the uart 1 module.
int uart_receive(void)
polling receive an 8 bit character over uart 1 module.
void uart_sendStr(const char *data)
sends an entire string of character over uart 1 module
void uart_sendChar(char data)
Sends a single 8 bit character over the uart 1 module.