forgotten files
[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 void ser_printstr(const char *s);
10
11 #endif  /* SERIAL_H_ */