Root/
| 1 | // |
| 2 | // Authors: Wolfgang Spraul <wolfgang@sharism.cc> |
| 3 | // |
| 4 | // This program is free software; you can redistribute it and/or |
| 5 | // modify it under the terms of the GNU General Public License |
| 6 | // as published by the Free Software Foundation; either version |
| 7 | // 3 of the License, or (at your option) any later version. |
| 8 | // |
| 9 | |
| 10 | #ifndef _SERIAL_H_ |
| 11 | #define _SERIAL_H_ |
| 12 | |
| 13 | void serial_putc(char c); |
| 14 | void serial_puts(const char *s); |
| 15 | void serial_put_hex(unsigned int v); |
| 16 | int serial_getc(); |
| 17 | int serial_tstc(); |
| 18 | |
| 19 | #endif |
| 20 |
