2024-04-25 00:09:09 -05:00

19 lines
268 B
C

/*
* serial.h
*
* Created: 4/3/2024 10:22:09 AM
* Author: bsw9xd
*/
#ifndef SERIAL_H
#define SERIAL_H
#include <avr/io.h>
void usart_init();
void usart_txt(char data);
char usart_rxt();
char usart_rxt_blocking();
void usart_txstr(char *str);
#endif