]> sigrok.org Git - libsigrok.git/blob - hardware/common/serial.c
use strdup() instead of g_strdup()
[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 <glib.h>
23
24
25 char *serial_port_glob[] = {
26         /* Linux */
27         "/dev/ttyS*",
28         "/dev/ttyUSB*",
29         "/dev/ttyACM*",
30         /* MacOS X */
31         "/dev/ttys*",
32         "/dev/tty.USB-*",
33         "/dev/tty.Modem-*",
34         NULL
35 };
36
37
38 GSList *list_serial_ports(void)
39 {
40         glob_t g;
41         GSList *ports;
42         int i, j;
43
44         ports = NULL;
45         for(i = 0; serial_port_glob[i]; i++)
46         {
47                 if(!glob(serial_port_glob[i], 0, NULL, &g))
48                 {
49                         for(j = 0; j < g.gl_pathc; j++)
50                                 ports = g_slist_append(ports, strdup(g.gl_pathv[j]));
51                         globfree(&g);
52                 }
53         }
54
55         return ports;
56 }
57
58