]> sigrok.org Git - libsigrok.git/blob - hardware/uni-t-dmm/api.c
99c026a9059bcc3c89a5c0648b85b62dfb3d9801
[libsigrok.git] / hardware / uni-t-dmm / api.c
1 /*
2  * This file is part of the libsigrok project.
3  *
4  * Copyright (C) 2012-2013 Uwe Hermann <uwe@hermann-uwe.de>
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 2 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, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
19  */
20
21 #include <stdlib.h>
22 #include <string.h>
23 #include "libsigrok.h"
24 #include "libsigrok-internal.h"
25 #include "protocol.h"
26
27 #define UNI_T_UT_D04_NEW "1a86.e008"
28
29 static const int32_t hwopts[] = {
30         SR_CONF_CONN,
31 };
32
33 static const int32_t hwcaps[] = {
34         SR_CONF_MULTIMETER,
35         SR_CONF_LIMIT_SAMPLES,
36         SR_CONF_LIMIT_MSEC,
37         SR_CONF_CONTINUOUS,
38 };
39
40 SR_PRIV struct sr_dev_driver tecpel_dmm_8061_driver_info;
41 SR_PRIV struct sr_dev_driver uni_t_ut60a_driver_info;
42 SR_PRIV struct sr_dev_driver uni_t_ut60e_driver_info;
43 SR_PRIV struct sr_dev_driver uni_t_ut60g_driver_info;
44 SR_PRIV struct sr_dev_driver uni_t_ut61b_driver_info;
45 SR_PRIV struct sr_dev_driver uni_t_ut61c_driver_info;
46 SR_PRIV struct sr_dev_driver uni_t_ut61d_driver_info;
47 SR_PRIV struct sr_dev_driver uni_t_ut61e_driver_info;
48 SR_PRIV struct sr_dev_driver voltcraft_vc820_driver_info;
49 SR_PRIV struct sr_dev_driver voltcraft_vc830_driver_info;
50 SR_PRIV struct sr_dev_driver voltcraft_vc840_driver_info;
51 SR_PRIV struct sr_dev_driver tenma_72_7745_driver_info;
52
53 SR_PRIV struct dmm_info udmms[] = {
54         {
55                 "Tecpel", "DMM-8061", 2400,
56                 FS9721_PACKET_SIZE,
57                 sr_fs9721_packet_valid, sr_fs9721_parse,
58                 sr_fs9721_00_temp_c,
59                 &tecpel_dmm_8061_driver_info, receive_data_TECPEL_DMM_8061,
60         },
61         {
62                 "UNI-T", "UT60A", 2400,
63                 FS9721_PACKET_SIZE,
64                 sr_fs9721_packet_valid, sr_fs9721_parse,
65                 NULL,
66                 &uni_t_ut60a_driver_info, receive_data_UNI_T_UT60A,
67         },
68         {
69                 "UNI-T", "UT60E", 2400,
70                 FS9721_PACKET_SIZE,
71                 sr_fs9721_packet_valid, sr_fs9721_parse,
72                 sr_fs9721_00_temp_c,
73                 &uni_t_ut60e_driver_info, receive_data_UNI_T_UT60E,
74         },
75         {
76                 /*
77                  * Important: The actual baudrate of the Cyrustek ES51986 chip
78                  * used in this DMM is 19230. However, the WCH CH9325 chip
79                  * (UART to USB/HID) used in (some versions of) the UNI-T
80                  * UT-D04 cable doesn't support 19230 baud. It only supports
81                  * 19200, and setting an unsupported baudrate will result in
82                  * the default of 2400 being used (which will not work with
83                  * this DMM, of course).
84                  */
85                 "UNI-T", "UT60G", 19200,
86                 ES519XX_11B_PACKET_SIZE,
87                 sr_es519xx_19200_11b_packet_valid, sr_es519xx_19200_11b_parse,
88                 NULL,
89                 &uni_t_ut60g_driver_info, receive_data_UNI_T_UT60G,
90         },
91         {
92                 "UNI-T", "UT61B", 2400,
93                 FS9922_PACKET_SIZE,
94                 sr_fs9922_packet_valid, sr_fs9922_parse,
95                 NULL,
96                 &uni_t_ut61b_driver_info, receive_data_UNI_T_UT61B,
97         },
98         {
99                 "UNI-T", "UT61C", 2400,
100                 FS9922_PACKET_SIZE,
101                 sr_fs9922_packet_valid, sr_fs9922_parse,
102                 NULL,
103                 &uni_t_ut61c_driver_info, receive_data_UNI_T_UT61C,
104         },
105         {
106                 "UNI-T", "UT61D", 2400,
107                 FS9922_PACKET_SIZE,
108                 sr_fs9922_packet_valid, sr_fs9922_parse,
109                 NULL,
110                 &uni_t_ut61d_driver_info, receive_data_UNI_T_UT61D,
111         },
112         {
113                 /*
114                  * Important: The actual baudrate of the Cyrustek ES51922 chip
115                  * used in this DMM is 19230. However, the WCH CH9325 chip
116                  * (UART to USB/HID) used in (some versions of) the UNI-T
117                  * UT-D04 cable doesn't support 19230 baud. It only supports
118                  * 19200, and setting an unsupported baudrate will result in
119                  * the default of 2400 being used (which will not work with
120                  * this DMM, of course).
121                  */
122                 "UNI-T", "UT61E", 19200,
123                 ES519XX_14B_PACKET_SIZE,
124                 sr_es519xx_19200_14b_packet_valid, sr_es519xx_19200_14b_parse,
125                 NULL,
126                 &uni_t_ut61e_driver_info, receive_data_UNI_T_UT61E,
127         },
128         {
129                 "Voltcraft", "VC-820", 2400,
130                 FS9721_PACKET_SIZE,
131                 sr_fs9721_packet_valid, sr_fs9721_parse,
132                 NULL,
133                 &voltcraft_vc820_driver_info, receive_data_VOLTCRAFT_VC820,
134         },
135         {
136                 /*
137                  * Note: The VC830 doesn't set the 'volt' and 'diode' bits of
138                  * the FS9922 protocol. Instead, it only sets the user-defined
139                  * bit "z1" to indicate "diode mode" and "voltage".
140                  */
141                 "Voltcraft", "VC-830", 2400,
142                 FS9922_PACKET_SIZE,
143                 sr_fs9922_packet_valid, sr_fs9922_parse,
144                 &sr_fs9922_z1_diode,
145                 &voltcraft_vc830_driver_info, receive_data_VOLTCRAFT_VC830,
146         },
147         {
148                 "Voltcraft", "VC-840", 2400,
149                 FS9721_PACKET_SIZE,
150                 sr_fs9721_packet_valid, sr_fs9721_parse,
151                 sr_fs9721_00_temp_c,
152                 &voltcraft_vc840_driver_info, receive_data_VOLTCRAFT_VC840,
153         },
154         {
155                 "Tenma", "72-7745", 2400,
156                 FS9721_PACKET_SIZE,
157                 sr_fs9721_packet_valid, sr_fs9721_parse,
158                 sr_fs9721_00_temp_c,
159                 &tenma_72_7745_driver_info,
160                 /* This is a basic rebadge of the UT60E. */
161                 receive_data_UNI_T_UT60E,
162         },
163 };
164
165 static int dev_clear(int dmm)
166 {
167         return std_dev_clear(udmms[dmm].di, NULL);
168 }
169
170 static int init(struct sr_context *sr_ctx, int dmm)
171 {
172         sr_dbg("Selected '%s' subdriver.", udmms[dmm].di->name);
173
174         return std_init(sr_ctx, udmms[dmm].di, LOG_PREFIX);
175 }
176
177 static GSList *scan(GSList *options, int dmm)
178 {
179         GSList *usb_devices, *devices, *l;
180         struct sr_dev_inst *sdi;
181         struct dev_context *devc;
182         struct drv_context *drvc;
183         struct sr_usb_dev_inst *usb;
184         struct sr_config *src;
185         struct sr_probe *probe;
186         const char *conn;
187
188         drvc = udmms[dmm].di->priv;
189
190         conn = NULL;
191         for (l = options; l; l = l->next) {
192                 src = l->data;
193                 switch (src->key) {
194                 case SR_CONF_CONN:
195                         conn = g_variant_get_string(src->data, NULL);
196                         break;
197                 }
198         }
199         if (!conn)
200                 return NULL;
201
202         devices = NULL;
203         if (!(usb_devices = sr_usb_find(drvc->sr_ctx->libusb_ctx, conn))) {
204                 g_slist_free_full(usb_devices, g_free);
205                 return NULL;
206         }
207
208         for (l = usb_devices; l; l = l->next) {
209                 usb = l->data;
210
211                 if (!(devc = g_try_malloc0(sizeof(struct dev_context)))) {
212                         sr_err("Device context malloc failed.");
213                         return NULL;
214                 }
215
216                 devc->first_run = TRUE;
217
218                 if (!(sdi = sr_dev_inst_new(0, SR_ST_INACTIVE,
219                                 udmms[dmm].vendor, udmms[dmm].device, NULL))) {
220                         sr_err("sr_dev_inst_new returned NULL.");
221                         return NULL;
222                 }
223                 sdi->priv = devc;
224                 sdi->driver = udmms[dmm].di;
225                 if (!(probe = sr_probe_new(0, SR_PROBE_ANALOG, TRUE, "P1")))
226                         return NULL;
227                 sdi->probes = g_slist_append(sdi->probes, probe);
228
229                 sdi->inst_type = SR_INST_USB;
230                 sdi->conn = usb;
231
232                 drvc->instances = g_slist_append(drvc->instances, sdi);
233                 devices = g_slist_append(devices, sdi);
234         }
235
236         return devices;
237 }
238
239 static GSList *dev_list(int dmm)
240 {
241         return ((struct drv_context *)(udmms[dmm].di->priv))->instances;
242 }
243
244 static int dev_open(struct sr_dev_inst *sdi, int dmm)
245 {
246         struct drv_context *drvc;
247         struct sr_usb_dev_inst *usb;
248         int ret;
249
250         drvc = udmms[dmm].di->priv;
251         usb = sdi->conn;
252
253         if ((ret = sr_usb_open(drvc->sr_ctx->libusb_ctx, usb)) == SR_OK)
254                 sdi->status = SR_ST_ACTIVE;
255
256         return ret;
257 }
258
259 static int dev_close(struct sr_dev_inst *sdi)
260 {
261         (void)sdi;
262
263         /* TODO */
264
265         sdi->status = SR_ST_INACTIVE;
266
267         return SR_OK;
268 }
269
270 static int cleanup(int dmm)
271 {
272         return dev_clear(dmm);
273 }
274
275 static int config_set(int id, GVariant *data, const struct sr_dev_inst *sdi,
276                 const struct sr_probe_group *probe_group)
277 {
278         struct dev_context *devc;
279
280         (void)probe_group;
281
282         devc = sdi->priv;
283
284         switch (id) {
285         case SR_CONF_LIMIT_MSEC:
286                 if (g_variant_get_uint64(data) == 0) {
287                         sr_err("Time limit cannot be 0.");
288                         return SR_ERR;
289                 }
290                 devc->limit_msec = g_variant_get_uint64(data);
291                 sr_dbg("Setting time limit to %" PRIu64 "ms.",
292                        devc->limit_msec);
293                 break;
294         case SR_CONF_LIMIT_SAMPLES:
295                 if (g_variant_get_uint64(data) == 0) {
296                         sr_err("Sample limit cannot be 0.");
297                         return SR_ERR;
298                 }
299                 devc->limit_samples = g_variant_get_uint64(data);
300                 sr_dbg("Setting sample limit to %" PRIu64 ".",
301                        devc->limit_samples);
302                 break;
303         default:
304                 return SR_ERR_NA;
305         }
306
307         return SR_OK;
308 }
309
310 static int config_list(int key, GVariant **data, const struct sr_dev_inst *sdi,
311                 const struct sr_probe_group *probe_group)
312 {
313         (void)sdi;
314         (void)probe_group;
315
316         switch (key) {
317         case SR_CONF_SCAN_OPTIONS:
318                 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_INT32,
319                                 hwopts, ARRAY_SIZE(hwopts), sizeof(int32_t));
320                 break;
321         case SR_CONF_DEVICE_OPTIONS:
322                 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_INT32,
323                                 hwcaps, ARRAY_SIZE(hwcaps), sizeof(int32_t));
324                 break;
325         default:
326                 return SR_ERR_NA;
327         }
328
329         return SR_OK;
330 }
331
332 static int dev_acquisition_start(const struct sr_dev_inst *sdi,
333                                     void *cb_data, int dmm)
334 {
335         struct dev_context *devc;
336
337         devc = sdi->priv;
338
339         devc->cb_data = cb_data;
340
341         devc->starttime = g_get_monotonic_time();
342
343         /* Send header packet to the session bus. */
344         std_session_send_df_header(cb_data, LOG_PREFIX);
345
346         sr_source_add(0, 0, 10 /* poll_timeout */,
347                       udmms[dmm].receive_data, (void *)sdi);
348
349         return SR_OK;
350 }
351
352 static int dev_acquisition_stop(struct sr_dev_inst *sdi, void *cb_data)
353 {
354         struct sr_datafeed_packet packet;
355
356         (void)sdi;
357
358         sr_dbg("Stopping acquisition.");
359
360         /* Send end packet to the session bus. */
361         sr_dbg("Sending SR_DF_END.");
362         packet.type = SR_DF_END;
363         sr_session_send(cb_data, &packet);
364
365         /* TODO? */
366         sr_source_remove(0);
367
368         return SR_OK;
369 }
370
371 /* Driver-specific API function wrappers */
372 #define HW_INIT(X) \
373 static int init_##X(struct sr_context *sr_ctx) { return init(sr_ctx, X); }
374 #define HW_CLEANUP(X) \
375 static int cleanup_##X(void) { return cleanup(X); }
376 #define HW_SCAN(X) \
377 static GSList *scan_##X(GSList *options) { return scan(options, X); }
378 #define HW_DEV_LIST(X) \
379 static GSList *dev_list_##X(void) { return dev_list(X); }
380 #define HW_DEV_CLEAR(X) \
381 static int dev_clear_##X(void) { return dev_clear(X); }
382 #define HW_DEV_ACQUISITION_START(X) \
383 static int dev_acquisition_start_##X(const struct sr_dev_inst *sdi, \
384 void *cb_data) { return dev_acquisition_start(sdi, cb_data, X); }
385 #define HW_DEV_OPEN(X) \
386 static int dev_open_##X(struct sr_dev_inst *sdi) { return dev_open(sdi, X); }
387
388 /* Driver structs and API function wrappers */
389 #define DRV(ID, ID_UPPER, NAME, LONGNAME) \
390 HW_INIT(ID_UPPER) \
391 HW_CLEANUP(ID_UPPER) \
392 HW_SCAN(ID_UPPER) \
393 HW_DEV_LIST(ID_UPPER) \
394 HW_DEV_CLEAR(ID_UPPER) \
395 HW_DEV_ACQUISITION_START(ID_UPPER) \
396 HW_DEV_OPEN(ID_UPPER) \
397 SR_PRIV struct sr_dev_driver ID##_driver_info = { \
398         .name = NAME, \
399         .longname = LONGNAME, \
400         .api_version = 1, \
401         .init = init_##ID_UPPER, \
402         .cleanup = cleanup_##ID_UPPER, \
403         .scan = scan_##ID_UPPER, \
404         .dev_list = dev_list_##ID_UPPER, \
405         .dev_clear = dev_clear_##ID_UPPER, \
406         .config_get = NULL, \
407         .config_set = config_set, \
408         .config_list = config_list, \
409         .dev_open = dev_open_##ID_UPPER, \
410         .dev_close = dev_close, \
411         .dev_acquisition_start = dev_acquisition_start_##ID_UPPER, \
412         .dev_acquisition_stop = dev_acquisition_stop, \
413         .priv = NULL, \
414 };
415
416 DRV(tecpel_dmm_8061, TECPEL_DMM_8061, "tecpel-dmm-8061", "Tecpel DMM-8061")
417 DRV(uni_t_ut60a, UNI_T_UT60A, "uni-t-ut60a", "UNI-T UT60A")
418 DRV(uni_t_ut60e, UNI_T_UT60E, "uni-t-ut60e", "UNI-T UT60E")
419 DRV(uni_t_ut60g, UNI_T_UT60G, "uni-t-ut60g", "UNI-T UT60G")
420 DRV(uni_t_ut61b, UNI_T_UT61B, "uni-t-ut61b", "UNI-T UT61B")
421 DRV(uni_t_ut61c, UNI_T_UT61C, "uni-t-ut61c", "UNI-T UT61C")
422 DRV(uni_t_ut61d, UNI_T_UT61D, "uni-t-ut61d", "UNI-T UT61D")
423 DRV(uni_t_ut61e, UNI_T_UT61E, "uni-t-ut61e", "UNI-T UT61E")
424 DRV(voltcraft_vc820, VOLTCRAFT_VC820, "voltcraft-vc820", "Voltcraft VC-820")
425 DRV(voltcraft_vc830, VOLTCRAFT_VC830, "voltcraft-vc830", "Voltcraft VC-830")
426 DRV(voltcraft_vc840, VOLTCRAFT_VC840, "voltcraft-vc840", "Voltcraft VC-840")
427 DRV(tenma_72_7745, TENMA_72_7745, "tenma-72-7745", "Tenma 72-7745")