#ifndef _UART_H_ #define _UART_H_ void uart_init(void); void uart_send_char(char c); void uart_send_string(const char *str); #endif /* _UART_H_ */