]> sigrok.org Git - libsigrok.git/blame_incremental - hardware/common/serial.c
add DF_ANALOG, and an analog output module
[libsigrok.git] / hardware / common / serial.c
... / ...
CommitLineData
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 <string.h>
21#include <sys/types.h>
22#include <sys/stat.h>
23#include <fcntl.h>
24#include <unistd.h>
25#ifdef _WIN32
26#include <conio.h>
27#else
28#include <glob.h>
29#include <termios.h>
30#endif
31#include <stdlib.h>
32#include <glib.h>
33#include <sigrok.h>
34
35// FIXME: Must be moved, or rather passed as function argument.
36#ifdef _WIN32
37HANDLE hdl;
38#endif
39
40char *serial_port_glob[] = {
41 /* Linux */
42 "/dev/ttyS*",
43 "/dev/ttyUSB*",
44 "/dev/ttyACM*",
45 /* MacOS X */
46 "/dev/ttys*",
47 "/dev/tty.USB-*",
48 "/dev/tty.Modem-*",
49 NULL,
50};
51
52GSList *list_serial_ports(void)
53{
54#ifdef _WIN32
55 /* TODO */
56#else
57 glob_t g;
58 GSList *ports;
59 unsigned int i, j;
60
61 ports = NULL;
62 for (i = 0; serial_port_glob[i]; i++) {
63 if (glob(serial_port_glob[i], 0, NULL, &g))
64 continue;
65 for (j = 0; j < g.gl_pathc; j++)
66 ports = g_slist_append(ports, strdup(g.gl_pathv[j]));
67 globfree(&g);
68 }
69
70 return ports;
71#endif
72}
73
74int serial_open(const char *pathname, int flags)
75{
76#ifdef _WIN32
77 /* FIXME: Don't hardcode COM1. */
78 hdl = CreateFile("COM1", GENERIC_READ | GENERIC_WRITE, 0, 0,
79 OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, 0);
80 if (hdl == INVALID_HANDLE_VALUE) {
81 /* TODO: Error handling. */
82 }
83 return 0;
84#else
85 return open(pathname, flags);
86#endif
87}
88
89int serial_close(int fd)
90{
91#ifdef _WIN32
92 CloseHandle(hdl);
93#else
94 return close(fd);
95#endif
96}
97
98int serial_flush(int fd)
99{
100
101 return tcflush(fd, TCIOFLUSH);
102}
103
104void *serial_backup_params(int fd)
105{
106#ifdef _WIN32
107 /* TODO */
108#else
109 struct termios *term;
110
111 term = malloc(sizeof(struct termios));
112 tcgetattr(fd, term);
113
114 return term;
115#endif
116}
117
118void serial_restore_params(int fd, void *backup)
119{
120#ifdef _WIN32
121 /* TODO */
122#else
123 tcsetattr(fd, TCSADRAIN, (struct termios *)backup);
124#endif
125}
126
127/* flowcontrol 1 = rts/cts 2 = xon/xoff */
128int serial_set_params(int fd, int speed, int bits, int parity, int stopbits,
129 int flowcontrol)
130{
131#ifdef _WIN32
132 DCB dcb;
133
134 if (!GetCommState(hdl, &dcb)) {
135 /* TODO: Error handling. */
136 }
137
138 /* TODO: Rename 'speed' to 'baudrate'. */
139 switch(speed) {
140 case 115200:
141 dcb.BaudRate = CBR_115200;
142 break;
143 case 57600:
144 dcb.BaudRate = CBR_57600;
145 break;
146 case 38400:
147 dcb.BaudRate = CBR_38400;
148 break;
149 case 19200:
150 dcb.BaudRate = CBR_19200;
151 break;
152 case 9600:
153 dcb.BaudRate = CBR_9600;
154 break;
155 default:
156 /* TODO: Error handling. */
157 break;
158 }
159 dcb.ByteSize = bits;
160 dcb.Parity = NOPARITY; /* TODO: Don't hardcode. */
161 dcb.StopBits = ONESTOPBIT; /* TODO: Don't hardcode. */
162
163 if (!SetCommState(hdl, &dcb)) {
164 /* TODO: Error handling. */
165 }
166#else
167 struct termios term;
168
169 /* Only supporting what we need really, currently the OLS driver. */
170 if (speed != 115200 || bits != 8 || parity != 0 || stopbits != 1
171 || flowcontrol != 2)
172 return SIGROK_ERR;
173
174 if (tcgetattr(fd, &term) < 0)
175 return SIGROK_ERR;
176 if (cfsetispeed(&term, B115200) < 0)
177 return SIGROK_ERR;
178 term.c_cflag &= ~CSIZE;
179 term.c_cflag |= CS8;
180 term.c_cflag &= ~CSTOPB;
181 term.c_cflag |= IXON | IXOFF;
182 term.c_iflag |= IGNPAR;
183 if (tcsetattr(fd, TCSADRAIN, &term) < 0)
184 return SIGROK_ERR;
185#endif
186
187 return SIGROK_OK;
188}