projects
/
rpikern
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
display works sortof
[rpikern]
/
src
/
serial.h
1
#ifndef SERIAL_H_
2
#define SERIAL_H_
3
4
void init_serial(int baud);
5
6
void ser_putchar(int c);
7
int ser_getchar(void);
8
9
int ser_pending(void);
10
11
void ser_printstr(const char *s);
12
13
#endif /* SERIAL_H_ */