]> sigrok.org Git - libsigrok.git/blame - src/hardware/uni-t-dmm/api.c
uni-t-dmm: sort supported devices, collect the fs9922 group
[libsigrok.git] / src / hardware / uni-t-dmm / api.c
CommitLineData
79081ec8 1/*
50985c20 2 * This file is part of the libsigrok project.
79081ec8 3 *
bc653a56 4 * Copyright (C) 2012-2013 Uwe Hermann <uwe@hermann-uwe.de>
79081ec8
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 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
2ea1fdf1 17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
79081ec8
UH
18 */
19
6ec6c43b 20#include <config.h>
79081ec8
UH
21#include <stdlib.h>
22#include <string.h>
c1aae900 23#include <libsigrok/libsigrok.h>
79081ec8
UH
24#include "libsigrok-internal.h"
25#include "protocol.h"
26
a0e0bb41 27static const uint32_t scanopts[] = {
431ec7ca 28 SR_CONF_CONN,
73365eae
UH
29};
30
05199c0a 31static const uint32_t drvopts[] = {
1953564a 32 SR_CONF_MULTIMETER,
05199c0a
UH
33};
34
35static const uint32_t devopts[] = {
1953564a 36 SR_CONF_CONTINUOUS,
8a63a406
LPC
37 SR_CONF_LIMIT_SAMPLES | SR_CONF_SET | SR_CONF_GET,
38 SR_CONF_LIMIT_MSEC | SR_CONF_SET | SR_CONF_GET,
79081ec8
UH
39};
40
d9e79c51
UH
41/*
42 * Note 1: The actual baudrate of the Cyrustek ES519xx chip used in this DMM
43 * is 19230. However, the WCH CH9325 chip (UART to USB/HID) used in (some
44 * versions of) the UNI-T UT-D04 cable doesn't support 19230 baud. It only
45 * supports 19200, and setting an unsupported baudrate will result in the
46 * default of 2400 being used (which will not work with this DMM, of course).
47 */
48
f0540611 49static GSList *scan(struct sr_dev_driver *di, GSList *options)
79081ec8 50{
388f9d3e 51 GSList *usb_devices, *devices, *l;
79081ec8 52 struct sr_dev_inst *sdi;
41d9427f 53 struct dev_context *devc;
79081ec8 54 struct drv_context *drvc;
f0540611 55 struct dmm_info *dmm;
388f9d3e 56 struct sr_usb_dev_inst *usb;
431ec7ca 57 struct sr_config *src;
388f9d3e 58 const char *conn;
79081ec8 59
41812aca 60 drvc = di->context;
f0540611 61 dmm = (struct dmm_info *)di;
79081ec8 62
388f9d3e
UH
63 conn = NULL;
64 for (l = options; l; l = l->next) {
431ec7ca
BV
65 src = l->data;
66 switch (src->key) {
67 case SR_CONF_CONN:
7d93a62e 68 conn = g_variant_get_string(src->data, NULL);
388f9d3e
UH
69 break;
70 }
71 }
72 if (!conn)
56e76981 73 return NULL;
41d9427f 74
388f9d3e
UH
75 devices = NULL;
76 if (!(usb_devices = sr_usb_find(drvc->sr_ctx->libusb_ctx, conn))) {
77 g_slist_free_full(usb_devices, g_free);
79081ec8 78 return NULL;
388f9d3e 79 }
79081ec8 80
388f9d3e
UH
81 for (l = usb_devices; l; l = l->next) {
82 usb = l->data;
f57d8ffe 83 devc = g_malloc0(sizeof(struct dev_context));
bc653a56 84 devc->first_run = TRUE;
aac29cc1 85 sdi = g_malloc0(sizeof(struct sr_dev_inst));
0af636be 86 sdi->status = SR_ST_INACTIVE;
f0540611
ML
87 sdi->vendor = g_strdup(dmm->vendor);
88 sdi->model = g_strdup(dmm->device);
41d9427f 89 sdi->priv = devc;
5e23fcab 90 sr_channel_new(sdi, 0, SR_CHANNEL_ANALOG, TRUE, "P1");
3ece1dff
UH
91 sdi->inst_type = SR_INST_USB;
92 sdi->conn = usb;
41d9427f 93 devices = g_slist_append(devices, sdi);
79081ec8
UH
94 }
95
15a5bfe4 96 return std_scan_complete(di, devices);
79081ec8
UH
97}
98
f0540611 99static int dev_open(struct sr_dev_inst *sdi)
79081ec8 100{
f0540611 101 struct sr_dev_driver *di;
388f9d3e 102 struct drv_context *drvc;
3ece1dff 103 struct sr_usb_dev_inst *usb;
41d9427f 104
f0540611 105 di = sdi->driver;
41812aca 106 drvc = di->context;
3ece1dff 107 usb = sdi->conn;
41d9427f 108
7e463623 109 return sr_usb_open(drvc->sr_ctx->libusb_ctx, usb);
79081ec8
UH
110}
111
dd7a72ea
UH
112static int config_set(uint32_t key, GVariant *data,
113 const struct sr_dev_inst *sdi, const struct sr_channel_group *cg)
79081ec8
UH
114{
115 struct dev_context *devc;
116
53b4680f 117 (void)cg;
8f996b89 118
79081ec8
UH
119 devc = sdi->priv;
120
8a63a406 121 return sr_sw_limits_config_set(&devc->limits, key, data);
79081ec8
UH
122}
123
dd7a72ea
UH
124static int config_list(uint32_t key, GVariant **data,
125 const struct sr_dev_inst *sdi, const struct sr_channel_group *cg)
a1c743fc 126{
05199c0a 127 return STD_CONFIG_LIST(key, data, sdi, cg, scanopts, drvopts, devopts);
a1c743fc
BV
128}
129
695dc859 130static int dev_acquisition_start(const struct sr_dev_inst *sdi)
79081ec8 131{
79081ec8
UH
132 struct dev_context *devc;
133
134 devc = sdi->priv;
8a63a406
LPC
135
136 sr_sw_limits_acquisition_start(&devc->limits);
c5ffac41 137
bee2b016 138 std_session_send_df_header(sdi);
79081ec8 139
ca314e06 140 sr_session_source_add(sdi->session, -1, 0, 10,
d9251a2c 141 uni_t_dmm_receive_data, (void *)sdi);
79081ec8
UH
142
143 return SR_OK;
144}
145
695dc859 146static int dev_acquisition_stop(struct sr_dev_inst *sdi)
79081ec8 147{
bee2b016 148 std_session_send_df_end(sdi);
dd7a4a71 149 sr_session_source_remove(sdi->session, -1);
79081ec8
UH
150
151 return SR_OK;
152}
153
f0540611
ML
154#define DMM(ID, CHIPSET, VENDOR, MODEL, BAUDRATE, PACKETSIZE, \
155 VALID, PARSE, DETAILS) \
d9251a2c 156 &((struct dmm_info) { \
f0540611
ML
157 { \
158 .name = ID, \
159 .longname = VENDOR " " MODEL, \
160 .api_version = 1, \
c2fdcc25 161 .init = std_init, \
700d6b64 162 .cleanup = std_cleanup, \
f0540611 163 .scan = scan, \
c01bf34c 164 .dev_list = std_dev_list, \
f778bf02 165 .dev_clear = std_dev_clear, \
f0540611
ML
166 .config_get = NULL, \
167 .config_set = config_set, \
168 .config_list = config_list, \
169 .dev_open = dev_open, \
4d67b9d9 170 .dev_close = std_dummy_dev_close /* TODO */, \
f0540611
ML
171 .dev_acquisition_start = dev_acquisition_start, \
172 .dev_acquisition_stop = dev_acquisition_stop, \
41812aca 173 .context = NULL, \
f0540611
ML
174 }, \
175 VENDOR, MODEL, BAUDRATE, PACKETSIZE, \
176 VALID, PARSE, DETAILS, sizeof(struct CHIPSET##_info) \
dd5c48a6 177 }).di
fdbcb86d 178
dd5c48a6 179SR_REGISTER_DEV_DRIVER_LIST(uni_t_dmm_drivers,
b372c620
GS
180 /* {{{ es519xx */
181 DMM(
182 "uni-t-ut60g", es519xx,
183 /* The baudrate is actually 19230, see "Note 1" below. */
184 "UNI-T", "UT60G", 19200,
185 ES519XX_11B_PACKET_SIZE,
186 sr_es519xx_19200_11b_packet_valid, sr_es519xx_19200_11b_parse,
187 NULL
188 ),
189 DMM(
190 "uni-t-ut61e", es519xx,
191 /* The baudrate is actually 19230, see "Note 1" below. */
192 "UNI-T", "UT61E", 19200,
193 ES519XX_14B_PACKET_SIZE,
194 sr_es519xx_19200_14b_packet_valid, sr_es519xx_19200_14b_parse,
195 NULL
196 ),
197 DMM(
198 "tenma-72-7750", es519xx,
199 /* The baudrate is actually 19230, see "Note 1" below. */
200 "Tenma", "72-7750", 19200,
201 ES519XX_11B_PACKET_SIZE,
202 sr_es519xx_19200_11b_packet_valid, sr_es519xx_19200_11b_parse,
203 NULL
204 ),
205 /* }}} */
b2ea3911 206 /* {{{ fs9721 */
f0540611
ML
207 DMM(
208 "tecpel-dmm-8061", fs9721,
209 "Tecpel", "DMM-8061", 2400,
210 FS9721_PACKET_SIZE,
211 sr_fs9721_packet_valid, sr_fs9721_parse,
212 sr_fs9721_00_temp_c
213 ),
f0540611
ML
214 DMM(
215 "uni-t-ut60a", fs9721,
216 "UNI-T", "UT60A", 2400,
217 FS9721_PACKET_SIZE,
218 sr_fs9721_packet_valid, sr_fs9721_parse,
219 NULL
220 ),
221 DMM(
222 "uni-t-ut60e", fs9721,
223 "UNI-T", "UT60E", 2400,
224 FS9721_PACKET_SIZE,
225 sr_fs9721_packet_valid, sr_fs9721_parse,
226 sr_fs9721_00_temp_c
227 ),
b2ea3911
GS
228 DMM(
229 "voltcraft-vc820", fs9721,
230 "Voltcraft", "VC-820", 2400,
231 FS9721_PACKET_SIZE,
232 sr_fs9721_packet_valid, sr_fs9721_parse,
233 NULL
234 ),
235 DMM(
236 "voltcraft-vc840", fs9721,
237 "Voltcraft", "VC-840", 2400,
238 FS9721_PACKET_SIZE,
239 sr_fs9721_packet_valid, sr_fs9721_parse,
240 sr_fs9721_00_temp_c
241 ),
242 DMM(
243 "tenma-72-7745", fs9721,
244 "Tenma", "72-7745", 2400,
245 FS9721_PACKET_SIZE,
246 sr_fs9721_packet_valid, sr_fs9721_parse,
247 sr_fs9721_00_temp_c
248 ),
249 /* }}} */
3247b7e3
GS
250 /* {{{ fs9922 */
251 DMM(
252 "uni-t-ut61b", fs9922,
253 "UNI-T", "UT61B", 2400,
254 FS9922_PACKET_SIZE,
255 sr_fs9922_packet_valid, sr_fs9922_parse,
256 NULL
257 ),
258 DMM(
259 "uni-t-ut61c", fs9922,
260 "UNI-T", "UT61C", 2400,
261 FS9922_PACKET_SIZE,
262 sr_fs9922_packet_valid, sr_fs9922_parse,
263 NULL
264 ),
265 DMM(
266 "uni-t-ut61d", fs9922,
267 "UNI-T", "UT61D", 2400,
268 FS9922_PACKET_SIZE,
269 sr_fs9922_packet_valid, sr_fs9922_parse,
270 NULL
271 ),
272 DMM(
273 "voltcraft-vc830", fs9922,
274 /*
275 * Note: The VC830 doesn't set the 'volt' and 'diode' bits of
276 * the FS9922 protocol. Instead, it only sets the user-defined
277 * bit "z1" to indicate "diode mode" and "voltage".
278 */
279 "Voltcraft", "VC-830", 2400,
280 FS9922_PACKET_SIZE,
281 sr_fs9922_packet_valid, sr_fs9922_parse,
282 &sr_fs9922_z1_diode
283 ),
284 /* }}} */
6ee37801 285 /* {{{ ut372 */
b2ea3911
GS
286 DMM(
287 "uni-t-ut372", ut372,
288 "UNI-T", "UT372", 2400,
289 UT372_PACKET_SIZE,
290 sr_ut372_packet_valid, sr_ut372_parse,
291 NULL
292 ),
6ee37801
GS
293 /* }}} */
294 /* {{{ ut71x */
f0540611
ML
295 DMM(
296 "uni-t-ut71a", ut71x,
297 "UNI-T", "UT71A", 2400, UT71X_PACKET_SIZE,
298 sr_ut71x_packet_valid, sr_ut71x_parse, NULL
299 ),
300 DMM(
301 "uni-t-ut71b", ut71x,
302 "UNI-T", "UT71B", 2400, UT71X_PACKET_SIZE,
303 sr_ut71x_packet_valid, sr_ut71x_parse, NULL
304 ),
305 DMM(
306 "uni-t-ut71c", ut71x,
307 "UNI-T", "UT71C", 2400, UT71X_PACKET_SIZE,
308 sr_ut71x_packet_valid, sr_ut71x_parse, NULL
309 ),
310 DMM(
311 "uni-t-ut71d", ut71x,
312 "UNI-T", "UT71D", 2400, UT71X_PACKET_SIZE,
313 sr_ut71x_packet_valid, sr_ut71x_parse, NULL
314 ),
315 DMM(
316 "uni-t-ut71e", ut71x,
317 "UNI-T", "UT71E", 2400, UT71X_PACKET_SIZE,
318 sr_ut71x_packet_valid, sr_ut71x_parse, NULL
319 ),
ca7d4426
EE
320 DMM(
321 "uni-t-ut804", ut71x,
322 "UNI-T", "UT804", 2400, UT71X_PACKET_SIZE,
323 sr_ut71x_packet_valid, sr_ut71x_parse, NULL
324 ),
f0540611
ML
325 DMM(
326 "voltcraft-vc920", ut71x,
327 "Voltcraft", "VC-920", 2400, UT71X_PACKET_SIZE,
328 sr_ut71x_packet_valid, sr_ut71x_parse, NULL
329 ),
330 DMM(
331 "voltcraft-vc940", ut71x,
332 "Voltcraft", "VC-940", 2400, UT71X_PACKET_SIZE,
333 sr_ut71x_packet_valid, sr_ut71x_parse, NULL
334 ),
335 DMM(
336 "voltcraft-vc960", ut71x,
337 "Voltcraft", "VC-960", 2400, UT71X_PACKET_SIZE,
338 sr_ut71x_packet_valid, sr_ut71x_parse, NULL
339 ),
b1cadcfb
KP
340 DMM(
341 "tenma-72-7730", ut71x,
342 "Tenma", "72-7730", 2400,
343 UT71X_PACKET_SIZE,
344 sr_ut71x_packet_valid, sr_ut71x_parse, NULL
345 ),
0a4549ff
UH
346 DMM(
347 "tenma-72-7732", ut71x,
348 "Tenma", "72-7732", 2400,
349 UT71X_PACKET_SIZE,
350 sr_ut71x_packet_valid, sr_ut71x_parse, NULL
351 ),
20f9f1fb
UH
352 DMM(
353 "tenma-72-9380a", ut71x,
354 "Tenma", "72-9380A", 2400,
355 UT71X_PACKET_SIZE,
356 sr_ut71x_packet_valid, sr_ut71x_parse, NULL
357 ),
6ee37801 358 /* }}} */
6ee37801
GS
359 DMM(
360 "voltcraft-vc870", vc870,
361 "Voltcraft", "VC-870", 9600, VC870_PACKET_SIZE,
362 sr_vc870_packet_valid, sr_vc870_parse, NULL
363 ),
dd5c48a6 364);