]> sigrok.org Git - libsigrok.git/blame - src/hardware/gmc-mh-1x-2x/api.c
Add sr_dev_acquisition_start(), factor out SR_ERR_DEV_CLOSED check.
[libsigrok.git] / src / hardware / gmc-mh-1x-2x / api.c
CommitLineData
7b4edcb6
MH
1/*
2 * This file is part of the libsigrok project.
3 *
c90beca7 4 * Copyright (C) 2013, 2014 Matthias Heidbrink <m-sigrok@heidbrink.biz>
7b4edcb6
MH
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
d9251a2c
UH
20/**
21 * @file
22 *
23 * Gossen Metrawatt Metrahit 1x/2x drivers
24 *
25 * @internal
6392d599
MH
26 */
27
6ec6c43b 28#include <config.h>
f5792417 29#include <string.h>
7b4edcb6
MH
30#include "protocol.h"
31
f5792417
MH
32/* Serial communication parameters for Metrahit 1x/2x with 'RS232' adaptor */
33#define SERIALCOMM_1X_RS232 "8228/6n1/dtr=1/rts=1/flow=0" /* =8192, closer with divider */
34#define SERIALCOMM_2X_RS232 "9600/6n1/dtr=1/rts=1/flow=0"
6392d599 35#define SERIALCOMM_2X "9600/8n1/dtr=1/rts=1/flow=0"
f5792417
MH
36#define VENDOR_GMC "Gossen Metrawatt"
37
a0e0bb41 38static const uint32_t scanopts[] = {
f5792417
MH
39 SR_CONF_CONN,
40 SR_CONF_SERIALCOMM,
41};
42
c90beca7 43/** Hardware capabilities for Metrahit 1x/2x devices in send mode. */
f254bc4b 44static const uint32_t devopts_sm[] = {
f5792417 45 SR_CONF_MULTIMETER,
d9251a2c 46 SR_CONF_THERMOMETER, /**< All GMC 1x/2x multimeters seem to support this */
f5792417 47 SR_CONF_CONTINUOUS,
5827f61b
BV
48 SR_CONF_LIMIT_SAMPLES | SR_CONF_GET | SR_CONF_SET,
49 SR_CONF_LIMIT_MSEC | SR_CONF_GET | SR_CONF_SET,
f5792417
MH
50};
51
c90beca7 52/** Hardware capabilities for Metrahit 2x devices in bidirectional Mode. */
f254bc4b 53static const uint32_t devopts_bd[] = {
c90beca7 54 SR_CONF_MULTIMETER,
d9251a2c 55 SR_CONF_THERMOMETER, /**< All GMC 1x/2x multimeters seem to support this */
c90beca7 56 SR_CONF_CONTINUOUS,
5827f61b
BV
57 SR_CONF_LIMIT_SAMPLES | SR_CONF_GET | SR_CONF_SET,
58 SR_CONF_LIMIT_MSEC | SR_CONF_GET | SR_CONF_SET,
59 SR_CONF_POWER_OFF | SR_CONF_GET | SR_CONF_SET,
c90beca7
MH
60};
61
6392d599
MH
62/* TODO:
63 * - For the 29S SR_CONF_ENERGYMETER, too.
64 * - SR_CONF_PATTERN_MODE for some 2x devices
65 * - SR_CONF_DATALOG for 22M, 26M, 29S and storage adaptors.
66 * Need to implement device-specific lists.
67 */
68
fc348b77
UH
69/**
70 * Read single byte from serial port.
71 *
72 * @retval -1 Timeout or error.
73 * @retval other Byte.
f5792417
MH
74 */
75static int read_byte(struct sr_serial_dev_inst *serial, gint64 timeout)
7b4edcb6 76{
fc348b77 77 uint8_t result = 0;
f5792417
MH
78 int rc = 0;
79
80 for (;;) {
0714a010 81 rc = serial_read_nonblocking(serial, &result, 1);
f5792417
MH
82 if (rc == 1) {
83 sr_spew("read: 0x%02x/%d", result, result);
84 return result;
85 }
86 if (g_get_monotonic_time() > timeout)
87 return -1;
88 g_usleep(2000);
89 }
90}
91
fc348b77
UH
92/**
93 * Try to detect GMC 1x/2x multimeter model in send mode for max. 1 second.
f5792417 94 *
fc348b77
UH
95 * @param serial Configured, open serial port.
96 *
97 * @retval NULL Detection failed.
98 * @retval other Model code.
f5792417
MH
99 */
100static enum model scan_model_sm(struct sr_serial_dev_inst *serial)
101{
102 int byte, bytecnt, cnt;
103 enum model model;
104 gint64 timeout_us;
105
873e0c12 106 model = METRAHIT_NONE;
1a46cc62 107 timeout_us = g_get_monotonic_time() + (1 * 1000 * 1000);
f5792417 108
fc348b77
UH
109 /*
110 * Try to find message consisting of device code and several
111 * (at least 4) data bytes.
112 */
f5792417
MH
113 for (bytecnt = 0; bytecnt < 100; bytecnt++) {
114 byte = read_byte(serial, timeout_us);
115 if ((byte == -1) || (timeout_us < g_get_monotonic_time()))
116 break;
117 if ((byte & MSGID_MASK) == MSGID_INF) {
873e0c12 118 if (!(model = gmc_decode_model_sm(byte & MSGC_MASK)))
f5792417 119 break;
fc348b77 120 /* Now expect (at least) 4 data bytes. */
f5792417
MH
121 for (cnt = 0; cnt < 4; cnt++) {
122 byte = read_byte(serial, timeout_us);
123 if ((byte == -1) ||
d9251a2c 124 ((byte & MSGID_MASK) != MSGID_DATA))
f5792417 125 {
873e0c12 126 model = METRAHIT_NONE;
f5792417
MH
127 bytecnt = 100;
128 break;
129 }
130 }
131 break;
132 }
133 }
7b4edcb6 134
f5792417
MH
135 return model;
136}
137
fc348b77
UH
138/**
139 * Scan for Metrahit 1x and Metrahit 2x in send mode using Gossen Metrawatt
140 * 'RS232' interface.
141 *
142 * The older 1x models use 8192 baud and the newer 2x 9600 baud.
143 * The DMM usually sends up to about 20 messages per second. However, depending
144 * on configuration and measurement mode the intervals can be much larger and
145 * then the detection might not work.
f5792417 146 */
4f840ce9 147static GSList *scan_1x_2x_rs232(struct sr_dev_driver *di, GSList *options)
f5792417
MH
148{
149 struct sr_dev_inst *sdi;
f5792417
MH
150 struct dev_context *devc;
151 struct sr_config *src;
f5792417
MH
152 struct sr_serial_dev_inst *serial;
153 GSList *l, *devices;
154 const char *conn, *serialcomm;
155 enum model model;
156 gboolean serialcomm_given;
7b4edcb6
MH
157
158 devices = NULL;
f5792417 159 conn = serialcomm = NULL;
f5792417
MH
160 serialcomm_given = FALSE;
161
c90beca7 162 sr_spew("scan_1x_2x_rs232() called!");
f5792417
MH
163
164 for (l = options; l; l = l->next) {
165 src = l->data;
166 switch (src->key) {
167 case SR_CONF_CONN:
168 conn = g_variant_get_string(src->data, NULL);
169 break;
170 case SR_CONF_SERIALCOMM:
171 serialcomm = g_variant_get_string(src->data, NULL);
172 serialcomm_given = TRUE;
173 break;
174 }
175 }
176 if (!conn)
177 return NULL;
178 if (!serialcomm)
179 serialcomm = SERIALCOMM_2X_RS232;
180
91219afc 181 serial = sr_serial_dev_inst_new(conn, serialcomm);
f5792417 182
e13e354f 183 if (serial_open(serial, SERIAL_RDWR) != SR_OK) {
f5792417
MH
184 sr_serial_dev_inst_free(serial);
185 return NULL;
186 }
7b4edcb6 187
f5792417
MH
188 serial_flush(serial);
189
190 model = scan_model_sm(serial);
191
fc348b77
UH
192 /*
193 * If detection failed and no user-supplied parameters,
194 * try second baud rate.
195 */
873e0c12 196 if ((model == METRAHIT_NONE) && !serialcomm_given) {
f5792417
MH
197 serialcomm = SERIALCOMM_1X_RS232;
198 g_free(serial->serialcomm);
199 serial->serialcomm = g_strdup(serialcomm);
200 if (serial_set_paramstr(serial, serialcomm) == SR_OK) {
201 serial_flush(serial);
202 model = scan_model_sm(serial);
203 }
204 }
205
873e0c12
UH
206 if (model != METRAHIT_NONE) {
207 sr_spew("%s %s detected!", VENDOR_GMC, gmc_model_str(model));
aac29cc1 208 sdi = g_malloc0(sizeof(struct sr_dev_inst));
0af636be
UH
209 sdi->status = SR_ST_INACTIVE;
210 sdi->vendor = g_strdup(VENDOR_GMC);
211 sdi->model = g_strdup(gmc_model_str(model));
f57d8ffe 212 devc = g_malloc0(sizeof(struct dev_context));
3c413879 213 sr_sw_limits_init(&devc->limits);
f5792417 214 devc->model = model;
f5792417 215 devc->settings_ok = FALSE;
f5792417
MH
216 sdi->conn = serial;
217 sdi->priv = devc;
5e23fcab 218 sr_channel_new(sdi, 0, SR_CHANNEL_ANALOG, TRUE, "P1");
f5792417
MH
219 devices = g_slist_append(devices, sdi);
220 }
7b4edcb6 221
15a5bfe4 222 return std_scan_complete(di, devices);
7b4edcb6
MH
223}
224
1a863916
UH
225/**
226 * Scan for Metrahit 2x in a bidirectional mode using Gossen Metrawatt
227 * 'BD 232' interface.
c90beca7 228 */
4f840ce9 229static GSList *scan_2x_bd232(struct sr_dev_driver *di, GSList *options)
c90beca7
MH
230{
231 struct sr_dev_inst *sdi;
c90beca7
MH
232 struct dev_context *devc;
233 struct sr_config *src;
c90beca7
MH
234 struct sr_serial_dev_inst *serial;
235 GSList *l, *devices;
236 const char *conn, *serialcomm;
237 int cnt, byte;
238 gint64 timeout_us;
239
240 sdi = NULL;
241 devc = NULL;
242 conn = serialcomm = NULL;
243 devices = NULL;
244
c90beca7
MH
245 sr_spew("scan_2x_bd232() called!");
246
247 for (l = options; l; l = l->next) {
248 src = l->data;
249 switch (src->key) {
250 case SR_CONF_CONN:
251 conn = g_variant_get_string(src->data, NULL);
252 break;
253 case SR_CONF_SERIALCOMM:
254 serialcomm = g_variant_get_string(src->data, NULL);
255 break;
256 }
257 }
258 if (!conn)
259 return NULL;
260 if (!serialcomm)
261 serialcomm = SERIALCOMM_2X;
262
91219afc 263 serial = sr_serial_dev_inst_new(conn, serialcomm);
c90beca7 264
e13e354f 265 if (serial_open(serial, SERIAL_RDWR) != SR_OK)
c90beca7
MH
266 goto exit_err;
267
f57d8ffe 268 devc = g_malloc0(sizeof(struct dev_context));
c90beca7 269
aac29cc1 270 sdi = g_malloc0(sizeof(struct sr_dev_inst));
0af636be
UH
271 sdi->status = SR_ST_INACTIVE;
272 sdi->vendor = g_strdup(VENDOR_GMC);
c90beca7
MH
273 sdi->priv = devc;
274
275 /* Send message 03 "Query multimeter version and status" */
276 sdi->conn = serial;
c90beca7
MH
277 if (req_stat14(sdi, TRUE) != SR_OK)
278 goto exit_err;
279
280 /* Wait for reply from device(s) for up to 2s. */
1a46cc62 281 timeout_us = g_get_monotonic_time() + (2 * 1000 * 1000);
c90beca7
MH
282
283 while (timeout_us > g_get_monotonic_time()) {
284 /* Receive reply (14 bytes) */
285 devc->buflen = 0;
07ffa5b3 286 for (cnt = 0; cnt < GMC_REPLY_SIZE; cnt++) {
c90beca7
MH
287 byte = read_byte(serial, timeout_us);
288 if (byte != -1)
289 devc->buf[devc->buflen++] = (byte & MASK_6BITS);
290 }
291
07ffa5b3 292 if (devc->buflen != GMC_REPLY_SIZE)
c90beca7
MH
293 continue;
294
295 devc->addr = devc->buf[0];
296 process_msg14(sdi);
297 devc->buflen = 0;
298
299 if (devc->model != METRAHIT_NONE) {
300 sr_spew("%s %s detected!", VENDOR_GMC, gmc_model_str(devc->model));
3c413879 301 sr_sw_limits_init(&devc->limits);
c90beca7
MH
302 sdi->model = g_strdup(gmc_model_str(devc->model));
303 sdi->version = g_strdup_printf("Firmware %d.%d", devc->fw_ver_maj, devc->fw_ver_min);
304 sdi->conn = serial;
305 sdi->priv = devc;
5e23fcab 306 sr_channel_new(sdi, 0, SR_CHANNEL_ANALOG, TRUE, "P1");
c90beca7 307 devices = g_slist_append(devices, sdi);
f57d8ffe 308 devc = g_malloc0(sizeof(struct dev_context));
aac29cc1 309 sdi = g_malloc0(sizeof(struct sr_dev_inst));
0af636be
UH
310 sdi->status = SR_ST_INACTIVE;
311 sdi->vendor = g_strdup(VENDOR_GMC);
c90beca7
MH
312 }
313 };
314
315 /* Free last alloc if no device found */
316 if (devc->model == METRAHIT_NONE) {
317 g_free(devc);
318 sr_dev_inst_free(sdi);
319 }
320
15a5bfe4 321 return std_scan_complete(di, devices);
c90beca7
MH
322
323exit_err:
324 sr_info("scan_2x_bd232(): Error!");
325
04891a99 326 sr_serial_dev_inst_free(serial);
b1f83103 327 g_free(devc);
4bf93988 328 sr_dev_inst_free(sdi);
c90beca7
MH
329
330 return NULL;
331}
332
7b4edcb6
MH
333static int dev_close(struct sr_dev_inst *sdi)
334{
f5792417 335 struct dev_context *devc;
7b4edcb6 336
bf2c987f 337 std_serial_dev_close(sdi);
7b4edcb6
MH
338
339 sdi->status = SR_ST_INACTIVE;
3c413879 340 if ((devc = sdi->priv))
873e0c12 341 devc->model = METRAHIT_NONE;
f5792417 342
7b4edcb6
MH
343 return SR_OK;
344}
345
584560f1
BV
346static int config_get(uint32_t key, GVariant **data, const struct sr_dev_inst *sdi,
347 const struct sr_channel_group *cg)
7b4edcb6
MH
348{
349 int ret;
fadd0707 350 struct dev_context *devc;
c90beca7 351
53b4680f 352 (void)cg;
c90beca7 353
709468ba 354 if (!sdi)
6392d599
MH
355 return SR_ERR_ARG;
356
709468ba
UH
357 devc = sdi->priv;
358
7b4edcb6
MH
359 ret = SR_OK;
360 switch (key) {
6392d599 361 case SR_CONF_LIMIT_SAMPLES:
6392d599 362 case SR_CONF_LIMIT_MSEC:
3c413879 363 return sr_sw_limits_config_get(&devc->limits, key, data);
c90beca7
MH
364 case SR_CONF_POWER_OFF:
365 *data = g_variant_new_boolean(FALSE);
366 break;
7b4edcb6
MH
367 default:
368 return SR_ERR_NA;
369 }
370
371 return ret;
372}
373
1a863916 374/** Implementation of config_list, auxiliary function for common parts. */
584560f1
BV
375static int config_list_common(uint32_t key, GVariant **data, const struct sr_dev_inst *sdi,
376 const struct sr_channel_group *cg)
7b4edcb6 377{
c90beca7 378 (void)sdi;
53b4680f 379 (void)cg;
7b4edcb6 380
7b4edcb6 381 switch (key) {
c90beca7 382 case SR_CONF_SCAN_OPTIONS:
584560f1 383 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
5827f61b 384 scanopts, ARRAY_SIZE(scanopts), sizeof(uint32_t));
f5792417 385 break;
7b4edcb6 386 default:
f5792417 387 return SR_ERR_NA;
7b4edcb6
MH
388 }
389
f5792417 390 return SR_OK;
7b4edcb6
MH
391}
392
c90beca7 393/** Implementation of config_list for Metrahit 1x/2x send mode */
584560f1 394static int config_list_sm(uint32_t key, GVariant **data, const struct sr_dev_inst *sdi,
53b4680f 395 const struct sr_channel_group *cg)
7b4edcb6 396{
7b4edcb6 397 switch (key) {
c90beca7 398 case SR_CONF_DEVICE_OPTIONS:
584560f1 399 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
5827f61b 400 devopts_sm, ARRAY_SIZE(devopts_sm), sizeof(uint32_t));
f5792417 401 break;
c90beca7 402 default:
53b4680f 403 return config_list_common(key, data, sdi, cg);
c90beca7
MH
404 }
405
406 return SR_OK;
407}
408
409/** Implementation of config_list for Metrahit 2x bidirectional mode */
584560f1 410static int config_list_bd(uint32_t key, GVariant **data, const struct sr_dev_inst *sdi,
53b4680f 411 const struct sr_channel_group *cg)
c90beca7 412{
c90beca7 413 switch (key) {
f5792417 414 case SR_CONF_DEVICE_OPTIONS:
584560f1 415 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
5827f61b 416 devopts_bd, ARRAY_SIZE(devopts_bd), sizeof(uint32_t));
f5792417 417 break;
7b4edcb6 418 default:
53b4680f 419 return config_list_common(key, data, sdi, cg);
7b4edcb6
MH
420 }
421
f5792417 422 return SR_OK;
7b4edcb6
MH
423}
424
695dc859 425static int dev_acquisition_start_1x_2x_rs232(const struct sr_dev_inst *sdi)
7b4edcb6 426{
f5792417
MH
427 struct dev_context *devc;
428 struct sr_serial_dev_inst *serial;
429
208c1d35 430 devc = sdi->priv;
f5792417
MH
431 devc->settings_ok = FALSE;
432 devc->buflen = 0;
433
3c413879 434 sr_sw_limits_acquisition_start(&devc->limits);
bee2b016 435 std_session_send_df_header(sdi);
f5792417 436
f5792417
MH
437 /* Poll every 40ms, or whenever some data comes in. */
438 serial = sdi->conn;
102f1239
BV
439 serial_source_add(sdi->session, serial, G_IO_IN, 40,
440 gmc_mh_1x_2x_receive_data, (void *)sdi);
7b4edcb6
MH
441
442 return SR_OK;
443}
444
695dc859 445static int dev_acquisition_start_2x_bd232(const struct sr_dev_inst *sdi)
c90beca7
MH
446{
447 struct dev_context *devc;
448 struct sr_serial_dev_inst *serial;
449
208c1d35 450 devc = sdi->priv;
c90beca7
MH
451 devc->settings_ok = FALSE;
452 devc->buflen = 0;
453
3c413879 454 sr_sw_limits_acquisition_start(&devc->limits);
bee2b016 455 std_session_send_df_header(sdi);
c90beca7 456
c90beca7
MH
457 /* Poll every 40ms, or whenever some data comes in. */
458 serial = sdi->conn;
102f1239
BV
459 serial_source_add(sdi->session, serial, G_IO_IN, 40,
460 gmc_mh_2x_receive_data, (void *)sdi);
c90beca7
MH
461
462 /* Send start message */
463 return req_meas14(sdi);
464}
465
dd5c48a6 466static struct sr_dev_driver gmc_mh_1x_2x_rs232_driver_info = {
7b4edcb6 467 .name = "gmc-mh-1x-2x-rs232",
a90061e5 468 .longname = "Gossen Metrawatt Metrahit 1x/2x, RS232 interface",
7b4edcb6 469 .api_version = 1,
c2fdcc25 470 .init = std_init,
700d6b64 471 .cleanup = std_cleanup,
c90beca7 472 .scan = scan_1x_2x_rs232,
c01bf34c 473 .dev_list = std_dev_list,
a6630742 474 .dev_clear = NULL,
c90beca7
MH
475 .config_get = config_get,
476 .config_set = config_set,
477 .config_list = config_list_sm,
478 .dev_open = std_serial_dev_open,
479 .dev_close = dev_close,
480 .dev_acquisition_start = dev_acquisition_start_1x_2x_rs232,
4b1a9d5d 481 .dev_acquisition_stop = std_serial_dev_acquisition_stop,
41812aca 482 .context = NULL,
c90beca7 483};
dd5c48a6 484SR_REGISTER_DEV_DRIVER(gmc_mh_1x_2x_rs232_driver_info);
c90beca7 485
dd5c48a6 486static struct sr_dev_driver gmc_mh_2x_bd232_driver_info = {
c90beca7 487 .name = "gmc-mh-2x-bd232",
a90061e5 488 .longname = "Gossen Metrawatt Metrahit 2x, BD232/SI232-II interface",
c90beca7 489 .api_version = 1,
c2fdcc25 490 .init = std_init,
700d6b64 491 .cleanup = std_cleanup,
c90beca7 492 .scan = scan_2x_bd232,
c01bf34c 493 .dev_list = std_dev_list,
a6630742 494 .dev_clear = NULL,
7b4edcb6
MH
495 .config_get = config_get,
496 .config_set = config_set,
c90beca7 497 .config_list = config_list_bd,
854434de 498 .dev_open = std_serial_dev_open,
7b4edcb6 499 .dev_close = dev_close,
c90beca7 500 .dev_acquisition_start = dev_acquisition_start_2x_bd232,
4b1a9d5d 501 .dev_acquisition_stop = std_serial_dev_acquisition_stop,
41812aca 502 .context = NULL,
7b4edcb6 503};
dd5c48a6 504SR_REGISTER_DEV_DRIVER(gmc_mh_2x_bd232_driver_info);