]> sigrok.org Git - libsigrok.git/blame - src/hardware/fluke-dmm/api.c
Fix a few "variable set but not used" compiler warnings.
[libsigrok.git] / src / hardware / fluke-dmm / api.c
CommitLineData
883a2e9e 1/*
50985c20 2 * This file is part of the libsigrok project.
883a2e9e
BV
3 *
4 * Copyright (C) 2012 Bert Vermeulen <bert@biot.com>
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
6ec6c43b 20#include <config.h>
883a2e9e 21#include <glib.h>
4f958423
BV
22#include <sys/types.h>
23#include <sys/stat.h>
24#include <fcntl.h>
25#include <string.h>
c1aae900 26#include <libsigrok/libsigrok.h>
6f22a8ef
UH
27#include "libsigrok-internal.h"
28#include "fluke-dmm.h"
883a2e9e 29
a0e0bb41 30static const uint32_t scanopts[] = {
1953564a
BV
31 SR_CONF_CONN,
32 SR_CONF_SERIALCOMM,
d3f8f141
BV
33};
34
f254bc4b 35static const uint32_t devopts[] = {
1953564a 36 SR_CONF_MULTIMETER,
1953564a 37 SR_CONF_CONTINUOUS,
5827f61b
BV
38 SR_CONF_LIMIT_SAMPLES | SR_CONF_SET,
39 SR_CONF_LIMIT_MSEC | SR_CONF_SET,
d3f8f141
BV
40};
41
329733d9 42static const char *scan_conn[] = {
9fa09680
BV
43 /* 287/289 */
44 "115200/8n1",
45 /* 187/189 */
46 "9600/8n1",
47 /* Scopemeter 190 series */
48 "1200/8n1",
49 NULL
50};
51
4f958423 52static const struct flukedmm_profile supported_flukedmm[] = {
d4b11de0 53 { FLUKE_187, "187", 100, 1000 },
0bc3ab92 54 { FLUKE_189, "189", 100, 1000 },
d4b11de0
BV
55 { FLUKE_287, "287", 100, 1000 },
56 { FLUKE_190, "199B", 1000, 3500 },
ba4dfbde 57 { FLUKE_289, "289", 100, 1000 },
4f958423
BV
58};
59
4f840ce9
ML
60static GSList *fluke_scan(struct sr_dev_driver *di, const char *conn,
61 const char *serialcomm)
883a2e9e 62{
4f958423 63 struct sr_dev_inst *sdi;
4f958423 64 struct dev_context *devc;
58d03f03 65 struct sr_serial_dev_inst *serial;
41298320 66 GSList *devices;
58d03f03 67 int retry, len, i, s;
fb480d57 68 char buf[128], *b, **tokens;
883a2e9e 69
91219afc 70 serial = sr_serial_dev_inst_new(conn, serialcomm);
58d03f03 71
50276118 72 if (serial_open(serial, SERIAL_RDWR) != SR_OK)
4f958423 73 return NULL;
4f958423 74
fb480d57
BV
75 b = buf;
76 retry = 0;
41298320 77 devices = NULL;
fb480d57
BV
78 /* We'll try the discovery sequence three times in case the device
79 * is not in an idle state when we send ID. */
80 while (!devices && retry < 3) {
81 retry++;
58d03f03 82 serial_flush(serial);
20401400 83 if (serial_write_blocking(serial, "ID\r", 3, SERIAL_WRITE_TIMEOUT_MS) < 0) {
50276118 84 sr_err("Unable to send ID string");
fb480d57
BV
85 continue;
86 }
4f958423 87
fb480d57
BV
88 /* Response is first a CMD_ACK byte (ASCII '0' for OK,
89 * or '1' to signify an error. */
90 len = 128;
58d03f03 91 serial_readline(serial, &b, &len, 150);
fb480d57
BV
92 if (len != 1)
93 continue;
41298320 94 if (buf[0] != '0')
fb480d57 95 continue;
4f958423 96
fb480d57
BV
97 /* If CMD_ACK was OK, ID string follows. */
98 len = 128;
9fa09680 99 serial_readline(serial, &b, &len, 850);
fb480d57
BV
100 if (len < 10)
101 continue;
9fa09680
BV
102 if (strcspn(buf, ",") < 15)
103 /* Looks like it's comma-separated. */
104 tokens = g_strsplit(buf, ",", 3);
105 else
106 /* Fluke 199B, at least, uses semicolon. */
107 tokens = g_strsplit(buf, ";", 3);
fb480d57
BV
108 if (!strncmp("FLUKE", tokens[0], 5)
109 && tokens[1] && tokens[2]) {
110 for (i = 0; supported_flukedmm[i].model; i++) {
111 if (strcmp(supported_flukedmm[i].modelname, tokens[0] + 6))
112 continue;
113 /* Skip leading spaces in version number. */
114 for (s = 0; tokens[1][s] == ' '; s++);
aac29cc1 115 sdi = g_malloc0(sizeof(struct sr_dev_inst));
0af636be
UH
116 sdi->status = SR_ST_INACTIVE;
117 sdi->vendor = g_strdup("Fluke");
118 sdi->model = g_strdup(tokens[0] + 6);
119 sdi->version = g_strdup(tokens[1] + s);
f57d8ffe 120 devc = g_malloc0(sizeof(struct dev_context));
fb480d57 121 devc->profile = &supported_flukedmm[i];
771bd216 122 sdi->inst_type = SR_INST_SERIAL;
919681f0 123 sdi->conn = serial;
fb480d57 124 sdi->priv = devc;
5e23fcab 125 sr_channel_new(sdi, 0, SR_CHANNEL_ANALOG, TRUE, "P1");
fb480d57
BV
126 devices = g_slist_append(devices, sdi);
127 break;
4f958423 128 }
4f958423 129 }
fb480d57 130 g_strfreev(tokens);
9fa09680
BV
131 if (devices)
132 /* Found one. */
133 break;
4f958423 134 }
58d03f03
BV
135 serial_close(serial);
136 if (!devices)
137 sr_serial_dev_inst_free(serial);
883a2e9e 138
15a5bfe4 139 return std_scan_complete(di, devices);
883a2e9e
BV
140}
141
4f840ce9 142static GSList *scan(struct sr_dev_driver *di, GSList *options)
41298320 143{
1987b8d6 144 struct sr_config *src;
41298320 145 GSList *l, *devices;
9fa09680 146 int i;
41298320
BV
147 const char *conn, *serialcomm;
148
149 conn = serialcomm = NULL;
150 for (l = options; l; l = l->next) {
1987b8d6
BV
151 src = l->data;
152 switch (src->key) {
1953564a 153 case SR_CONF_CONN:
70424328 154 conn = g_variant_get_string(src->data, NULL);
41298320 155 break;
1953564a 156 case SR_CONF_SERIALCOMM:
70424328 157 serialcomm = g_variant_get_string(src->data, NULL);
41298320
BV
158 break;
159 }
160 }
161 if (!conn)
162 return NULL;
163
f4d0020e 164 devices = NULL;
41298320
BV
165 if (serialcomm) {
166 /* Use the provided comm specs. */
4f840ce9 167 devices = fluke_scan(di, conn, serialcomm);
41298320 168 } else {
9fa09680 169 for (i = 0; scan_conn[i]; i++) {
4f840ce9 170 if ((devices = fluke_scan(di, conn, scan_conn[i])))
9fa09680
BV
171 break;
172 /* The Scopemeter 199B, at least, requires this
173 * after all the 115k/9.6k confusion. */
1a46cc62 174 g_usleep(5 * 1000);
9fa09680 175 }
41298320
BV
176 }
177
178 return devices;
179}
180
584560f1 181static int config_set(uint32_t key, GVariant *data, const struct sr_dev_inst *sdi,
53b4680f 182 const struct sr_channel_group *cg)
883a2e9e 183{
d3f8f141 184 struct dev_context *devc;
883a2e9e 185
53b4680f 186 (void)cg;
8f996b89 187
883a2e9e 188 if (sdi->status != SR_ST_ACTIVE)
e73ffd42 189 return SR_ERR_DEV_CLOSED;
883a2e9e 190
b0baddef 191 devc = sdi->priv;
d3f8f141 192
584560f1 193 switch (key) {
1953564a 194 case SR_CONF_LIMIT_MSEC:
d3f8f141 195 /* TODO: not yet implemented */
70424328 196 devc->limit_msec = g_variant_get_uint64(data);
d3f8f141 197 break;
1953564a 198 case SR_CONF_LIMIT_SAMPLES:
70424328 199 devc->limit_samples = g_variant_get_uint64(data);
d3f8f141 200 break;
883a2e9e 201 default:
bd6fbf62 202 return SR_ERR_NA;
883a2e9e
BV
203 }
204
d3f8f141 205 return SR_OK;
883a2e9e
BV
206}
207
584560f1 208static int config_list(uint32_t key, GVariant **data, const struct sr_dev_inst *sdi,
53b4680f 209 const struct sr_channel_group *cg)
a1c743fc 210{
a1c743fc 211 (void)sdi;
53b4680f 212 (void)cg;
a1c743fc
BV
213
214 switch (key) {
0d485e30 215 case SR_CONF_SCAN_OPTIONS:
584560f1 216 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
a0e0bb41 217 scanopts, ARRAY_SIZE(scanopts), sizeof(uint32_t));
0d485e30 218 break;
9a6517d1 219 case SR_CONF_DEVICE_OPTIONS:
584560f1 220 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
f254bc4b 221 devopts, ARRAY_SIZE(devopts), sizeof(uint32_t));
9a6517d1 222 break;
a1c743fc 223 default:
bd6fbf62 224 return SR_ERR_NA;
a1c743fc
BV
225 }
226
227 return SR_OK;
228}
229
695dc859 230static int dev_acquisition_start(const struct sr_dev_inst *sdi)
883a2e9e 231{
d3f8f141 232 struct dev_context *devc;
919681f0 233 struct sr_serial_dev_inst *serial;
d3f8f141 234
e73ffd42
BV
235 if (sdi->status != SR_ST_ACTIVE)
236 return SR_ERR_DEV_CLOSED;
237
208c1d35 238 devc = sdi->priv;
d3f8f141 239
695dc859 240 std_session_send_df_header(sdi, LOG_PREFIX);
883a2e9e 241
d3f8f141 242 /* Poll every 100ms, or whenever some data comes in. */
919681f0 243 serial = sdi->conn;
102f1239
BV
244 serial_source_add(sdi->session, serial, G_IO_IN, 50,
245 fluke_receive_data, (void *)sdi);
d38d2ef0 246
20401400 247 if (serial_write_blocking(serial, "QM\r", 3, SERIAL_WRITE_TIMEOUT_MS) < 0) {
50276118 248 sr_err("Unable to send QM.");
d38d2ef0
BV
249 return SR_ERR;
250 }
251 devc->cmd_sent_at = g_get_monotonic_time() / 1000;
252 devc->expect_response = TRUE;
883a2e9e
BV
253
254 return SR_OK;
255}
256
695dc859 257static int dev_acquisition_stop(struct sr_dev_inst *sdi)
883a2e9e 258{
6525d819 259 return std_serial_dev_acquisition_stop(sdi, std_serial_dev_close,
f6beaac5 260 sdi->conn, LOG_PREFIX);
883a2e9e
BV
261}
262
dd5c48a6 263static struct sr_dev_driver flukedmm_driver_info = {
883a2e9e
BV
264 .name = "fluke-dmm",
265 .longname = "Fluke 18x/28x series DMMs",
266 .api_version = 1,
c2fdcc25 267 .init = std_init,
700d6b64 268 .cleanup = std_cleanup,
6078d2c9 269 .scan = scan,
c01bf34c 270 .dev_list = std_dev_list,
a6630742 271 .dev_clear = NULL,
6fab7b8f 272 .config_get = NULL,
035a1078 273 .config_set = config_set,
a1c743fc 274 .config_list = config_list,
854434de 275 .dev_open = std_serial_dev_open,
bf2c987f 276 .dev_close = std_serial_dev_close,
6078d2c9
UH
277 .dev_acquisition_start = dev_acquisition_start,
278 .dev_acquisition_stop = dev_acquisition_stop,
41812aca 279 .context = NULL,
883a2e9e 280};
dd5c48a6 281SR_REGISTER_DEV_DRIVER(flukedmm_driver_info);