You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#ifndef __UART_H |
|
#define __UART_H |
|
|
|
void init_uart(void); |
|
void putch(char c); |
|
void putstr(char *s); |
|
void putint(unsigned int n); |
|
void puthex(unsigned int n); |
|
char getch(void); |
|
|
|
#endif /* __UART_H */
|
|
|