summaryrefslogtreecommitdiff
path: root/final_project/serial.h
blob: 681359f0820dd30512bf48a6075b7d18d7f6fae2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 * 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