]> sigrok.org Git - libsigrok.git/blob - hardware/common/serial.c
hardware/common: Coding style fixes.
[libsigrok.git] / hardware / common / serial.c
1 /*
2  * This file is part of the sigrok project.
3  *
4  * Copyright (C) 2010 Bert Vermeulen <bert@biot.com>
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 #include <glob.h>
21 #include <string.h>
22 #include <sys/types.h>
23 #include <sys/stat.h>
24 #include <fcntl.h>
25 #include <unistd.h>
26 #include <termios.h>
27 #include <stdlib.h>
28 #include <glib.h>
29 #include <sigrok.h>
30
31 char *serial_port_glob[] = {
32         /* Linux */
33         "/dev/ttyS*",
34         "/dev/ttyUSB*",
35         "/dev/ttyACM*",
36         /* MacOS X */
37         "/dev/ttys*",
38         "/dev/tty.USB-*",
39         "/dev/tty.Modem-*",
40         NULL,
41 };
42
43 GSList *list_serial_ports(void)
44 {
45         glob_t g;
46         GSList *ports;
47         unsigned int i, j;
48
49         ports = NULL;
50         for (i = 0; serial_port_glob[i]; i++) {
51                 if (!glob(serial_port_glob[i], 0, NULL, &g)) {
52                         for (j = 0; j < g.gl_pathc; j++)
53                                 ports = g_slist_append(ports,
54                                                        strdup(g.gl_pathv[j]));
55                         globfree(&g);
56                 }
57         }
58
59         return ports;
60 }
61
62 int serial_open(const char *pathname, int flags)
63 {
64         return open(pathname, flags);
65 }
66
67 int serial_close(int fd)
68 {
69         return close(fd);
70 }
71
72 void *serial_backup_params(int fd)
73 {
74         struct termios *term;
75
76         term = malloc(sizeof(struct termios));
77         tcgetattr(fd, term);
78
79         return term;
80 }
81
82 void serial_restore_params(int fd, void *backup)
83 {
84         tcsetattr(fd, TCSADRAIN, (struct termios *)backup);
85 }
86
87 /* flowcontrol 1 = rts/cts  2 = xon/xoff */
88 int serial_set_params(int fd, int speed, int bits, int parity, int stopbits,
89                       int flowcontrol)
90 {
91         struct termios term;
92
93         /* Only supporting what we need really, currently the OLS driver. */
94         if (speed != 115200 || bits != 8 || parity != 0 || stopbits != 1
95             || flowcontrol != 2)
96                 return SIGROK_ERR;
97
98         if (tcgetattr(fd, &term) < 0)
99                 return SIGROK_ERR;
100         if (cfsetispeed(&term, B115200) < 0)
101                 return SIGROK_ERR;
102         term.c_cflag &= ~CSIZE;
103         term.c_cflag |= CS8;
104         term.c_cflag &= ~CSTOPB;
105         term.c_cflag |= IXON | IXOFF;
106         term.c_iflag |= IGNPAR;
107         if (tcsetattr(fd, TCSADRAIN, &term) < 0)
108                 return SIGROK_ERR;
109
110         return SIGROK_OK;
111 }