2024-04-23 20:51:02 -05:00

21 lines
313 B
C

/*
* serial.h
*
* Created: 4/3/2024 10:22:09 AM
* Author: bsw9xd
*/
#ifndef SERIAL_H
#define SERIAL_H
#include <avr/io.h>
#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