]> sigrok.org Git - libsigrok.git/blob - src/hardware/fluke-dmm/api.c
Don't check sr_channel_new() return value (always succeeds).
[libsigrok.git] / src / hardware / fluke-dmm / api.c
1 /*
2  * This file is part of the libsigrok 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>
21 #include <sys/types.h>
22 #include <sys/stat.h>
23 #include <fcntl.h>
24 #include <string.h>
25 #include <errno.h>
26 #include "libsigrok.h"
27 #include "libsigrok-internal.h"
28 #include "fluke-dmm.h"
29
30 static const uint32_t scanopts[] = {
31         SR_CONF_CONN,
32         SR_CONF_SERIALCOMM,
33 };
34
35 static const uint32_t devopts[] = {
36         SR_CONF_MULTIMETER,
37         SR_CONF_CONTINUOUS,
38         SR_CONF_LIMIT_SAMPLES | SR_CONF_SET,
39         SR_CONF_LIMIT_MSEC | SR_CONF_SET,
40 };
41
42 SR_PRIV struct sr_dev_driver flukedmm_driver_info;
43 static struct sr_dev_driver *di = &flukedmm_driver_info;
44
45 static char *scan_conn[] = {
46         /* 287/289 */
47         "115200/8n1",
48         /* 187/189 */
49         "9600/8n1",
50         /* Scopemeter 190 series */
51         "1200/8n1",
52         NULL
53 };
54
55 static const struct flukedmm_profile supported_flukedmm[] = {
56         { FLUKE_187, "187", 100, 1000 },
57         { FLUKE_189, "189", 100, 1000 },
58         { FLUKE_287, "287", 100, 1000 },
59         { FLUKE_190, "199B", 1000, 3500 },
60 };
61
62 static int init(struct sr_context *sr_ctx)
63 {
64         return std_init(sr_ctx, di, LOG_PREFIX);
65 }
66
67 static GSList *fluke_scan(const char *conn, const char *serialcomm)
68 {
69         struct sr_dev_inst *sdi;
70         struct drv_context *drvc;
71         struct dev_context *devc;
72         struct sr_channel *ch;
73         struct sr_serial_dev_inst *serial;
74         GSList *devices;
75         int retry, len, i, s;
76         char buf[128], *b, **tokens;
77
78         if (!(serial = sr_serial_dev_inst_new(conn, serialcomm)))
79                 return NULL;
80
81         if (serial_open(serial, SERIAL_RDWR) != SR_OK)
82                 return NULL;
83
84         drvc = di->priv;
85         b = buf;
86         retry = 0;
87         devices = NULL;
88         /* We'll try the discovery sequence three times in case the device
89          * is not in an idle state when we send ID. */
90         while (!devices && retry < 3) {
91                 retry++;
92                 serial_flush(serial);
93                 if (serial_write_blocking(serial, "ID\r", 3, SERIAL_WRITE_TIMEOUT_MS) < 0) {
94                         sr_err("Unable to send ID string");
95                         continue;
96                 }
97
98                 /* Response is first a CMD_ACK byte (ASCII '0' for OK,
99                  * or '1' to signify an error. */
100                 len = 128;
101                 serial_readline(serial, &b, &len, 150);
102                 if (len != 1)
103                         continue;
104                 if (buf[0] != '0')
105                         continue;
106
107                 /* If CMD_ACK was OK, ID string follows. */
108                 len = 128;
109                 serial_readline(serial, &b, &len, 850);
110                 if (len < 10)
111                         continue;
112                 if (strcspn(buf, ",") < 15)
113                         /* Looks like it's comma-separated. */
114                         tokens = g_strsplit(buf, ",", 3);
115                 else
116                         /* Fluke 199B, at least, uses semicolon. */
117                         tokens = g_strsplit(buf, ";", 3);
118                 if (!strncmp("FLUKE", tokens[0], 5)
119                                 && tokens[1] && tokens[2]) {
120                         for (i = 0; supported_flukedmm[i].model; i++) {
121                                 if (strcmp(supported_flukedmm[i].modelname, tokens[0] + 6))
122                                         continue;
123                                 /* Skip leading spaces in version number. */
124                                 for (s = 0; tokens[1][s] == ' '; s++);
125                                 sdi = g_malloc0(sizeof(struct sr_dev_inst));
126                                 sdi->status = SR_ST_INACTIVE;
127                                 sdi->vendor = g_strdup("Fluke");
128                                 sdi->model = g_strdup(tokens[0] + 6);
129                                 sdi->version = g_strdup(tokens[1] + s);
130                                 devc = g_malloc0(sizeof(struct dev_context));
131                                 devc->profile = &supported_flukedmm[i];
132                                 sdi->inst_type = SR_INST_SERIAL;
133                                 sdi->conn = serial;
134                                 sdi->priv = devc;
135                                 sdi->driver = di;
136                                 ch = sr_channel_new(0, SR_CHANNEL_ANALOG, TRUE, "P1");
137                                 sdi->channels = g_slist_append(sdi->channels, ch);
138                                 drvc->instances = g_slist_append(drvc->instances, sdi);
139                                 devices = g_slist_append(devices, sdi);
140                                 break;
141                         }
142                 }
143                 g_strfreev(tokens);
144                 if (devices)
145                         /* Found one. */
146                         break;
147         }
148         serial_close(serial);
149         if (!devices)
150                 sr_serial_dev_inst_free(serial);
151
152         return devices;
153 }
154
155 static GSList *scan(GSList *options)
156 {
157         struct sr_config *src;
158         GSList *l, *devices;
159         int i;
160         const char *conn, *serialcomm;
161
162         conn = serialcomm = NULL;
163         for (l = options; l; l = l->next) {
164                 src = l->data;
165                 switch (src->key) {
166                 case SR_CONF_CONN:
167                         conn = g_variant_get_string(src->data, NULL);
168                         break;
169                 case SR_CONF_SERIALCOMM:
170                         serialcomm = g_variant_get_string(src->data, NULL);
171                         break;
172                 }
173         }
174         if (!conn)
175                 return NULL;
176
177         devices = NULL;
178         if (serialcomm) {
179                 /* Use the provided comm specs. */
180                 devices = fluke_scan(conn, serialcomm);
181         } else {
182                 for (i = 0; scan_conn[i]; i++) {
183                         if ((devices = fluke_scan(conn, scan_conn[i])))
184                                 break;
185                         /* The Scopemeter 199B, at least, requires this
186                          * after all the 115k/9.6k confusion. */
187                         g_usleep(5000);
188                 }
189         }
190
191         return devices;
192 }
193
194 static GSList *dev_list(void)
195 {
196         return ((struct drv_context *)(di->priv))->instances;
197 }
198
199 static int cleanup(void)
200 {
201         return std_dev_clear(di, NULL);
202 }
203
204 static int config_set(uint32_t key, GVariant *data, const struct sr_dev_inst *sdi,
205                 const struct sr_channel_group *cg)
206 {
207         struct dev_context *devc;
208
209         (void)cg;
210
211         if (sdi->status != SR_ST_ACTIVE)
212                 return SR_ERR_DEV_CLOSED;
213
214         if (!(devc = sdi->priv)) {
215                 sr_err("sdi->priv was NULL.");
216                 return SR_ERR_BUG;
217         }
218
219         switch (key) {
220         case SR_CONF_LIMIT_MSEC:
221                 /* TODO: not yet implemented */
222                 if (g_variant_get_uint64(data) == 0) {
223                         sr_err("LIMIT_MSEC can't be 0.");
224                         return SR_ERR;
225                 }
226                 devc->limit_msec = g_variant_get_uint64(data);
227                 sr_dbg("Setting time limit to %" PRIu64 "ms.",
228                        devc->limit_msec);
229                 break;
230         case SR_CONF_LIMIT_SAMPLES:
231                 devc->limit_samples = g_variant_get_uint64(data);
232                 sr_dbg("Setting sample limit to %" PRIu64 ".",
233                        devc->limit_samples);
234                 break;
235         default:
236                 return SR_ERR_NA;
237         }
238
239         return SR_OK;
240 }
241
242 static int config_list(uint32_t key, GVariant **data, const struct sr_dev_inst *sdi,
243                 const struct sr_channel_group *cg)
244 {
245         (void)sdi;
246         (void)cg;
247
248         switch (key) {
249         case SR_CONF_SCAN_OPTIONS:
250                 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
251                                 scanopts, ARRAY_SIZE(scanopts), sizeof(uint32_t));
252                 break;
253         case SR_CONF_DEVICE_OPTIONS:
254                 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
255                                 devopts, ARRAY_SIZE(devopts), sizeof(uint32_t));
256                 break;
257         default:
258                 return SR_ERR_NA;
259         }
260
261         return SR_OK;
262 }
263
264 static int dev_acquisition_start(const struct sr_dev_inst *sdi, void *cb_data)
265 {
266         struct dev_context *devc;
267         struct sr_serial_dev_inst *serial;
268
269         if (sdi->status != SR_ST_ACTIVE)
270                 return SR_ERR_DEV_CLOSED;
271
272         if (!(devc = sdi->priv)) {
273                 sr_err("sdi->priv was NULL.");
274                 return SR_ERR_BUG;
275         }
276
277         devc->cb_data = cb_data;
278
279         /* Send header packet to the session bus. */
280         std_session_send_df_header(cb_data, LOG_PREFIX);
281
282         /* Poll every 100ms, or whenever some data comes in. */
283         serial = sdi->conn;
284         serial_source_add(sdi->session, serial, G_IO_IN, 50,
285                         fluke_receive_data, (void *)sdi);
286
287         if (serial_write_blocking(serial, "QM\r", 3, SERIAL_WRITE_TIMEOUT_MS) < 0) {
288                 sr_err("Unable to send QM.");
289                 return SR_ERR;
290         }
291         devc->cmd_sent_at = g_get_monotonic_time() / 1000;
292         devc->expect_response = TRUE;
293
294         return SR_OK;
295 }
296
297 static int dev_acquisition_stop(struct sr_dev_inst *sdi, void *cb_data)
298 {
299         return std_serial_dev_acquisition_stop(sdi, cb_data, std_serial_dev_close,
300                         sdi->conn, LOG_PREFIX);
301 }
302
303 SR_PRIV struct sr_dev_driver flukedmm_driver_info = {
304         .name = "fluke-dmm",
305         .longname = "Fluke 18x/28x series DMMs",
306         .api_version = 1,
307         .init = init,
308         .cleanup = cleanup,
309         .scan = scan,
310         .dev_list = dev_list,
311         .dev_clear = NULL,
312         .config_get = NULL,
313         .config_set = config_set,
314         .config_list = config_list,
315         .dev_open = std_serial_dev_open,
316         .dev_close = std_serial_dev_close,
317         .dev_acquisition_start = dev_acquisition_start,
318         .dev_acquisition_stop = dev_acquisition_stop,
319         .priv = NULL,
320 };