/* * serial.h * * Created: 4/3/2024 10:22:09 AM * Author: bsw9xd */ #ifndef SERIAL_H #define SERIAL_H #include #define F_CPU 16000000UL #define BAUD 9600 void usart_init(); void usart_txt(char data); char usart_rxt(); char usart_rxt_blocking(); void usart_txstr(char *str); #endif