repo.or.cz
/
avr_work.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
lline: removed unneeded include
[avr_work.git]
/
heavy
/
usart1_err.h
blob
a8667f44c5e8b3a0124aee892cdd57034aadfc14
1
/*
2
USART1 with out/err line buffering.
3
*/
4
5
#ifndef _USART_H_
6
#define _USART_H_
7
8
#include
"defines.h"
9
10
#define BAUD 38400
11
#include <util/setbaud.h>
12
13
void
usart1_init
(
void
);
14
15
#endif