]> sigrok.org Git - libsigrok.git/blame - hardware/fluke-dmm/api.c
Shorten/simplify hw_dev_list() implementations.
[libsigrok.git] / hardware / fluke-dmm / api.c
CommitLineData
883a2e9e
BV
1/*
2 * This file is part of the sigrok project.
3 *
4 * Copyright (C) 2012 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 <glib.h>
4f958423
BV
21#include <sys/types.h>
22#include <sys/stat.h>
23#include <fcntl.h>
24#include <string.h>
25#include <errno.h>
6f22a8ef
UH
26#include "libsigrok.h"
27#include "libsigrok-internal.h"
28#include "fluke-dmm.h"
883a2e9e 29
d3f8f141 30static const int hwopts[] = {
1953564a
BV
31 SR_CONF_CONN,
32 SR_CONF_SERIALCOMM,
d3f8f141
BV
33 0,
34};
35
36static const int hwcaps[] = {
1953564a
BV
37 SR_CONF_MULTIMETER,
38 SR_CONF_LIMIT_SAMPLES,
39 SR_CONF_LIMIT_MSEC,
40 SR_CONF_CONTINUOUS,
d3f8f141
BV
41 0,
42};
43
e7edd64f
BV
44SR_PRIV struct sr_dev_driver flukedmm_driver_info;
45static struct sr_dev_driver *di = &flukedmm_driver_info;
883a2e9e 46
9fa09680
BV
47static char *scan_conn[] = {
48 /* 287/289 */
49 "115200/8n1",
50 /* 187/189 */
51 "9600/8n1",
52 /* Scopemeter 190 series */
53 "1200/8n1",
54 NULL
55};
56
4f958423 57static const struct flukedmm_profile supported_flukedmm[] = {
d4b11de0
BV
58 { FLUKE_187, "187", 100, 1000 },
59 { FLUKE_287, "287", 100, 1000 },
60 { FLUKE_190, "199B", 1000, 3500 },
4f958423
BV
61};
62
883a2e9e
BV
63
64/* Properly close and free all devices. */
65static int clear_instances(void)
66{
67 struct sr_dev_inst *sdi;
68 struct drv_context *drvc;
69 struct dev_context *devc;
70 GSList *l;
71
4f958423
BV
72 if (!(drvc = di->priv))
73 return SR_OK;
74
883a2e9e
BV
75 drvc = di->priv;
76 for (l = drvc->instances; l; l = l->next) {
4f958423 77 if (!(sdi = l->data))
883a2e9e 78 continue;
4f958423 79 if (!(devc = sdi->priv))
883a2e9e 80 continue;
4f958423 81 sr_serial_dev_inst_free(devc->serial);
883a2e9e
BV
82 sr_dev_inst_free(sdi);
83 }
883a2e9e
BV
84 g_slist_free(drvc->instances);
85 drvc->instances = NULL;
86
87 return SR_OK;
88}
89
34f06b90 90static int hw_init(struct sr_context *sr_ctx)
883a2e9e 91{
063e7aef 92 return std_hw_init(sr_ctx, di, DRIVER_LOG_DOMAIN);
883a2e9e
BV
93}
94
41298320 95static GSList *fluke_scan(const char *conn, const char *serialcomm)
883a2e9e 96{
4f958423 97 struct sr_dev_inst *sdi;
883a2e9e 98 struct drv_context *drvc;
4f958423 99 struct dev_context *devc;
4f958423 100 struct sr_probe *probe;
58d03f03 101 struct sr_serial_dev_inst *serial;
41298320 102 GSList *devices;
58d03f03 103 int retry, len, i, s;
fb480d57 104 char buf[128], *b, **tokens;
883a2e9e 105
58d03f03 106 if (!(serial = sr_serial_dev_inst_new(conn, serialcomm)))
4f958423 107 return NULL;
58d03f03 108
a54dd31e 109 if (serial_open(serial, SERIAL_RDWR | SERIAL_NONBLOCK) != SR_OK)
4f958423 110 return NULL;
4f958423 111
41298320 112 drvc = di->priv;
fb480d57
BV
113 b = buf;
114 retry = 0;
41298320 115 devices = NULL;
fb480d57
BV
116 /* We'll try the discovery sequence three times in case the device
117 * is not in an idle state when we send ID. */
118 while (!devices && retry < 3) {
119 retry++;
58d03f03
BV
120 serial_flush(serial);
121 if (serial_write(serial, "ID\r", 3) == -1) {
31d84da3
UH
122 sr_err("Unable to send ID string: %s.",
123 strerror(errno));
fb480d57
BV
124 continue;
125 }
4f958423 126
fb480d57
BV
127 /* Response is first a CMD_ACK byte (ASCII '0' for OK,
128 * or '1' to signify an error. */
129 len = 128;
58d03f03 130 serial_readline(serial, &b, &len, 150);
fb480d57
BV
131 if (len != 1)
132 continue;
41298320 133 if (buf[0] != '0')
fb480d57 134 continue;
4f958423 135
fb480d57
BV
136 /* If CMD_ACK was OK, ID string follows. */
137 len = 128;
9fa09680 138 serial_readline(serial, &b, &len, 850);
fb480d57
BV
139 if (len < 10)
140 continue;
9fa09680
BV
141 if (strcspn(buf, ",") < 15)
142 /* Looks like it's comma-separated. */
143 tokens = g_strsplit(buf, ",", 3);
144 else
145 /* Fluke 199B, at least, uses semicolon. */
146 tokens = g_strsplit(buf, ";", 3);
fb480d57
BV
147 if (!strncmp("FLUKE", tokens[0], 5)
148 && tokens[1] && tokens[2]) {
149 for (i = 0; supported_flukedmm[i].model; i++) {
150 if (strcmp(supported_flukedmm[i].modelname, tokens[0] + 6))
151 continue;
152 /* Skip leading spaces in version number. */
153 for (s = 0; tokens[1][s] == ' '; s++);
154 if (!(sdi = sr_dev_inst_new(0, SR_ST_INACTIVE, "Fluke",
155 tokens[0] + 6, tokens[1] + s)))
156 return NULL;
157 if (!(devc = g_try_malloc0(sizeof(struct dev_context)))) {
31d84da3 158 sr_err("Device context malloc failed.");
fb480d57
BV
159 return NULL;
160 }
161 devc->profile = &supported_flukedmm[i];
58d03f03 162 devc->serial = serial;
fb480d57
BV
163 sdi->priv = devc;
164 sdi->driver = di;
165 if (!(probe = sr_probe_new(0, SR_PROBE_ANALOG, TRUE, "P1")))
166 return NULL;
167 sdi->probes = g_slist_append(sdi->probes, probe);
168 drvc->instances = g_slist_append(drvc->instances, sdi);
169 devices = g_slist_append(devices, sdi);
170 break;
4f958423 171 }
4f958423 172 }
fb480d57 173 g_strfreev(tokens);
9fa09680
BV
174 if (devices)
175 /* Found one. */
176 break;
4f958423 177 }
58d03f03
BV
178 serial_close(serial);
179 if (!devices)
180 sr_serial_dev_inst_free(serial);
883a2e9e
BV
181
182 return devices;
183}
184
41298320
BV
185static GSList *hw_scan(GSList *options)
186{
1987b8d6 187 struct sr_config *src;
41298320 188 GSList *l, *devices;
9fa09680 189 int i;
41298320
BV
190 const char *conn, *serialcomm;
191
192 conn = serialcomm = NULL;
193 for (l = options; l; l = l->next) {
1987b8d6
BV
194 src = l->data;
195 switch (src->key) {
1953564a 196 case SR_CONF_CONN:
1987b8d6 197 conn = src->value;
41298320 198 break;
1953564a 199 case SR_CONF_SERIALCOMM:
1987b8d6 200 serialcomm = src->value;
41298320
BV
201 break;
202 }
203 }
204 if (!conn)
205 return NULL;
206
207 if (serialcomm) {
208 /* Use the provided comm specs. */
209 devices = fluke_scan(conn, serialcomm);
210 } else {
9fa09680
BV
211 for (i = 0; scan_conn[i]; i++) {
212 if ((devices = fluke_scan(conn, scan_conn[i])))
213 break;
214 /* The Scopemeter 199B, at least, requires this
215 * after all the 115k/9.6k confusion. */
216 g_usleep(5000);
217 }
41298320
BV
218 }
219
220 return devices;
221}
222
883a2e9e
BV
223static GSList *hw_dev_list(void)
224{
0e94d524 225 return ((struct drv_context *)(di->priv))->instances;
883a2e9e
BV
226}
227
228static int hw_dev_open(struct sr_dev_inst *sdi)
229{
41298320 230 struct dev_context *devc;
883a2e9e 231
41298320 232 if (!(devc = sdi->priv)) {
31d84da3 233 sr_err("sdi->priv was NULL.");
41298320
BV
234 return SR_ERR_BUG;
235 }
236
a54dd31e 237 if (serial_open(devc->serial, SERIAL_RDWR | SERIAL_NONBLOCK) != SR_OK)
41298320 238 return SR_ERR;
58d03f03 239
41298320 240 sdi->status = SR_ST_ACTIVE;
883a2e9e
BV
241
242 return SR_OK;
243}
244
245static int hw_dev_close(struct sr_dev_inst *sdi)
246{
d3f8f141 247 struct dev_context *devc;
883a2e9e 248
d3f8f141 249 if (!(devc = sdi->priv)) {
31d84da3 250 sr_err("sdi->priv was NULL.");
d3f8f141
BV
251 return SR_ERR_BUG;
252 }
253
254 if (devc->serial && devc->serial->fd != -1) {
58d03f03 255 serial_close(devc->serial);
d3f8f141
BV
256 sdi->status = SR_ST_INACTIVE;
257 }
883a2e9e
BV
258
259 return SR_OK;
260}
261
262static int hw_cleanup(void)
263{
264
265 clear_instances();
266
883a2e9e
BV
267 return SR_OK;
268}
269
035a1078 270static int config_set(int id, const void *value, const struct sr_dev_inst *sdi)
883a2e9e 271{
d3f8f141 272 struct dev_context *devc;
883a2e9e
BV
273
274 if (sdi->status != SR_ST_ACTIVE)
275 return SR_ERR;
276
d3f8f141 277 if (!(devc = sdi->priv)) {
31d84da3 278 sr_err("sdi->priv was NULL.");
d3f8f141
BV
279 return SR_ERR_BUG;
280 }
281
035a1078 282 switch (id) {
1953564a 283 case SR_CONF_LIMIT_MSEC:
d3f8f141
BV
284 /* TODO: not yet implemented */
285 if (*(const uint64_t *)value == 0) {
31d84da3 286 sr_err("LIMIT_MSEC can't be 0.");
d3f8f141
BV
287 return SR_ERR;
288 }
289 devc->limit_msec = *(const uint64_t *)value;
31d84da3 290 sr_dbg("Setting time limit to %" PRIu64 "ms.",
d3f8f141
BV
291 devc->limit_msec);
292 break;
1953564a 293 case SR_CONF_LIMIT_SAMPLES:
d3f8f141 294 devc->limit_samples = *(const uint64_t *)value;
31d84da3 295 sr_dbg("Setting sample limit to %" PRIu64 ".",
d3f8f141
BV
296 devc->limit_samples);
297 break;
883a2e9e 298 default:
035a1078 299 sr_err("Unknown capability: %d.", id);
d3f8f141
BV
300 return SR_ERR;
301 break;
883a2e9e
BV
302 }
303
d3f8f141 304 return SR_OK;
883a2e9e
BV
305}
306
a1c743fc
BV
307static int config_list(int key, const void **data, const struct sr_dev_inst *sdi)
308{
309
310 (void)sdi;
311
312 switch (key) {
0d485e30
BV
313 case SR_CONF_SCAN_OPTIONS:
314 *data = hwopts;
315 break;
9a6517d1
BV
316 case SR_CONF_DEVICE_OPTIONS:
317 *data = hwcaps;
318 break;
a1c743fc
BV
319 default:
320 return SR_ERR_ARG;
321 }
322
323 return SR_OK;
324}
325
883a2e9e
BV
326static int hw_dev_acquisition_start(const struct sr_dev_inst *sdi,
327 void *cb_data)
328{
d3f8f141
BV
329 struct sr_datafeed_packet packet;
330 struct sr_datafeed_header header;
d3f8f141
BV
331 struct dev_context *devc;
332
333 if (!(devc = sdi->priv)) {
31d84da3 334 sr_err("sdi->priv was NULL.");
d3f8f141
BV
335 return SR_ERR_BUG;
336 }
337
31d84da3 338 sr_dbg("Starting acquisition.");
d3f8f141
BV
339
340 devc->cb_data = cb_data;
341
342 /* Send header packet to the session bus. */
31d84da3 343 sr_dbg("Sending SR_DF_HEADER.");
d3f8f141
BV
344 packet.type = SR_DF_HEADER;
345 packet.payload = (uint8_t *)&header;
346 header.feed_version = 1;
347 gettimeofday(&header.starttime, NULL);
348 sr_session_send(devc->cb_data, &packet);
883a2e9e 349
d3f8f141 350 /* Poll every 100ms, or whenever some data comes in. */
d38d2ef0
BV
351 sr_source_add(devc->serial->fd, G_IO_IN, 50, fluke_receive_data, (void *)sdi);
352
58d03f03 353 if (serial_write(devc->serial, "QM\r", 3) == -1) {
31d84da3 354 sr_err("Unable to send QM: %s.", strerror(errno));
d38d2ef0
BV
355 return SR_ERR;
356 }
357 devc->cmd_sent_at = g_get_monotonic_time() / 1000;
358 devc->expect_response = TRUE;
883a2e9e
BV
359
360 return SR_OK;
361}
362
69b07d14 363static int hw_dev_acquisition_stop(struct sr_dev_inst *sdi, void *cb_data)
883a2e9e 364{
d3f8f141
BV
365 struct sr_datafeed_packet packet;
366 struct dev_context *devc;
883a2e9e
BV
367
368 if (sdi->status != SR_ST_ACTIVE)
369 return SR_ERR;
370
d3f8f141 371 if (!(devc = sdi->priv)) {
31d84da3 372 sr_err("sdi->priv was NULL.");
d3f8f141
BV
373 return SR_ERR_BUG;
374 }
375
31d84da3 376 sr_dbg("Stopping acquisition.");
d3f8f141
BV
377
378 sr_source_remove(devc->serial->fd);
379 hw_dev_close((struct sr_dev_inst *)sdi);
380
381 /* Send end packet to the session bus. */
31d84da3 382 sr_dbg("Sending SR_DF_END.");
d3f8f141
BV
383 packet.type = SR_DF_END;
384 sr_session_send(cb_data, &packet);
883a2e9e
BV
385
386 return SR_OK;
387}
388
e7edd64f 389SR_PRIV struct sr_dev_driver flukedmm_driver_info = {
883a2e9e
BV
390 .name = "fluke-dmm",
391 .longname = "Fluke 18x/28x series DMMs",
392 .api_version = 1,
393 .init = hw_init,
394 .cleanup = hw_cleanup,
395 .scan = hw_scan,
396 .dev_list = hw_dev_list,
397 .dev_clear = clear_instances,
035a1078 398 .config_set = config_set,
a1c743fc 399 .config_list = config_list,
883a2e9e
BV
400 .dev_open = hw_dev_open,
401 .dev_close = hw_dev_close,
883a2e9e
BV
402 .dev_acquisition_start = hw_dev_acquisition_start,
403 .dev_acquisition_stop = hw_dev_acquisition_stop,
404 .priv = NULL,
405};