]> sigrok.org Git - libsigrok.git/blame - src/hardware/agilent-dmm/api.c
Fix similar broken error handling on several serial calls.
[libsigrok.git] / src / hardware / agilent-dmm / api.c
CommitLineData
e93cdf42 1/*
50985c20 2 * This file is part of the libsigrok project.
e93cdf42
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
20#include <glib.h>
e93cdf42
BV
21#include <sys/types.h>
22#include <sys/stat.h>
23#include <fcntl.h>
24#include <string.h>
25#include <errno.h>
6f22a8ef
UH
26#include "libsigrok.h"
27#include "libsigrok-internal.h"
28#include "agilent-dmm.h"
e93cdf42 29
a0e0bb41 30static const uint32_t scanopts[] = {
1953564a
BV
31 SR_CONF_CONN,
32 SR_CONF_SERIALCOMM,
e93cdf42
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,
e93cdf42
BV
40};
41
f857bd92 42extern const struct agdmm_job agdmm_jobs_u12xx[];
8c0152f2 43extern const struct agdmm_recv agdmm_recvs_u123x[];
4edba404 44extern const struct agdmm_recv agdmm_recvs_u124x[];
8c0152f2 45extern const struct agdmm_recv agdmm_recvs_u125x[];
e93cdf42 46
74ac7d7f
BV
47/* This works on all the Agilent U12xxA series, although the
48 * U127xA can apparently also run at 19200/8n1. */
49#define SERIALCOMM "9600/8n1"
50
e93cdf42 51static const struct agdmm_profile supported_agdmm[] = {
f857bd92
BV
52 { AGILENT_U1231, "U1231A", agdmm_jobs_u12xx, agdmm_recvs_u123x },
53 { AGILENT_U1232, "U1232A", agdmm_jobs_u12xx, agdmm_recvs_u123x },
54 { AGILENT_U1233, "U1233A", agdmm_jobs_u12xx, agdmm_recvs_u123x },
55
4edba404
BV
56 { AGILENT_U1241, "U1241A", agdmm_jobs_u12xx, agdmm_recvs_u124x },
57 { AGILENT_U1242, "U1242A", agdmm_jobs_u12xx, agdmm_recvs_u124x },
ee2bcdfc
BV
58 { AGILENT_U1241, "U1241B", agdmm_jobs_u12xx, agdmm_recvs_u124x },
59 { AGILENT_U1242, "U1242B", agdmm_jobs_u12xx, agdmm_recvs_u124x },
4edba404 60
f857bd92
BV
61 { AGILENT_U1251, "U1251A", agdmm_jobs_u12xx, agdmm_recvs_u125x },
62 { AGILENT_U1252, "U1252A", agdmm_jobs_u12xx, agdmm_recvs_u125x },
63 { AGILENT_U1253, "U1253A", agdmm_jobs_u12xx, agdmm_recvs_u125x },
64 { AGILENT_U1251, "U1251B", agdmm_jobs_u12xx, agdmm_recvs_u125x },
65 { AGILENT_U1252, "U1252B", agdmm_jobs_u12xx, agdmm_recvs_u125x },
66 { AGILENT_U1253, "U1253B", agdmm_jobs_u12xx, agdmm_recvs_u125x },
67 ALL_ZERO
e93cdf42
BV
68};
69
70SR_PRIV struct sr_dev_driver agdmm_driver_info;
71static struct sr_dev_driver *di = &agdmm_driver_info;
72
6078d2c9 73static int init(struct sr_context *sr_ctx)
e93cdf42 74{
f6beaac5 75 return std_init(sr_ctx, di, LOG_PREFIX);
e93cdf42
BV
76}
77
6078d2c9 78static GSList *scan(GSList *options)
e93cdf42
BV
79{
80 struct sr_dev_inst *sdi;
81 struct drv_context *drvc;
82 struct dev_context *devc;
1987b8d6 83 struct sr_config *src;
ba7dd8bb 84 struct sr_channel *ch;
109a3ba4 85 struct sr_serial_dev_inst *serial;
e93cdf42 86 GSList *l, *devices;
109a3ba4 87 int len, i;
e93cdf42
BV
88 const char *conn, *serialcomm;
89 char *buf, **tokens;
90
91 drvc = di->priv;
92 drvc->instances = NULL;
93
94 devices = NULL;
95 conn = serialcomm = NULL;
96 for (l = options; l; l = l->next) {
1987b8d6
BV
97 src = l->data;
98 switch (src->key) {
1953564a 99 case SR_CONF_CONN:
e44ac12a 100 conn = g_variant_get_string(src->data, NULL);
e93cdf42 101 break;
1953564a 102 case SR_CONF_SERIALCOMM:
e44ac12a 103 serialcomm = g_variant_get_string(src->data, NULL);
e93cdf42
BV
104 break;
105 }
106 }
74ac7d7f 107 if (!conn)
e93cdf42 108 return NULL;
109a3ba4
BV
109 if (!serialcomm)
110 serialcomm = SERIALCOMM;
e93cdf42 111
109a3ba4 112 if (!(serial = sr_serial_dev_inst_new(conn, serialcomm)))
e93cdf42 113 return NULL;
e93cdf42 114
64c536be 115 if (serial_open(serial, SERIAL_RDWR) != SR_OK)
e93cdf42 116 return NULL;
e93cdf42 117
109a3ba4 118 serial_flush(serial);
081c214e
ML
119 if (serial_write_blocking(serial, "*IDN?\r\n", 7) < 7) {
120 sr_err("Unable to send identification string.");
e93cdf42
BV
121 return NULL;
122 }
123
124 len = 128;
886a52b6
UH
125 if (!(buf = g_try_malloc(len))) {
126 sr_err("Serial buffer malloc failed.");
127 return NULL;
128 }
ee2bcdfc 129 serial_readline(serial, &buf, &len, 250);
e93cdf42
BV
130 if (!len)
131 return NULL;
132
133 tokens = g_strsplit(buf, ",", 4);
134 if (!strcmp("Agilent Technologies", tokens[0])
fbf07e02 135 && tokens[1] && tokens[2] && tokens[3]) {
e93cdf42
BV
136 for (i = 0; supported_agdmm[i].model; i++) {
137 if (strcmp(supported_agdmm[i].modelname, tokens[1]))
138 continue;
aed4ad0b 139 if (!(sdi = sr_dev_inst_new(SR_ST_INACTIVE, "Agilent",
e93cdf42
BV
140 tokens[1], tokens[3])))
141 return NULL;
142 if (!(devc = g_try_malloc0(sizeof(struct dev_context)))) {
886a52b6 143 sr_err("Device context malloc failed.");
e93cdf42
BV
144 return NULL;
145 }
146 devc->profile = &supported_agdmm[i];
e93cdf42 147 devc->cur_mq = -1;
fb3a1505
BV
148 sdi->inst_type = SR_INST_SERIAL;
149 sdi->conn = serial;
e93cdf42
BV
150 sdi->priv = devc;
151 sdi->driver = di;
3f239f08 152 if (!(ch = sr_channel_new(0, SR_CHANNEL_ANALOG, TRUE, "P1")))
e93cdf42 153 return NULL;
ba7dd8bb 154 sdi->channels = g_slist_append(sdi->channels, ch);
e93cdf42
BV
155 drvc->instances = g_slist_append(drvc->instances, sdi);
156 devices = g_slist_append(devices, sdi);
157 break;
158 }
159 }
160 g_strfreev(tokens);
161 g_free(buf);
162
109a3ba4
BV
163 serial_close(serial);
164 if (!devices)
165 sr_serial_dev_inst_free(serial);
e93cdf42
BV
166
167 return devices;
168}
169
6078d2c9 170static GSList *dev_list(void)
e93cdf42 171{
0e94d524 172 return ((struct drv_context *)(di->priv))->instances;
e93cdf42
BV
173}
174
6078d2c9 175static int cleanup(void)
e93cdf42 176{
a6630742 177 return std_dev_clear(di, NULL);
e93cdf42
BV
178}
179
584560f1 180static int config_set(uint32_t key, GVariant *data, const struct sr_dev_inst *sdi,
53b4680f 181 const struct sr_channel_group *cg)
e93cdf42
BV
182{
183 struct dev_context *devc;
184
53b4680f 185 (void)cg;
8f996b89 186
e93cdf42 187 if (sdi->status != SR_ST_ACTIVE)
e73ffd42 188 return SR_ERR_DEV_CLOSED;
e93cdf42
BV
189
190 if (!(devc = sdi->priv)) {
38d326e8 191 sr_err("sdi->priv was NULL.");
e93cdf42
BV
192 return SR_ERR_BUG;
193 }
194
584560f1 195 switch (key) {
1953564a 196 case SR_CONF_LIMIT_MSEC:
e93cdf42 197 /* TODO: not yet implemented */
e44ac12a 198 if (g_variant_get_uint64(data) == 0) {
38d326e8 199 sr_err("LIMIT_MSEC can't be 0.");
e93cdf42
BV
200 return SR_ERR;
201 }
e44ac12a 202 devc->limit_msec = g_variant_get_uint64(data);
38d326e8 203 sr_dbg("Setting time limit to %" PRIu64 "ms.",
e93cdf42
BV
204 devc->limit_msec);
205 break;
1953564a 206 case SR_CONF_LIMIT_SAMPLES:
e44ac12a 207 devc->limit_samples = g_variant_get_uint64(data);
38d326e8 208 sr_dbg("Setting sample limit to %" PRIu64 ".",
e93cdf42
BV
209 devc->limit_samples);
210 break;
211 default:
bd6fbf62 212 return SR_ERR_NA;
e93cdf42
BV
213 }
214
215 return SR_OK;
216}
217
584560f1 218static int config_list(uint32_t key, GVariant **data, const struct sr_dev_inst *sdi,
53b4680f 219 const struct sr_channel_group *cg)
a1c743fc 220{
a1c743fc 221 (void)sdi;
53b4680f 222 (void)cg;
a1c743fc
BV
223
224 switch (key) {
0d485e30 225 case SR_CONF_SCAN_OPTIONS:
584560f1 226 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
a0e0bb41 227 scanopts, ARRAY_SIZE(scanopts), sizeof(uint32_t));
0d485e30 228 break;
9a6517d1 229 case SR_CONF_DEVICE_OPTIONS:
584560f1 230 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
f254bc4b 231 devopts, ARRAY_SIZE(devopts), sizeof(uint32_t));
9a6517d1 232 break;
a1c743fc 233 default:
bd6fbf62 234 return SR_ERR_NA;
a1c743fc
BV
235 }
236
237 return SR_OK;
238}
239
6078d2c9 240static int dev_acquisition_start(const struct sr_dev_inst *sdi, void *cb_data)
e93cdf42 241{
e93cdf42 242 struct dev_context *devc;
fb3a1505 243 struct sr_serial_dev_inst *serial;
e93cdf42 244
e73ffd42
BV
245 if (sdi->status != SR_ST_ACTIVE)
246 return SR_ERR_DEV_CLOSED;
247
e93cdf42 248 if (!(devc = sdi->priv)) {
38d326e8 249 sr_err("sdi->priv was NULL.");
e93cdf42
BV
250 return SR_ERR_BUG;
251 }
252
e93cdf42
BV
253 devc->cb_data = cb_data;
254
255 /* Send header packet to the session bus. */
29a27196 256 std_session_send_df_header(cb_data, LOG_PREFIX);
e93cdf42 257
e93cdf42 258 /* Poll every 100ms, or whenever some data comes in. */
fb3a1505 259 serial = sdi->conn;
102f1239
BV
260 serial_source_add(sdi->session, serial, G_IO_IN, 100,
261 agdmm_receive_data, (void *)sdi);
e93cdf42
BV
262
263 return SR_OK;
264}
265
6078d2c9 266static int dev_acquisition_stop(struct sr_dev_inst *sdi, void *cb_data)
e93cdf42 267{
d43b0908 268 return std_serial_dev_acquisition_stop(sdi, cb_data, std_serial_dev_close,
29a27196 269 sdi->conn, LOG_PREFIX);
e93cdf42
BV
270}
271
272SR_PRIV struct sr_dev_driver agdmm_driver_info = {
273 .name = "agilent-dmm",
274 .longname = "Agilent U12xx series DMMs",
275 .api_version = 1,
6078d2c9
UH
276 .init = init,
277 .cleanup = cleanup,
278 .scan = scan,
279 .dev_list = dev_list,
a6630742 280 .dev_clear = NULL,
6fab7b8f 281 .config_get = NULL,
035a1078 282 .config_set = config_set,
a1c743fc 283 .config_list = config_list,
854434de 284 .dev_open = std_serial_dev_open,
bf2c987f 285 .dev_close = std_serial_dev_close,
6078d2c9
UH
286 .dev_acquisition_start = dev_acquisition_start,
287 .dev_acquisition_stop = dev_acquisition_stop,
e93cdf42
BV
288 .priv = NULL,
289};