uart.h


1
#ifndef UART_H_
2
#define UART_H_
3
4
int SendChar (char ch);
5
void SendString(char *str);
6
char ReadChar();
7
void UART0ISR (void) __attribute__ ((interrupt("IRQ")));
8
void InitUART0Interrupt();
9
10
#endif /* UART_H_ */