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_ */