]> sigrok.org Git - libsigrok.git/blame - src/hardware/uni-t-dmm/api.c
fx2lafw: Replace obsoleted strncmp() calls.
[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
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
388f9d3e
UH
27#define UNI_T_UT_D04_NEW "1a86.e008"
28
a0e0bb41 29static const uint32_t scanopts[] = {
431ec7ca 30 SR_CONF_CONN,
73365eae
UH
31};
32
f254bc4b 33static const uint32_t devopts[] = {
1953564a 34 SR_CONF_MULTIMETER,
1953564a 35 SR_CONF_CONTINUOUS,
5827f61b
BV
36 SR_CONF_LIMIT_SAMPLES | SR_CONF_SET,
37 SR_CONF_LIMIT_MSEC | SR_CONF_SET,
79081ec8
UH
38};
39
b6bad47c 40SR_PRIV struct sr_dev_driver tecpel_dmm_8061_driver_info;
f3cde309 41SR_PRIV struct sr_dev_driver uni_t_ut372_driver_info;
a7a163a7
FK
42SR_PRIV struct sr_dev_driver uni_t_ut60a_driver_info;
43SR_PRIV struct sr_dev_driver uni_t_ut60e_driver_info;
4104ef81 44SR_PRIV struct sr_dev_driver uni_t_ut60g_driver_info;
7cb69b18 45SR_PRIV struct sr_dev_driver uni_t_ut61b_driver_info;
5f985df2 46SR_PRIV struct sr_dev_driver uni_t_ut61c_driver_info;
fdbcb86d 47SR_PRIV struct sr_dev_driver uni_t_ut61d_driver_info;
bbef5e32 48SR_PRIV struct sr_dev_driver uni_t_ut61e_driver_info;
8769478c
UH
49SR_PRIV struct sr_dev_driver uni_t_ut71a_driver_info;
50SR_PRIV struct sr_dev_driver uni_t_ut71b_driver_info;
51SR_PRIV struct sr_dev_driver uni_t_ut71c_driver_info;
52SR_PRIV struct sr_dev_driver uni_t_ut71d_driver_info;
53SR_PRIV struct sr_dev_driver uni_t_ut71e_driver_info;
fdbcb86d 54SR_PRIV struct sr_dev_driver voltcraft_vc820_driver_info;
c1345749 55SR_PRIV struct sr_dev_driver voltcraft_vc830_driver_info;
695d0e1e 56SR_PRIV struct sr_dev_driver voltcraft_vc840_driver_info;
8769478c
UH
57SR_PRIV struct sr_dev_driver voltcraft_vc920_driver_info;
58SR_PRIV struct sr_dev_driver voltcraft_vc940_driver_info;
59SR_PRIV struct sr_dev_driver voltcraft_vc960_driver_info;
5e1f7c89 60SR_PRIV struct sr_dev_driver tenma_72_7745_driver_info;
d9e79c51 61SR_PRIV struct sr_dev_driver tenma_72_7750_driver_info;
6ac5f892 62
c8852687 63SR_PRIV struct dmm_info udmms[] = {
b6bad47c
UH
64 {
65 "Tecpel", "DMM-8061", 2400,
26e0361c 66 FS9721_PACKET_SIZE,
b6bad47c
UH
67 sr_fs9721_packet_valid, sr_fs9721_parse,
68 sr_fs9721_00_temp_c,
69 &tecpel_dmm_8061_driver_info, receive_data_TECPEL_DMM_8061,
70 },
f3cde309
ML
71 {
72 "UNI-T", "UT372", 2400,
73 UT372_PACKET_SIZE,
74 sr_ut372_packet_valid, sr_ut372_parse,
75 NULL,
76 &uni_t_ut372_driver_info, receive_data_UNI_T_UT372,
77 },
a7a163a7
FK
78 {
79 "UNI-T", "UT60A", 2400,
26e0361c 80 FS9721_PACKET_SIZE,
a7a163a7
FK
81 sr_fs9721_packet_valid, sr_fs9721_parse,
82 NULL,
83 &uni_t_ut60a_driver_info, receive_data_UNI_T_UT60A,
84 },
85 {
86 "UNI-T", "UT60E", 2400,
26e0361c 87 FS9721_PACKET_SIZE,
a7a163a7
FK
88 sr_fs9721_packet_valid, sr_fs9721_parse,
89 sr_fs9721_00_temp_c,
90 &uni_t_ut60e_driver_info, receive_data_UNI_T_UT60E,
91 },
4104ef81 92 {
d9e79c51 93 /* The baudrate is actually 19230, see "Note 1" below. */
4104ef81
UH
94 "UNI-T", "UT60G", 19200,
95 ES519XX_11B_PACKET_SIZE,
96 sr_es519xx_19200_11b_packet_valid, sr_es519xx_19200_11b_parse,
97 NULL,
98 &uni_t_ut60g_driver_info, receive_data_UNI_T_UT60G,
99 },
5f985df2 100 {
79bc9924 101 "UNI-T", "UT61B", 2400,
5f985df2
UH
102 FS9922_PACKET_SIZE,
103 sr_fs9922_packet_valid, sr_fs9922_parse,
104 NULL,
79bc9924 105 &uni_t_ut61b_driver_info, receive_data_UNI_T_UT61B,
5f985df2 106 },
7cb69b18 107 {
79bc9924 108 "UNI-T", "UT61C", 2400,
7cb69b18
UH
109 FS9922_PACKET_SIZE,
110 sr_fs9922_packet_valid, sr_fs9922_parse,
111 NULL,
79bc9924 112 &uni_t_ut61c_driver_info, receive_data_UNI_T_UT61C,
7cb69b18 113 },
c8852687 114 {
767aae30 115 "UNI-T", "UT61D", 2400,
26e0361c 116 FS9922_PACKET_SIZE,
c8852687
UH
117 sr_fs9922_packet_valid, sr_fs9922_parse,
118 NULL,
119 &uni_t_ut61d_driver_info, receive_data_UNI_T_UT61D,
120 },
bbef5e32 121 {
d9e79c51 122 /* The baudrate is actually 19230, see "Note 1" below. */
4d7ddff7 123 "UNI-T", "UT61E", 19200,
d97824e5
AJ
124 ES519XX_14B_PACKET_SIZE,
125 sr_es519xx_19200_14b_packet_valid, sr_es519xx_19200_14b_parse,
bbef5e32
UH
126 NULL,
127 &uni_t_ut61e_driver_info, receive_data_UNI_T_UT61E,
128 },
8769478c
UH
129 {
130 "UNI-T", "UT71A", 2400, UT71X_PACKET_SIZE,
131 sr_ut71x_packet_valid, sr_ut71x_parse, NULL,
132 &uni_t_ut71a_driver_info, receive_data_UNI_T_UT71A,
133 },
134 {
135 "UNI-T", "UT71B", 2400, UT71X_PACKET_SIZE,
136 sr_ut71x_packet_valid, sr_ut71x_parse, NULL,
137 &uni_t_ut71b_driver_info, receive_data_UNI_T_UT71B,
138 },
139 {
140 "UNI-T", "UT71C", 2400, UT71X_PACKET_SIZE,
141 sr_ut71x_packet_valid, sr_ut71x_parse, NULL,
142 &uni_t_ut71c_driver_info, receive_data_UNI_T_UT71C,
143 },
144 {
145 "UNI-T", "UT71D", 2400, UT71X_PACKET_SIZE,
146 sr_ut71x_packet_valid, sr_ut71x_parse, NULL,
147 &uni_t_ut71d_driver_info, receive_data_UNI_T_UT71D,
148 },
149 {
150 "UNI-T", "UT71E", 2400, UT71X_PACKET_SIZE,
151 sr_ut71x_packet_valid, sr_ut71x_parse, NULL,
152 &uni_t_ut71e_driver_info, receive_data_UNI_T_UT71E,
153 },
c8852687 154 {
bc653a56 155 "Voltcraft", "VC-820", 2400,
26e0361c 156 FS9721_PACKET_SIZE,
c8852687
UH
157 sr_fs9721_packet_valid, sr_fs9721_parse,
158 NULL,
159 &voltcraft_vc820_driver_info, receive_data_VOLTCRAFT_VC820,
160 },
c1345749 161 {
e52bb9be
UH
162 /*
163 * Note: The VC830 doesn't set the 'volt' and 'diode' bits of
164 * the FS9922 protocol. Instead, it only sets the user-defined
165 * bit "z1" to indicate "diode mode" and "voltage".
166 */
c1345749 167 "Voltcraft", "VC-830", 2400,
26e0361c 168 FS9922_PACKET_SIZE,
c1345749 169 sr_fs9922_packet_valid, sr_fs9922_parse,
e52bb9be 170 &sr_fs9922_z1_diode,
c1345749
UH
171 &voltcraft_vc830_driver_info, receive_data_VOLTCRAFT_VC830,
172 },
695d0e1e
UH
173 {
174 "Voltcraft", "VC-840", 2400,
26e0361c 175 FS9721_PACKET_SIZE,
695d0e1e 176 sr_fs9721_packet_valid, sr_fs9721_parse,
2451a20f 177 sr_fs9721_00_temp_c,
695d0e1e
UH
178 &voltcraft_vc840_driver_info, receive_data_VOLTCRAFT_VC840,
179 },
8769478c
UH
180 {
181 "Voltcraft", "VC-920", 2400, UT71X_PACKET_SIZE,
182 sr_ut71x_packet_valid, sr_ut71x_parse, NULL,
183 &voltcraft_vc920_driver_info, receive_data_VOLTCRAFT_VC920,
184 },
185 {
186 "Voltcraft", "VC-940", 2400, UT71X_PACKET_SIZE,
187 sr_ut71x_packet_valid, sr_ut71x_parse, NULL,
188 &voltcraft_vc940_driver_info, receive_data_VOLTCRAFT_VC940,
189 },
190 {
191 "Voltcraft", "VC-960", 2400, UT71X_PACKET_SIZE,
192 sr_ut71x_packet_valid, sr_ut71x_parse, NULL,
193 &voltcraft_vc960_driver_info, receive_data_VOLTCRAFT_VC960,
194 },
5e1f7c89
BV
195 {
196 "Tenma", "72-7745", 2400,
197 FS9721_PACKET_SIZE,
198 sr_fs9721_packet_valid, sr_fs9721_parse,
199 sr_fs9721_00_temp_c,
d9e79c51
UH
200 &tenma_72_7745_driver_info, receive_data_TENMA_72_7745,
201 },
202 {
203 /* The baudrate is actually 19230, see "Note 1" below. */
204 "Tenma", "72-7750", 19200,
205 ES519XX_11B_PACKET_SIZE,
206 sr_es519xx_19200_11b_packet_valid, sr_es519xx_19200_11b_parse,
207 NULL,
208 &tenma_72_7750_driver_info, receive_data_TENMA_72_7750,
5e1f7c89 209 },
c8852687 210};
6ac5f892 211
d9e79c51
UH
212/*
213 * Note 1: The actual baudrate of the Cyrustek ES519xx chip used in this DMM
214 * is 19230. However, the WCH CH9325 chip (UART to USB/HID) used in (some
215 * versions of) the UNI-T UT-D04 cable doesn't support 19230 baud. It only
216 * supports 19200, and setting an unsupported baudrate will result in the
217 * default of 2400 being used (which will not work with this DMM, of course).
218 */
219
3b412e3a 220static int dev_clear(int dmm)
79081ec8 221{
8dca646e 222 return std_dev_clear(udmms[dmm].di, NULL);
79081ec8
UH
223}
224
6078d2c9 225static int init(struct sr_context *sr_ctx, int dmm)
79081ec8 226{
f6beaac5 227 return std_init(sr_ctx, udmms[dmm].di, LOG_PREFIX);
fdbcb86d
UH
228}
229
6078d2c9 230static GSList *scan(GSList *options, int dmm)
79081ec8 231{
388f9d3e 232 GSList *usb_devices, *devices, *l;
79081ec8 233 struct sr_dev_inst *sdi;
41d9427f 234 struct dev_context *devc;
79081ec8 235 struct drv_context *drvc;
388f9d3e 236 struct sr_usb_dev_inst *usb;
431ec7ca 237 struct sr_config *src;
ba7dd8bb 238 struct sr_channel *ch;
388f9d3e 239 const char *conn;
79081ec8 240
c8852687 241 drvc = udmms[dmm].di->priv;
79081ec8 242
388f9d3e
UH
243 conn = NULL;
244 for (l = options; l; l = l->next) {
431ec7ca
BV
245 src = l->data;
246 switch (src->key) {
247 case SR_CONF_CONN:
7d93a62e 248 conn = g_variant_get_string(src->data, NULL);
388f9d3e
UH
249 break;
250 }
251 }
252 if (!conn)
56e76981 253 return NULL;
41d9427f 254
388f9d3e
UH
255 devices = NULL;
256 if (!(usb_devices = sr_usb_find(drvc->sr_ctx->libusb_ctx, conn))) {
257 g_slist_free_full(usb_devices, g_free);
79081ec8 258 return NULL;
388f9d3e 259 }
79081ec8 260
388f9d3e
UH
261 for (l = usb_devices; l; l = l->next) {
262 usb = l->data;
f57d8ffe 263 devc = g_malloc0(sizeof(struct dev_context));
bc653a56 264 devc->first_run = TRUE;
aac29cc1 265 sdi = g_malloc0(sizeof(struct sr_dev_inst));
0af636be
UH
266 sdi->status = SR_ST_INACTIVE;
267 sdi->vendor = g_strdup(udmms[dmm].vendor);
268 sdi->model = g_strdup(udmms[dmm].device);
41d9427f 269 sdi->priv = devc;
c8852687 270 sdi->driver = udmms[dmm].di;
c368e6f3 271 ch = sr_channel_new(0, SR_CHANNEL_ANALOG, TRUE, "P1");
ba7dd8bb 272 sdi->channels = g_slist_append(sdi->channels, ch);
3ece1dff
UH
273 sdi->inst_type = SR_INST_USB;
274 sdi->conn = usb;
388f9d3e 275 drvc->instances = g_slist_append(drvc->instances, sdi);
41d9427f 276 devices = g_slist_append(devices, sdi);
79081ec8
UH
277 }
278
279 return devices;
280}
281
6078d2c9 282static GSList *dev_list(int dmm)
79081ec8 283{
bc653a56 284 return ((struct drv_context *)(udmms[dmm].di->priv))->instances;
79081ec8
UH
285}
286
6078d2c9 287static int dev_open(struct sr_dev_inst *sdi, int dmm)
79081ec8 288{
388f9d3e 289 struct drv_context *drvc;
3ece1dff 290 struct sr_usb_dev_inst *usb;
bc653a56 291 int ret;
41d9427f 292
c8852687 293 drvc = udmms[dmm].di->priv;
3ece1dff 294 usb = sdi->conn;
41d9427f 295
3ece1dff 296 if ((ret = sr_usb_open(drvc->sr_ctx->libusb_ctx, usb)) == SR_OK)
bc653a56 297 sdi->status = SR_ST_ACTIVE;
e73ffd42 298
bc653a56 299 return ret;
79081ec8
UH
300}
301
6078d2c9 302static int dev_close(struct sr_dev_inst *sdi)
79081ec8 303{
79081ec8
UH
304 /* TODO */
305
bc653a56 306 sdi->status = SR_ST_INACTIVE;
e73ffd42 307
79081ec8
UH
308 return SR_OK;
309}
310
6078d2c9 311static int cleanup(int dmm)
79081ec8 312{
3b412e3a 313 return dev_clear(dmm);
79081ec8
UH
314}
315
584560f1 316static int config_set(uint32_t key, GVariant *data, const struct sr_dev_inst *sdi,
53b4680f 317 const struct sr_channel_group *cg)
79081ec8
UH
318{
319 struct dev_context *devc;
320
53b4680f 321 (void)cg;
8f996b89 322
79081ec8
UH
323 devc = sdi->priv;
324
584560f1 325 switch (key) {
1953564a 326 case SR_CONF_LIMIT_MSEC:
7d93a62e 327 if (g_variant_get_uint64(data) == 0) {
79081ec8
UH
328 sr_err("Time limit cannot be 0.");
329 return SR_ERR;
330 }
7d93a62e 331 devc->limit_msec = g_variant_get_uint64(data);
79081ec8
UH
332 sr_dbg("Setting time limit to %" PRIu64 "ms.",
333 devc->limit_msec);
334 break;
1953564a 335 case SR_CONF_LIMIT_SAMPLES:
7d93a62e 336 if (g_variant_get_uint64(data) == 0) {
79081ec8
UH
337 sr_err("Sample limit cannot be 0.");
338 return SR_ERR;
339 }
7d93a62e 340 devc->limit_samples = g_variant_get_uint64(data);
79081ec8
UH
341 sr_dbg("Setting sample limit to %" PRIu64 ".",
342 devc->limit_samples);
343 break;
344 default:
bd6fbf62 345 return SR_ERR_NA;
79081ec8
UH
346 }
347
348 return SR_OK;
349}
350
584560f1 351static int config_list(uint32_t key, GVariant **data, const struct sr_dev_inst *sdi,
53b4680f 352 const struct sr_channel_group *cg)
a1c743fc 353{
a1c743fc 354 (void)sdi;
53b4680f 355 (void)cg;
a1c743fc
BV
356
357 switch (key) {
0d485e30 358 case SR_CONF_SCAN_OPTIONS:
584560f1 359 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
a0e0bb41 360 scanopts, ARRAY_SIZE(scanopts), sizeof(uint32_t));
0d485e30 361 break;
9a6517d1 362 case SR_CONF_DEVICE_OPTIONS:
584560f1 363 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
f254bc4b 364 devopts, ARRAY_SIZE(devopts), sizeof(uint32_t));
9a6517d1 365 break;
a1c743fc 366 default:
bd6fbf62 367 return SR_ERR_NA;
a1c743fc
BV
368 }
369
370 return SR_OK;
371}
372
6078d2c9 373static int dev_acquisition_start(const struct sr_dev_inst *sdi,
c8852687 374 void *cb_data, int dmm)
79081ec8 375{
79081ec8
UH
376 struct dev_context *devc;
377
378 devc = sdi->priv;
379
79081ec8
UH
380 devc->cb_data = cb_data;
381
c5ffac41
UH
382 devc->starttime = g_get_monotonic_time();
383
79081ec8 384 /* Send header packet to the session bus. */
102f1239 385 std_session_send_df_header(sdi, LOG_PREFIX);
79081ec8 386
102f1239 387 sr_session_source_add(sdi->session, 0, 0, 10 /* poll_timeout */,
c8852687 388 udmms[dmm].receive_data, (void *)sdi);
79081ec8
UH
389
390 return SR_OK;
391}
392
6078d2c9 393static int dev_acquisition_stop(struct sr_dev_inst *sdi, void *cb_data)
79081ec8
UH
394{
395 struct sr_datafeed_packet packet;
396
102f1239 397 (void)cb_data;
79081ec8
UH
398
399 sr_dbg("Stopping acquisition.");
400
401 /* Send end packet to the session bus. */
402 sr_dbg("Sending SR_DF_END.");
403 packet.type = SR_DF_END;
102f1239 404 sr_session_send(sdi, &packet);
79081ec8 405
102f1239 406 sr_session_source_remove(sdi->session, 0);
79081ec8
UH
407
408 return SR_OK;
409}
410
c8852687
UH
411/* Driver-specific API function wrappers */
412#define HW_INIT(X) \
6078d2c9 413static int init_##X(struct sr_context *sr_ctx) { return init(sr_ctx, X); }
c8852687 414#define HW_CLEANUP(X) \
6078d2c9 415static int cleanup_##X(void) { return cleanup(X); }
c8852687 416#define HW_SCAN(X) \
6078d2c9 417static GSList *scan_##X(GSList *options) { return scan(options, X); }
c8852687 418#define HW_DEV_LIST(X) \
6078d2c9 419static GSList *dev_list_##X(void) { return dev_list(X); }
3b412e3a
UH
420#define HW_DEV_CLEAR(X) \
421static int dev_clear_##X(void) { return dev_clear(X); }
c8852687 422#define HW_DEV_ACQUISITION_START(X) \
6078d2c9
UH
423static int dev_acquisition_start_##X(const struct sr_dev_inst *sdi, \
424void *cb_data) { return dev_acquisition_start(sdi, cb_data, X); }
c8852687 425#define HW_DEV_OPEN(X) \
6078d2c9 426static int dev_open_##X(struct sr_dev_inst *sdi) { return dev_open(sdi, X); }
c8852687
UH
427
428/* Driver structs and API function wrappers */
429#define DRV(ID, ID_UPPER, NAME, LONGNAME) \
430HW_INIT(ID_UPPER) \
431HW_CLEANUP(ID_UPPER) \
432HW_SCAN(ID_UPPER) \
433HW_DEV_LIST(ID_UPPER) \
3b412e3a 434HW_DEV_CLEAR(ID_UPPER) \
c8852687
UH
435HW_DEV_ACQUISITION_START(ID_UPPER) \
436HW_DEV_OPEN(ID_UPPER) \
437SR_PRIV struct sr_dev_driver ID##_driver_info = { \
438 .name = NAME, \
439 .longname = LONGNAME, \
440 .api_version = 1, \
6078d2c9
UH
441 .init = init_##ID_UPPER, \
442 .cleanup = cleanup_##ID_UPPER, \
443 .scan = scan_##ID_UPPER, \
444 .dev_list = dev_list_##ID_UPPER, \
3b412e3a 445 .dev_clear = dev_clear_##ID_UPPER, \
c8852687
UH
446 .config_get = NULL, \
447 .config_set = config_set, \
448 .config_list = config_list, \
6078d2c9
UH
449 .dev_open = dev_open_##ID_UPPER, \
450 .dev_close = dev_close, \
451 .dev_acquisition_start = dev_acquisition_start_##ID_UPPER, \
452 .dev_acquisition_stop = dev_acquisition_stop, \
c8852687 453 .priv = NULL, \
fdbcb86d
UH
454};
455
b6bad47c 456DRV(tecpel_dmm_8061, TECPEL_DMM_8061, "tecpel-dmm-8061", "Tecpel DMM-8061")
f3cde309 457DRV(uni_t_ut372, UNI_T_UT372, "uni-t-ut372", "UNI-T UT372")
a7a163a7
FK
458DRV(uni_t_ut60a, UNI_T_UT60A, "uni-t-ut60a", "UNI-T UT60A")
459DRV(uni_t_ut60e, UNI_T_UT60E, "uni-t-ut60e", "UNI-T UT60E")
4104ef81 460DRV(uni_t_ut60g, UNI_T_UT60G, "uni-t-ut60g", "UNI-T UT60G")
7cb69b18 461DRV(uni_t_ut61b, UNI_T_UT61B, "uni-t-ut61b", "UNI-T UT61B")
5f985df2 462DRV(uni_t_ut61c, UNI_T_UT61C, "uni-t-ut61c", "UNI-T UT61C")
c8852687 463DRV(uni_t_ut61d, UNI_T_UT61D, "uni-t-ut61d", "UNI-T UT61D")
bbef5e32 464DRV(uni_t_ut61e, UNI_T_UT61E, "uni-t-ut61e", "UNI-T UT61E")
8769478c
UH
465DRV(uni_t_ut71a, UNI_T_UT71A, "uni-t-ut71a", "UNI-T UT71A")
466DRV(uni_t_ut71b, UNI_T_UT71B, "uni-t-ut71b", "UNI-T UT71B")
467DRV(uni_t_ut71c, UNI_T_UT71C, "uni-t-ut71c", "UNI-T UT71C")
468DRV(uni_t_ut71d, UNI_T_UT71D, "uni-t-ut71d", "UNI-T UT71D")
469DRV(uni_t_ut71e, UNI_T_UT71E, "uni-t-ut71e", "UNI-T UT71E")
c8852687 470DRV(voltcraft_vc820, VOLTCRAFT_VC820, "voltcraft-vc820", "Voltcraft VC-820")
c1345749 471DRV(voltcraft_vc830, VOLTCRAFT_VC830, "voltcraft-vc830", "Voltcraft VC-830")
695d0e1e 472DRV(voltcraft_vc840, VOLTCRAFT_VC840, "voltcraft-vc840", "Voltcraft VC-840")
8769478c
UH
473DRV(voltcraft_vc920, VOLTCRAFT_VC920, "voltcraft-vc920", "Voltcraft VC-920")
474DRV(voltcraft_vc940, VOLTCRAFT_VC940, "voltcraft-vc940", "Voltcraft VC-940")
475DRV(voltcraft_vc960, VOLTCRAFT_VC960, "voltcraft-vc960", "Voltcraft VC-960")
5e1f7c89 476DRV(tenma_72_7745, TENMA_72_7745, "tenma-72-7745", "Tenma 72-7745")
d9e79c51 477DRV(tenma_72_7750, TENMA_72_7750, "tenma-72-7750", "Tenma 72-7750")