summaryrefslogtreecommitdiffstats
path: root/sw-avr/rom-loader/usart.h
blob: f7d8806a528e126888f6d2b376090ffedd63bead (plain)
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