census logo
[bootcensus] / src / serial.h
1 /*
2 pcboot - bootable PC demo/game kernel
3 Copyright (C) 2018  John Tsiombikas <nuclear@member.fsf.org>
4
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, either version 3 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY, without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program.  If not, see <https://www.gnu.org/licenses/>.
17 */
18 #ifndef SERIAL_H_
19 #define SERIAL_H_
20
21 #define SER_8N1         0
22 #define SER_8N2         1
23 #define SER_HWFLOW      2
24
25 int ser_open(int pidx, int baud, unsigned int mode);
26 void ser_close(int fd);
27
28 int ser_block(int fd);
29 int ser_nonblock(int fd);
30
31 int ser_pending(int fd);
32 /* if msec < 0: wait for ever */
33 int ser_wait(int fd, long msec);
34
35 void ser_putc(int fd, char c);
36 int ser_getc(int fd);
37
38 int ser_write(int fd, const char *buf, int count);
39 int ser_read(int fd, char *buf, int count);
40
41 #define ser_putchar(c)  ser_putc(0, c)
42
43 char *ser_getline(int fd, char *buf, int bsz);
44
45
46 #endif  /* SERIAL_H_ */