1 2 3 4 5 6 7 8 9 10
#ifndef USART_H #define USART_H #include <stdint.h> void usart_init(void); void usart_send(uint8_t c); uint8_t usart_recv(void); #endif