]> sigrok.org Git - libsigrok.git/blame - src/hardware/agilent-dmm/api.c
std_serial_dev_acquisition_stop(): Remove serial parameter
[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
6ec6c43b 20#include <config.h>
e93cdf42 21#include <glib.h>
e93cdf42
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 "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
f9dada0b 35static const uint32_t drvopts[] = {
1953564a 36 SR_CONF_MULTIMETER,
f9dada0b
BV
37};
38
39static const uint32_t devopts[] = {
e91bb0a6 40 SR_CONF_CONTINUOUS,
5827f61b
BV
41 SR_CONF_LIMIT_SAMPLES | SR_CONF_SET,
42 SR_CONF_LIMIT_MSEC | SR_CONF_SET,
e93cdf42
BV
43};
44
f857bd92 45extern const struct agdmm_job agdmm_jobs_u12xx[];
8c0152f2 46extern const struct agdmm_recv agdmm_recvs_u123x[];
4edba404 47extern const struct agdmm_recv agdmm_recvs_u124x[];
8c0152f2 48extern const struct agdmm_recv agdmm_recvs_u125x[];
e93cdf42 49
74ac7d7f
BV
50/* This works on all the Agilent U12xxA series, although the
51 * U127xA can apparently also run at 19200/8n1. */
52#define SERIALCOMM "9600/8n1"
53
e93cdf42 54static const struct agdmm_profile supported_agdmm[] = {
f857bd92
BV
55 { AGILENT_U1231, "U1231A", agdmm_jobs_u12xx, agdmm_recvs_u123x },
56 { AGILENT_U1232, "U1232A", agdmm_jobs_u12xx, agdmm_recvs_u123x },
57 { AGILENT_U1233, "U1233A", agdmm_jobs_u12xx, agdmm_recvs_u123x },
58
4edba404
BV
59 { AGILENT_U1241, "U1241A", agdmm_jobs_u12xx, agdmm_recvs_u124x },
60 { AGILENT_U1242, "U1242A", agdmm_jobs_u12xx, agdmm_recvs_u124x },
ee2bcdfc
BV
61 { AGILENT_U1241, "U1241B", agdmm_jobs_u12xx, agdmm_recvs_u124x },
62 { AGILENT_U1242, "U1242B", agdmm_jobs_u12xx, agdmm_recvs_u124x },
4edba404 63
f857bd92
BV
64 { AGILENT_U1251, "U1251A", agdmm_jobs_u12xx, agdmm_recvs_u125x },
65 { AGILENT_U1252, "U1252A", agdmm_jobs_u12xx, agdmm_recvs_u125x },
66 { AGILENT_U1253, "U1253A", agdmm_jobs_u12xx, agdmm_recvs_u125x },
67 { AGILENT_U1251, "U1251B", agdmm_jobs_u12xx, agdmm_recvs_u125x },
68 { AGILENT_U1252, "U1252B", agdmm_jobs_u12xx, agdmm_recvs_u125x },
69 { AGILENT_U1253, "U1253B", agdmm_jobs_u12xx, agdmm_recvs_u125x },
70 ALL_ZERO
e93cdf42
BV
71};
72
4f840ce9 73static GSList *scan(struct sr_dev_driver *di, GSList *options)
e93cdf42
BV
74{
75 struct sr_dev_inst *sdi;
e93cdf42 76 struct dev_context *devc;
1987b8d6 77 struct sr_config *src;
109a3ba4 78 struct sr_serial_dev_inst *serial;
e93cdf42 79 GSList *l, *devices;
109a3ba4 80 int len, i;
e93cdf42
BV
81 const char *conn, *serialcomm;
82 char *buf, **tokens;
83
e93cdf42
BV
84 devices = NULL;
85 conn = serialcomm = NULL;
86 for (l = options; l; l = l->next) {
1987b8d6
BV
87 src = l->data;
88 switch (src->key) {
1953564a 89 case SR_CONF_CONN:
e44ac12a 90 conn = g_variant_get_string(src->data, NULL);
e93cdf42 91 break;
1953564a 92 case SR_CONF_SERIALCOMM:
e44ac12a 93 serialcomm = g_variant_get_string(src->data, NULL);
e93cdf42
BV
94 break;
95 }
96 }
74ac7d7f 97 if (!conn)
e93cdf42 98 return NULL;
109a3ba4
BV
99 if (!serialcomm)
100 serialcomm = SERIALCOMM;
e93cdf42 101
91219afc 102 serial = sr_serial_dev_inst_new(conn, serialcomm);
e93cdf42 103
64c536be 104 if (serial_open(serial, SERIAL_RDWR) != SR_OK)
e93cdf42 105 return NULL;
e93cdf42 106
109a3ba4 107 serial_flush(serial);
95779b43 108 if (serial_write_blocking(serial, "*IDN?\r\n", 7, SERIAL_WRITE_TIMEOUT_MS) < 7) {
081c214e 109 sr_err("Unable to send identification string.");
e93cdf42
BV
110 return NULL;
111 }
112
113 len = 128;
a95f142e 114 buf = g_malloc(len);
ee2bcdfc 115 serial_readline(serial, &buf, &len, 250);
e93cdf42
BV
116 if (!len)
117 return NULL;
118
119 tokens = g_strsplit(buf, ",", 4);
120 if (!strcmp("Agilent Technologies", tokens[0])
fbf07e02 121 && tokens[1] && tokens[2] && tokens[3]) {
e93cdf42
BV
122 for (i = 0; supported_agdmm[i].model; i++) {
123 if (strcmp(supported_agdmm[i].modelname, tokens[1]))
124 continue;
aac29cc1 125 sdi = g_malloc0(sizeof(struct sr_dev_inst));
0af636be
UH
126 sdi->status = SR_ST_INACTIVE;
127 sdi->vendor = g_strdup("Agilent");
128 sdi->model = g_strdup(tokens[1]);
129 sdi->version = g_strdup(tokens[3]);
f57d8ffe 130 devc = g_malloc0(sizeof(struct dev_context));
5b6829ea 131 sr_sw_limits_init(&devc->limits);
e93cdf42 132 devc->profile = &supported_agdmm[i];
e93cdf42 133 devc->cur_mq = -1;
fb3a1505
BV
134 sdi->inst_type = SR_INST_SERIAL;
135 sdi->conn = serial;
e93cdf42 136 sdi->priv = devc;
5e23fcab 137 sr_channel_new(sdi, 0, SR_CHANNEL_ANALOG, TRUE, "P1");
e93cdf42
BV
138 devices = g_slist_append(devices, sdi);
139 break;
140 }
141 }
142 g_strfreev(tokens);
143 g_free(buf);
144
109a3ba4
BV
145 serial_close(serial);
146 if (!devices)
147 sr_serial_dev_inst_free(serial);
e93cdf42 148
15a5bfe4 149 return std_scan_complete(di, devices);
e93cdf42
BV
150}
151
584560f1 152static int config_set(uint32_t key, GVariant *data, const struct sr_dev_inst *sdi,
53b4680f 153 const struct sr_channel_group *cg)
e93cdf42
BV
154{
155 struct dev_context *devc;
156
53b4680f 157 (void)cg;
8f996b89 158
e93cdf42 159 if (sdi->status != SR_ST_ACTIVE)
e73ffd42 160 return SR_ERR_DEV_CLOSED;
e93cdf42 161
b0baddef 162 devc = sdi->priv;
e93cdf42 163
5b6829ea 164 return sr_sw_limits_config_set(&devc->limits, key, data);
e93cdf42
BV
165}
166
584560f1 167static int config_list(uint32_t key, GVariant **data, const struct sr_dev_inst *sdi,
53b4680f 168 const struct sr_channel_group *cg)
a1c743fc 169{
53b4680f 170 (void)cg;
a1c743fc
BV
171
172 switch (key) {
0d485e30 173 case SR_CONF_SCAN_OPTIONS:
584560f1 174 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
a0e0bb41 175 scanopts, ARRAY_SIZE(scanopts), sizeof(uint32_t));
0d485e30 176 break;
9a6517d1 177 case SR_CONF_DEVICE_OPTIONS:
ce4bd052
BV
178 if (!sdi)
179 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
f9dada0b 180 drvopts, ARRAY_SIZE(drvopts), sizeof(uint32_t));
ce4bd052
BV
181 else
182 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
f9dada0b 183 devopts, ARRAY_SIZE(devopts), sizeof(uint32_t));
9a6517d1 184 break;
a1c743fc 185 default:
bd6fbf62 186 return SR_ERR_NA;
a1c743fc
BV
187 }
188
189 return SR_OK;
190}
191
695dc859 192static int dev_acquisition_start(const struct sr_dev_inst *sdi)
e93cdf42 193{
5b6829ea 194 struct dev_context *devc = sdi->priv;
fb3a1505 195 struct sr_serial_dev_inst *serial;
e93cdf42 196
e73ffd42
BV
197 if (sdi->status != SR_ST_ACTIVE)
198 return SR_ERR_DEV_CLOSED;
199
5b6829ea 200 sr_sw_limits_acquisition_start(&devc->limits);
bee2b016 201 std_session_send_df_header(sdi);
e93cdf42 202
e93cdf42 203 /* Poll every 100ms, or whenever some data comes in. */
fb3a1505 204 serial = sdi->conn;
102f1239
BV
205 serial_source_add(sdi->session, serial, G_IO_IN, 100,
206 agdmm_receive_data, (void *)sdi);
e93cdf42
BV
207
208 return SR_OK;
209}
210
695dc859 211static int dev_acquisition_stop(struct sr_dev_inst *sdi)
e93cdf42 212{
15f96409 213 return std_serial_dev_acquisition_stop(sdi, std_serial_dev_close);
e93cdf42
BV
214}
215
dd5c48a6 216static struct sr_dev_driver agdmm_driver_info = {
e93cdf42
BV
217 .name = "agilent-dmm",
218 .longname = "Agilent U12xx series DMMs",
219 .api_version = 1,
c2fdcc25 220 .init = std_init,
700d6b64 221 .cleanup = std_cleanup,
6078d2c9 222 .scan = scan,
c01bf34c 223 .dev_list = std_dev_list,
a6630742 224 .dev_clear = NULL,
6fab7b8f 225 .config_get = NULL,
035a1078 226 .config_set = config_set,
a1c743fc 227 .config_list = config_list,
854434de 228 .dev_open = std_serial_dev_open,
bf2c987f 229 .dev_close = std_serial_dev_close,
6078d2c9
UH
230 .dev_acquisition_start = dev_acquisition_start,
231 .dev_acquisition_stop = dev_acquisition_stop,
41812aca 232 .context = NULL,
e93cdf42 233};
dd5c48a6 234SR_REGISTER_DEV_DRIVER(agdmm_driver_info);