]> sigrok.org Git - libsigrok.git/blame - src/hardware/rdtech-um/api.c
output/csv: use intermediate time_t var, silence compiler warning
[libsigrok.git] / src / hardware / rdtech-um / api.c
CommitLineData
8b607a24
AS
1/*
2 * This file is part of the libsigrok project.
3 *
4 * Copyright (C) 2018-2020 Andreas Sandberg <andreas@sandberg.pp.se>
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
8b607a24 20#include <config.h>
dca972f8 21
8b607a24 22#include <glib.h>
8b607a24 23#include <fcntl.h>
dca972f8 24#include <libsigrok/libsigrok.h>
8b607a24 25#include <string.h>
dca972f8
GS
26#include <sys/types.h>
27#include <sys/stat.h>
8b607a24 28
8b607a24 29#include "libsigrok-internal.h"
8b607a24
AS
30#include "protocol.h"
31
32#define RDTECH_UM_SERIALCOMM "115200/8n1"
33
34static const uint32_t scanopts[] = {
35 SR_CONF_CONN,
36 SR_CONF_SERIALCOMM,
37};
38
39static const uint32_t drvopts[] = {
40 SR_CONF_ENERGYMETER,
41};
42
43static const uint32_t devopts[] = {
44 SR_CONF_CONTINUOUS,
d6ca362d
GS
45 SR_CONF_LIMIT_FRAMES | SR_CONF_GET | SR_CONF_SET,
46 SR_CONF_LIMIT_MSEC | SR_CONF_GET | SR_CONF_SET,
8b607a24
AS
47};
48
323b32f4
GS
49static GSList *rdtech_um_scan(struct sr_dev_driver *di,
50 const char *conn, const char *serialcomm)
8b607a24
AS
51{
52 struct sr_serial_dev_inst *serial;
fda34e5a
GS
53 const struct rdtech_um_profile *p;
54 GSList *devices;
55 struct dev_context *devc;
56 struct sr_dev_inst *sdi;
323b32f4 57 size_t ch_idx;
1b43eb29
GS
58 const struct rdtech_um_channel_desc *pch;
59 struct sr_channel *ch;
60 struct feed_queue_analog *feed;
8b607a24
AS
61
62 serial = sr_serial_dev_inst_new(conn, serialcomm);
63 if (serial_open(serial, SERIAL_RDWR) != SR_OK)
64 goto err_out;
65
66 p = rdtech_um_probe(serial);
67 if (!p) {
68 sr_err("Failed to find a supported RDTech UM device.");
69 goto err_out_serial;
70 }
71
bc9aa94b 72 devc = g_malloc0(sizeof(*devc));
8b607a24
AS
73 sr_sw_limits_init(&devc->limits);
74 devc->profile = p;
75
bc9aa94b
GS
76 sdi = g_malloc0(sizeof(*sdi));
77 sdi->priv = devc;
8b607a24
AS
78 sdi->status = SR_ST_INACTIVE;
79 sdi->vendor = g_strdup("RDTech");
80 sdi->model = g_strdup(p->model_name);
81 sdi->version = NULL;
82 sdi->inst_type = SR_INST_SERIAL;
83 sdi->conn = serial;
8b607a24 84
1b43eb29 85 devc->feeds = g_malloc0(p->channel_count * sizeof(devc->feeds[0]));
7cfa93b0 86 for (ch_idx = 0; ch_idx < p->channel_count; ch_idx++) {
1b43eb29
GS
87 pch = &p->channels[ch_idx];
88 ch = sr_channel_new(sdi, ch_idx,
89 SR_CHANNEL_ANALOG, TRUE, pch->name);
90 feed = feed_queue_analog_alloc(sdi, 1, pch->digits, ch);
91 feed_queue_analog_mq_unit(feed, pch->mq, 0, pch->unit);
92 feed_queue_analog_scale_offset(feed, &pch->scale, NULL);
93 devc->feeds[ch_idx] = feed;
7cfa93b0 94 }
8b607a24 95
fda34e5a 96 devices = g_slist_append(NULL, sdi);
8b607a24
AS
97 serial_close(serial);
98 if (!devices)
99 sr_serial_dev_inst_free(serial);
100
101 return std_scan_complete(di, devices);
102
103err_out_serial:
104 serial_close(serial);
105err_out:
106 sr_serial_dev_inst_free(serial);
107
108 return NULL;
109}
110
1b43eb29
GS
111static void clear_helper(struct dev_context *devc)
112{
113 const struct rdtech_um_profile *p;
114 size_t ch_idx;
115
116 if (!devc)
117 return;
118
119 p = devc->profile;
120 if (p && devc->feeds) {
121 for (ch_idx = 0; ch_idx < p->channel_count; ch_idx++)
122 feed_queue_analog_free(devc->feeds[ch_idx]);
123 g_free(devc->feeds);
124 }
125}
126
127static int dev_clear(const struct sr_dev_driver *di)
128{
129 return std_dev_clear_with_callback(di, (std_dev_clear_callback)clear_helper);
130}
131
8b607a24
AS
132static GSList *scan(struct sr_dev_driver *di, GSList *options)
133{
fda34e5a
GS
134 const char *conn;
135 const char *serialcomm;
8b607a24 136
fda34e5a
GS
137 conn = NULL;
138 serialcomm = RDTECH_UM_SERIALCOMM;
8ff25aa9 139 (void)sr_serial_extract_options(options, &conn, &serialcomm);
8b607a24
AS
140 if (!conn)
141 return NULL;
142
143 return rdtech_um_scan(di, conn, serialcomm);
144}
145
d6ca362d
GS
146static int config_get(uint32_t key, GVariant **data,
147 const struct sr_dev_inst *sdi, const struct sr_channel_group *cg)
148{
149 struct dev_context *devc;
150
151 (void)cg;
152
153 devc = sdi->priv;
154
155 return sr_sw_limits_config_get(&devc->limits, key, data);
156}
157
8b607a24 158static int config_set(uint32_t key, GVariant *data,
323b32f4 159 const struct sr_dev_inst *sdi, const struct sr_channel_group *cg)
8b607a24
AS
160{
161 struct dev_context *devc;
162
163 (void)cg;
164
165 devc = sdi->priv;
166
167 return sr_sw_limits_config_set(&devc->limits, key, data);
168}
169
170static int config_list(uint32_t key, GVariant **data,
323b32f4 171 const struct sr_dev_inst *sdi, const struct sr_channel_group *cg)
8b607a24
AS
172{
173 return STD_CONFIG_LIST(key, data, sdi, cg, scanopts, drvopts, devopts);
174}
175
176static int dev_acquisition_start(const struct sr_dev_inst *sdi)
177{
fda34e5a
GS
178 struct dev_context *devc;
179 struct sr_serial_dev_inst *serial;
8b607a24 180
fda34e5a 181 devc = sdi->priv;
8b607a24
AS
182 sr_sw_limits_acquisition_start(&devc->limits);
183 std_session_send_df_header(sdi);
184
fda34e5a 185 serial = sdi->conn;
8b607a24 186 serial_source_add(sdi->session, serial, G_IO_IN, 50,
323b32f4 187 rdtech_um_receive_data, (void *)sdi);
8b607a24 188
c1f4f589 189 return rdtech_um_poll(sdi, TRUE);
8b607a24
AS
190}
191
192static struct sr_dev_driver rdtech_um_driver_info = {
193 .name = "rdtech-um",
194 .longname = "RDTech UMxx USB power meter",
195 .api_version = 1,
196 .init = std_init,
197 .cleanup = std_cleanup,
198 .scan = scan,
199 .dev_list = std_dev_list,
1b43eb29 200 .dev_clear = dev_clear,
d6ca362d 201 .config_get = config_get,
8b607a24
AS
202 .config_set = config_set,
203 .config_list = config_list,
204 .dev_open = std_serial_dev_open,
205 .dev_close = std_serial_dev_close,
206 .dev_acquisition_start = dev_acquisition_start,
207 .dev_acquisition_stop = std_serial_dev_acquisition_stop,
208 .context = NULL,
209};
210SR_REGISTER_DEV_DRIVER(rdtech_um_driver_info);