]> sigrok.org Git - libsigrok.git/blame - src/hardware/fluke-45/api.c
Remove always-false condition
[libsigrok.git] / src / hardware / fluke-45 / api.c
CommitLineData
e756c595
J
1/*
2 * This file is part of the libsigrok project.
3 *
ab2b21fb 4 * Copyright (C) 2012 Bert Vermeulen <bert@biot.com>
e756c595
J
5 * Copyright (C) 2017 John Chajecki <subs@qcontinuum.plus.com>
6 *
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
19 */
20
21#include <config.h>
ab2b21fb
J
22#include <glib.h>
23#include <sys/types.h>
24#include <sys/stat.h>
25#include <fcntl.h>
26#include <string.h>
27#include <stdint.h>
28#include <stdbool.h>
29#include <libsigrok/libsigrok.h>
30#include "libsigrok-internal.h"
31#include "scpi.h"
e756c595
J
32#include "protocol.h"
33
71db2d4d
GS
34/*
35 * This test violates the SCPI protocol, and confuses other devices.
36 * Disable it for now, until a better location was found.
37 */
38#define ECHO_TEST 0
39
ab2b21fb
J
40static const uint32_t scanopts[] = {
41 SR_CONF_CONN,
42 SR_CONF_SERIALCOMM,
43};
e756c595 44
ab2b21fb
J
45static const uint32_t drvopts[] = {
46 SR_CONF_MULTIMETER,
47};
e756c595 48
ab2b21fb
J
49static const uint32_t devopts[] = {
50 SR_CONF_CONTINUOUS,
51 SR_CONF_LIMIT_SAMPLES | SR_CONF_SET,
52 SR_CONF_LIMIT_MSEC | SR_CONF_SET,
53};
e756c595 54
ab2b21fb
J
55/* Vendor, model, number of channels, poll period */
56static const struct fluke_scpi_dmm_model supported_models[] = {
57 { "FLUKE", "45", 2, 0 },
58};
e756c595 59
ab2b21fb 60static struct sr_dev_driver fluke_45_driver_info;
e756c595 61
ab2b21fb 62static struct sr_dev_inst *probe_device(struct sr_scpi_dev_inst *scpi)
e756c595 63{
ab2b21fb
J
64 struct dev_context *devc;
65 struct sr_dev_inst *sdi;
66 struct sr_scpi_hw_info *hw_info;
67 const struct scpi_command *cmdset = fluke_45_cmdset;
68 unsigned int i;
69 const struct fluke_scpi_dmm_model *model = NULL;
70 gchar *channel_name;
71db2d4d 71#if ECHO_TEST
ab2b21fb 72 char *response;
71db2d4d 73#endif
ab2b21fb 74
71db2d4d 75#if ECHO_TEST
ab2b21fb 76 /* Test for serial port ECHO enabled. */
712f7d5e 77 response = NULL;
ab2b21fb 78 sr_scpi_get_string(scpi, "ECHO-TEST", &response);
712f7d5e 79 if (response && strcmp(response, "ECHO-TEST") == 0) {
ab2b21fb
J
80 sr_err("Serial port ECHO is ON. Please turn it OFF!");
81 return NULL;
82 }
71db2d4d 83#endif
e756c595 84
ab2b21fb
J
85 /* Get device IDN. */
86 if (sr_scpi_get_hw_id(scpi, &hw_info) != SR_OK) {
87 sr_info("Couldn't get IDN response, retrying.");
88 sr_scpi_close(scpi);
89 sr_scpi_open(scpi);
90 if (sr_scpi_get_hw_id(scpi, &hw_info) != SR_OK) {
91 sr_info("Couldn't get IDN response.");
92 return NULL;
93 }
94 }
e756c595 95
ab2b21fb
J
96 /* Check IDN. */
97 for (i = 0; i < ARRAY_SIZE(supported_models); i++) {
98 if (!g_ascii_strcasecmp(hw_info->manufacturer,
99 supported_models[i].vendor) &&
100 !strcmp(hw_info->model, supported_models[i].model)) {
101 model = &supported_models[i];
102 break;
103 }
104 }
105 if (!model) {
106 sr_scpi_hw_info_free(hw_info);
107 return NULL;
108 }
109
110 /* Set up device parameters. */
c10b0276 111 sdi = g_malloc0(sizeof(struct sr_dev_inst));
ab2b21fb
J
112 sdi->vendor = g_strdup(model->vendor);
113 sdi->model = g_strdup(model->model);
114 sdi->version = g_strdup(hw_info->firmware_version);
115 sdi->serial_num = g_strdup(hw_info->serial_number);
116 sdi->conn = scpi;
117 sdi->driver = &fluke_45_driver_info;
118 sdi->inst_type = SR_INST_SCPI;
c10b0276 119 sr_scpi_hw_info_free(hw_info);
ab2b21fb
J
120
121 devc = g_malloc0(sizeof(struct dev_context));
122 devc->num_channels = model->num_channels;
123 devc->cmdset = cmdset;
c10b0276 124 sdi->priv = devc;
ab2b21fb
J
125
126 /* Create channels. */
127 for (i = 0; i < devc->num_channels; i++) {
128 channel_name = g_strdup_printf("P%d", i + 1);
129 sr_channel_new(sdi, 0, SR_CHANNEL_ANALOG, TRUE, channel_name);
130 }
131
ab2b21fb 132 return sdi;
e756c595
J
133}
134
ab2b21fb
J
135static GSList *scan(struct sr_dev_driver *di, GSList *options)
136{
137 return sr_scpi_scan(di->context, options, probe_device);
138}
139
140static int dev_open(struct sr_dev_inst *sdi)
e756c595 141{
ab2b21fb
J
142 struct sr_scpi_dev_inst *scpi;
143 int ret;
e756c595 144
ab2b21fb
J
145 scpi = sdi->conn;
146
147 if ((ret = sr_scpi_open(scpi) < 0)) {
148 sr_err("Failed to open SCPI device: %s.", sr_strerror(ret));
149 return SR_ERR;
150 }
e756c595
J
151
152 return SR_OK;
153}
154
ab2b21fb 155static int dev_close(struct sr_dev_inst *sdi)
e756c595 156{
ab2b21fb 157 struct sr_scpi_dev_inst *scpi;
e756c595 158
ab2b21fb 159 scpi = sdi->conn;
e756c595 160
ab2b21fb
J
161 if (!scpi)
162 return SR_ERR_BUG;
e756c595 163
ab2b21fb 164 return sr_scpi_close(scpi);
e756c595
J
165}
166
167static int config_set(uint32_t key, GVariant *data,
168 const struct sr_dev_inst *sdi, const struct sr_channel_group *cg)
169{
ab2b21fb 170 struct dev_context *devc;
e756c595 171
e756c595
J
172 (void)cg;
173
ab2b21fb 174 devc = sdi->priv;
e756c595 175
ab2b21fb 176 return sr_sw_limits_config_set(&devc->limits, key, data);
e756c595
J
177}
178
179static int config_list(uint32_t key, GVariant **data,
180 const struct sr_dev_inst *sdi, const struct sr_channel_group *cg)
181{
ab2b21fb
J
182 return STD_CONFIG_LIST(key, data, sdi, cg, scanopts, drvopts, devopts);
183}
e756c595 184
ab2b21fb
J
185static int config_get(uint32_t key, GVariant **data,
186 const struct sr_dev_inst *sdi, const struct sr_channel_group *cg)
187{
188 struct dev_context *devc = sdi->priv;
e756c595 189
ab2b21fb 190 (void)cg;
e756c595 191
ab2b21fb 192 return sr_sw_limits_config_get(&devc->limits, key, data);
e756c595
J
193}
194
195static int dev_acquisition_start(const struct sr_dev_inst *sdi)
196{
ab2b21fb
J
197 struct sr_scpi_dev_inst *scpi;
198 struct dev_context *devc;
199 int ret;
200
201 scpi = sdi->conn;
202 devc = sdi->priv;
203
204 sr_sw_limits_acquisition_start(&devc->limits);
205 std_session_send_df_header(sdi);
e756c595 206
ab2b21fb
J
207 if ((ret = sr_scpi_source_add(sdi->session, scpi, G_IO_IN, 10,
208 fl45_scpi_receive_data, (void *)sdi)) != SR_OK)
209 return ret;
e756c595
J
210
211 return SR_OK;
212}
213
214static int dev_acquisition_stop(struct sr_dev_inst *sdi)
215{
ab2b21fb
J
216 struct sr_scpi_dev_inst *scpi;
217 double d;
e756c595 218
ab2b21fb
J
219 scpi = sdi->conn;
220
221 /*
222 * A requested value is certainly on the way. Retrieve it now,
223 * to avoid leaving the device in a state where it's not expecting
224 * commands.
225 */
226 sr_scpi_get_double(scpi, NULL, &d);
227 sr_scpi_source_remove(sdi->session, scpi);
228
229 std_session_send_df_end(sdi);
e756c595
J
230
231 return SR_OK;
232}
233
ab2b21fb 234static struct sr_dev_driver fluke_45_driver_info = {
e756c595
J
235 .name = "fluke-45",
236 .longname = "Fluke 45",
237 .api_version = 1,
238 .init = std_init,
239 .cleanup = std_cleanup,
240 .scan = scan,
241 .dev_list = std_dev_list,
242 .dev_clear = std_dev_clear,
243 .config_get = config_get,
244 .config_set = config_set,
245 .config_list = config_list,
246 .dev_open = dev_open,
247 .dev_close = dev_close,
248 .dev_acquisition_start = dev_acquisition_start,
249 .dev_acquisition_stop = dev_acquisition_stop,
250 .context = NULL,
251};
e756c595 252SR_REGISTER_DEV_DRIVER(fluke_45_driver_info);