]> sigrok.org Git - libsigrok.git/blame_incremental - src/hardware/norma-dmm/api.c
hantek-4032l: Add initial driver implementation.
[libsigrok.git] / src / hardware / norma-dmm / api.c
... / ...
CommitLineData
1/*
2 * This file is part of the libsigrok project.
3 *
4 * Copyright (C) 2013 Matthias Heidbrink <m-sigrok@heidbrink.biz>
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 <config.h>
21#include "protocol.h"
22
23static const uint32_t scanopts[] = {
24 SR_CONF_CONN,
25 SR_CONF_SERIALCOMM,
26};
27
28static const uint32_t drvopts[] = {
29 SR_CONF_MULTIMETER,
30};
31
32static const uint32_t devopts[] = {
33 SR_CONF_CONTINUOUS,
34 SR_CONF_LIMIT_SAMPLES | SR_CONF_SET,
35 SR_CONF_LIMIT_MSEC | SR_CONF_SET,
36};
37
38#define BUF_MAX 50
39
40#define SERIALCOMM "4800/8n1/dtr=1/rts=0/flow=1"
41
42static struct sr_dev_driver norma_dmm_driver_info;
43static struct sr_dev_driver siemens_b102x_driver_info;
44
45static const char *get_brandstr(struct sr_dev_driver *drv)
46{
47 return (drv == &norma_dmm_driver_info) ? "Norma" : "Siemens";
48}
49
50static const char *get_typestr(int type, struct sr_dev_driver *drv)
51{
52 static const char *nameref[5][2] = {
53 {"DM910", "B1024"},
54 {"DM920", "B1025"},
55 {"DM930", "B1026"},
56 {"DM940", "B1027"},
57 {"DM950", "B1028"},
58 };
59
60 if ((type < 1) || (type > 5))
61 return "Unknown type!";
62
63 return nameref[type - 1][(drv == &siemens_b102x_driver_info)];
64}
65
66static GSList *scan(struct sr_dev_driver *drv, GSList *options)
67{
68 struct sr_dev_inst *sdi;
69 struct dev_context *devc;
70 struct sr_config *src;
71 struct sr_serial_dev_inst *serial;
72 GSList *l, *devices;
73 int len, cnt, auxtype;
74 const char *conn, *serialcomm;
75 char *buf;
76 char req[10];
77
78 devices = NULL;
79 conn = serialcomm = NULL;
80
81 for (l = options; l; l = l->next) {
82 src = l->data;
83 switch (src->key) {
84 case SR_CONF_CONN:
85 conn = g_variant_get_string(src->data, NULL);
86 break;
87 case SR_CONF_SERIALCOMM:
88 serialcomm = g_variant_get_string(src->data, NULL);
89 break;
90 }
91 }
92 if (!conn)
93 return NULL;
94 if (!serialcomm)
95 serialcomm = SERIALCOMM;
96
97 serial = sr_serial_dev_inst_new(conn, serialcomm);
98
99 if (serial_open(serial, SERIAL_RDWR) != SR_OK)
100 return NULL;
101
102 serial_flush(serial);
103
104 buf = g_malloc(BUF_MAX);
105
106 snprintf(req, sizeof(req), "%s\r\n",
107 nmadmm_requests[NMADMM_REQ_IDN].req_str);
108 g_usleep(150 * 1000); /* Wait a little to allow serial port to settle. */
109 for (cnt = 0; cnt < 7; cnt++) {
110 if (serial_write_blocking(serial, req, strlen(req),
111 serial_timeout(serial, strlen(req))) < 0) {
112 sr_err("Unable to send identification request.");
113 return NULL;
114 }
115 len = BUF_MAX;
116 serial_readline(serial, &buf, &len, NMADMM_TIMEOUT_MS);
117 if (!len)
118 continue;
119 buf[BUF_MAX - 1] = '\0';
120
121 /* Match ID string, e.g. "1834 065 V1.06,IF V1.02" (DM950). */
122 if (g_regex_match_simple("^1834 [^,]*,IF V*", (char *)buf, 0, 0)) {
123 auxtype = xgittoint(buf[7]);
124 sr_spew("%s %s DMM %s detected!", get_brandstr(drv), get_typestr(auxtype, drv), buf + 9);
125
126 sdi = g_malloc0(sizeof(struct sr_dev_inst));
127 sdi->status = SR_ST_INACTIVE;
128 sdi->vendor = g_strdup(get_brandstr(drv));
129 sdi->model = g_strdup(get_typestr(auxtype, drv));
130 sdi->version = g_strdup(buf + 9);
131 devc = g_malloc0(sizeof(struct dev_context));
132 sr_sw_limits_init(&devc->limits);
133 devc->type = auxtype;
134 sdi->conn = serial;
135 sdi->priv = devc;
136 sr_channel_new(sdi, 0, SR_CHANNEL_ANALOG, TRUE, "P1");
137 devices = g_slist_append(devices, sdi);
138 break;
139 }
140
141 /*
142 * The interface of the DM9x0 contains a cap that needs to
143 * charge for up to 10s before the interface works, if not
144 * powered externally. Therefore wait a little to improve
145 * chances.
146 */
147 if (cnt == 3) {
148 sr_info("Waiting 5s to allow interface to settle.");
149 g_usleep(5 * 1000 * 1000);
150 }
151 }
152
153 g_free(buf);
154
155 serial_close(serial);
156 if (!devices)
157 sr_serial_dev_inst_free(serial);
158
159 return std_scan_complete(drv, devices);
160}
161
162static int config_set(uint32_t key, GVariant *data,
163 const struct sr_dev_inst *sdi, const struct sr_channel_group *cg)
164{
165 struct dev_context *devc;
166
167 (void)cg;
168
169 devc = sdi->priv;
170
171 return sr_sw_limits_config_set(&devc->limits, key, data);
172}
173
174static int config_list(uint32_t key, GVariant **data,
175 const struct sr_dev_inst *sdi, const struct sr_channel_group *cg)
176{
177 return STD_CONFIG_LIST(key, data, sdi, cg, scanopts, drvopts, devopts);
178}
179
180static int dev_acquisition_start(const struct sr_dev_inst *sdi)
181{
182 struct dev_context *devc;
183 struct sr_serial_dev_inst *serial;
184
185 devc = sdi->priv;
186
187 sr_sw_limits_acquisition_start(&devc->limits);
188 std_session_send_df_header(sdi);
189
190 serial = sdi->conn;
191 serial_source_add(sdi->session, serial, G_IO_IN, 100,
192 norma_dmm_receive_data, (void *)sdi);
193
194 return SR_OK;
195}
196
197static struct sr_dev_driver norma_dmm_driver_info = {
198 .name = "norma-dmm",
199 .longname = "Norma DM9x0 DMMs",
200 .api_version = 1,
201 .init = std_init,
202 .cleanup = std_cleanup,
203 .scan = scan,
204 .dev_list = std_dev_list,
205 .dev_clear = std_dev_clear,
206 .config_get = NULL,
207 .config_set = config_set,
208 .config_list = config_list,
209 .dev_open = std_serial_dev_open,
210 .dev_close = std_serial_dev_close,
211 .dev_acquisition_start = dev_acquisition_start,
212 .dev_acquisition_stop = std_serial_dev_acquisition_stop,
213 .context = NULL,
214};
215SR_REGISTER_DEV_DRIVER(norma_dmm_driver_info);
216
217static struct sr_dev_driver siemens_b102x_driver_info = {
218 .name = "siemens-b102x",
219 .longname = "Siemens B102x DMMs",
220 .api_version = 1,
221 .init = std_init,
222 .cleanup = std_cleanup,
223 .scan = scan,
224 .dev_list = std_dev_list,
225 .dev_clear = std_dev_clear,
226 .config_get = NULL,
227 .config_set = config_set,
228 .config_list = config_list,
229 .dev_open = std_serial_dev_open,
230 .dev_close = std_serial_dev_close,
231 .dev_acquisition_start = dev_acquisition_start,
232 .dev_acquisition_stop = std_serial_dev_acquisition_stop,
233 .context = NULL,
234};
235SR_REGISTER_DEV_DRIVER(siemens_b102x_driver_info);