]> sigrok.org Git - libsigrok.git/blame - device.c
Doxygen: Initial groups and topic short descriptions.
[libsigrok.git] / device.c
CommitLineData
a1bb33af
UH
1/*
2 * This file is part of the sigrok project.
3 *
c73d2ea4 4 * Copyright (C) 2010-2012 Bert Vermeulen <bert@biot.com>
a1bb33af
UH
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 <stdio.h>
21#include <glib.h>
45c59c8b
BV
22#include "libsigrok.h"
23#include "libsigrok-internal.h"
a1bb33af 24
7b870c38
UH
25/**
26 * @defgroup grp_devices Devices
27 *
28 * Device handling in libsigrok.
29 *
30 * @{
31 */
32
b4bd7088 33/** @private */
48a486cd
BV
34SR_PRIV struct sr_probe *sr_probe_new(int index, int type,
35 gboolean enabled, const char *name)
36{
37 struct sr_probe *probe;
38
39 if (!(probe = g_try_malloc0(sizeof(struct sr_probe)))) {
40 sr_err("hwdriver: probe malloc failed");
41 return NULL;
42 }
43
44 probe->index = index;
45 probe->type = type;
46 probe->enabled = enabled;
47 if (name)
48 probe->name = g_strdup(name);
49
50 return probe;
51}
52
94799bc4
UH
53/**
54 * Set the name of the specified probe in the specified device.
55 *
56 * If the probe already has a different name assigned to it, it will be
57 * removed, and the new name will be saved instead.
58 *
37e8b4c4 59 * @param sdi The device instance the probe is connected to.
94799bc4 60 * @param probenum The number of the probe whose name to set.
37e8b4c4
BV
61 * Note that the probe numbers start at 0.
62 * @param name The new name that the specified probe should get. A copy
63 * of the string is made.
0e3b1439 64 *
37e8b4c4 65 * @return SR_OK on success, or SR_ERR_ARG on invalid arguments.
94799bc4 66 */
37e8b4c4
BV
67SR_API int sr_dev_probe_name_set(const struct sr_dev_inst *sdi,
68 int probenum, const char *name)
a1bb33af 69{
37e8b4c4
BV
70 GSList *l;
71 struct sr_probe *probe;
72 int ret;
a1bb33af 73
37e8b4c4
BV
74 if (!sdi) {
75 sr_err("%s: sdi was NULL", __func__);
0e3b1439 76 return SR_ERR_ARG;
94799bc4
UH
77 }
78
37e8b4c4
BV
79 ret = SR_ERR_ARG;
80 for (l = sdi->probes; l; l = l->next) {
81 probe = l->data;
82 if (probe->index == probenum) {
83 g_free(probe->name);
84 probe->name = g_strdup(name);
85 ret = SR_OK;
86 break;
87 }
94799bc4
UH
88 }
89
37e8b4c4 90 return ret;
a1bb33af
UH
91}
92
be5bf44d
BV
93/**
94 * Enable or disable a probe on the specified device.
95 *
96 * @param sdi The device instance the probe is connected to.
97 * @param probenum The probe number, starting from 0.
98 * @param state TRUE to enable the probe, FALSE to disable.
99 *
100 * @return SR_OK on success, or SR_ERR_ARG on invalid arguments.
101 */
102SR_API int sr_dev_probe_enable(const struct sr_dev_inst *sdi, int probenum,
103 gboolean state)
104{
105 GSList *l;
106 struct sr_probe *probe;
107 int ret;
108
109 if (!sdi)
110 return SR_ERR_ARG;
111
112 ret = SR_ERR_ARG;
113 for (l = sdi->probes; l; l = l->next) {
114 probe = l->data;
115 if (probe->index == probenum) {
116 probe->enabled = state;
117 ret = SR_OK;
118 break;
119 }
120 }
121
122 return ret;
123}
124
94799bc4 125/**
01c3e9db
UH
126 * Add a trigger to the specified device (and the specified probe).
127 *
128 * If the specified probe of this device already has a trigger, it will
129 * be silently replaced.
94799bc4 130 *
c7ee3ddb 131 * @param sdi Must not be NULL.
a5f2e707
BV
132 * @param probenum The probe number, starting from 0.
133 * @param trigger Trigger string, in the format used by sigrok-cli
0e3b1439 134 *
a5f2e707 135 * @return SR_OK on success, or SR_ERR_ARG on invalid arguments.
94799bc4 136 */
58453e58
BV
137SR_API int sr_dev_trigger_set(const struct sr_dev_inst *sdi, int probenum,
138 const char *trigger)
a1bb33af 139{
58453e58
BV
140 GSList *l;
141 struct sr_probe *probe;
142 int ret;
a1bb33af 143
58453e58 144 if (!sdi)
0e3b1439 145 return SR_ERR_ARG;
94799bc4 146
58453e58
BV
147 ret = SR_ERR_ARG;
148 for (l = sdi->probes; l; l = l->next) {
149 probe = l->data;
150 if (probe->index == probenum) {
151 /* If the probe already has a trigger, kill it first. */
152 g_free(probe->trigger);
153 probe->trigger = g_strdup(trigger);
154 ret = SR_OK;
155 break;
156 }
94799bc4 157 }
a1bb33af 158
58453e58 159 return ret;
7d658874
BV
160}
161
94799bc4
UH
162/**
163 * Determine whether the specified device has the specified capability.
164 *
a5b35a16 165 * @param dev Pointer to the device instance to be checked. Must not be NULL.
8ec95d22
UH
166 * If the device's 'driver' field is NULL (virtual device), this
167 * function will always return FALSE (virtual devices don't have
168 * a hardware capabilities list).
94799bc4
UH
169 * @param hwcap The capability that should be checked (whether it's supported
170 * by the specified device).
171 *
a5f2e707 172 * @return TRUE if the device has the specified capability, FALSE otherwise.
94799bc4
UH
173 * FALSE is also returned upon invalid input parameters or other
174 * error conditions.
175 */
a5b35a16 176SR_API gboolean sr_dev_has_hwcap(const struct sr_dev_inst *sdi, int hwcap)
7d658874 177{
915f7cc8
JH
178 const int *hwcaps;
179 int i;
7d658874 180
a5b35a16 181 if (!sdi || !sdi->driver)
8ec95d22 182 return FALSE;
94799bc4 183
a5b35a16
BV
184 if (sdi->driver->info_get(SR_DI_HWCAPS,
185 (const void **)&hwcaps, NULL) != SR_OK)
8ec95d22 186 return FALSE;
94799bc4 187
ffedd0bf 188 for (i = 0; hwcaps[i]; i++) {
a5b35a16
BV
189 if (hwcaps[i] == hwcap)
190 return TRUE;
94799bc4 191 }
218557b8 192
7d658874 193 return FALSE;
a1bb33af 194}
fd9836bf 195
b4bd7088 196/** @private */
48a486cd
BV
197SR_PRIV struct sr_dev_inst *sr_dev_inst_new(int index, int status,
198 const char *vendor, const char *model, const char *version)
199{
200 struct sr_dev_inst *sdi;
201
202 if (!(sdi = g_try_malloc(sizeof(struct sr_dev_inst)))) {
203 sr_err("hwdriver: %s: sdi malloc failed", __func__);
204 return NULL;
205 }
206
e8d3d6c8 207 sdi->driver = NULL;
48a486cd
BV
208 sdi->index = index;
209 sdi->status = status;
210 sdi->inst_type = -1;
211 sdi->vendor = vendor ? g_strdup(vendor) : NULL;
212 sdi->model = model ? g_strdup(model) : NULL;
213 sdi->version = version ? g_strdup(version) : NULL;
214 sdi->probes = NULL;
215 sdi->priv = NULL;
216
217 return sdi;
218}
219
b4bd7088 220/** @private */
48a486cd
BV
221SR_PRIV void sr_dev_inst_free(struct sr_dev_inst *sdi)
222{
d3cff734
BV
223 struct sr_probe *probe;
224 GSList *l;
225
226 for (l = sdi->probes; l; l = l->next) {
227 probe = l->data;
228 g_free(probe->name);
229 g_free(probe);
230 }
231
48a486cd
BV
232 g_free(sdi->priv);
233 g_free(sdi->vendor);
234 g_free(sdi->model);
235 g_free(sdi->version);
236 g_free(sdi);
d3cff734 237
48a486cd
BV
238}
239
240#ifdef HAVE_LIBUSB_1_0
241
b4bd7088 242/** @private */
48a486cd
BV
243SR_PRIV struct sr_usb_dev_inst *sr_usb_dev_inst_new(uint8_t bus,
244 uint8_t address, struct libusb_device_handle *hdl)
245{
246 struct sr_usb_dev_inst *udi;
247
248 if (!(udi = g_try_malloc(sizeof(struct sr_usb_dev_inst)))) {
249 sr_err("hwdriver: %s: udi malloc failed", __func__);
250 return NULL;
251 }
252
253 udi->bus = bus;
254 udi->address = address;
255 udi->devhdl = hdl;
256
257 return udi;
258}
259
b4bd7088 260/** @private */
48a486cd
BV
261SR_PRIV void sr_usb_dev_inst_free(struct sr_usb_dev_inst *usb)
262{
263 /* Avoid compiler warnings. */
264 (void)usb;
265
266 /* Nothing to do for this device instance type. */
267}
268
269#endif
270
b4bd7088 271/** @private */
48a486cd
BV
272SR_PRIV struct sr_serial_dev_inst *sr_serial_dev_inst_new(const char *port,
273 int fd)
274{
275 struct sr_serial_dev_inst *serial;
276
277 if (!(serial = g_try_malloc(sizeof(struct sr_serial_dev_inst)))) {
278 sr_err("hwdriver: %s: serial malloc failed", __func__);
279 return NULL;
280 }
281
282 serial->port = g_strdup(port);
283 serial->fd = fd;
284
285 return serial;
286}
287
b4bd7088 288/** @private */
48a486cd
BV
289SR_PRIV void sr_serial_dev_inst_free(struct sr_serial_dev_inst *serial)
290{
291 g_free(serial->port);
292}
293
a56f1480
BV
294SR_API int sr_dev_config_set(const struct sr_dev_inst *sdi, int hwcap,
295 const void *value)
296{
297 int ret;
298
299 if (!sdi || !sdi->driver || !sdi->driver->dev_config_set) {
300 sr_err("hwdriver: unable to set config option");
301 return SR_ERR;
302 }
303
304 ret = sdi->driver->dev_config_set(sdi, hwcap, value);
305
306 return ret;
307}
811deee4
BV
308
309SR_API GSList *sr_dev_inst_list(const struct sr_dev_driver *driver)
310{
311
312 if (driver && driver->dev_list)
313 return driver->dev_list();
314 else
315 return NULL;
316}
317
318SR_API int sr_dev_inst_clear(const struct sr_dev_driver *driver)
319{
320
321 if (driver && driver->dev_clear)
322 return driver->dev_clear();
323 else
324 return SR_OK;
325}
326
7b870c38 327/** @} */