]> sigrok.org Git - libsigrok.git/blame_incremental - api.c
output/csv: use intermediate time_t var, silence compiler warning
[libsigrok.git] / api.c
... / ...
CommitLineData
1/*
2 * This file is part of the libsigrok project.
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>
21#include "libsigrok.h"
22#include "libsigrok-internal.h"
23#include "protocol.h"
24#include <sys/types.h>
25#include <sys/stat.h>
26#include <fcntl.h>
27#include <errno.h>
28#include <string.h>
29
30/* The Colead SL-5868P uses this. */
31#define SERIALCOMM "2400/8n1"
32
33static const uint32_t scanopts[] = {
34 SR_CONF_CONN,
35 SR_CONF_SERIALCOMM,
36};
37
38static const uint32_t devopts[] = {
39 SR_CONF_SOUNDLEVELMETER,
40 SR_CONF_CONTINUOUS,
41 SR_CONF_LIMIT_SAMPLES | SR_CONF_SET,
42 SR_CONF_LIMIT_MSEC | SR_CONF_SET,
43};
44
45SR_PRIV struct sr_dev_driver colead_slm_driver_info;
46static struct sr_dev_driver *di = &colead_slm_driver_info;
47
48static int init(struct sr_context *sr_ctx)
49{
50 return std_init(sr_ctx, di, LOG_PREFIX);
51}
52
53static GSList *scan(GSList *options)
54{
55 struct drv_context *drvc;
56 struct dev_context *devc;
57 struct sr_dev_inst *sdi;
58 struct sr_config *src;
59 struct sr_channel *ch;
60 GSList *devices, *l;
61 const char *conn, *serialcomm;
62
63 drvc = di->priv;
64 drvc->instances = NULL;
65
66 devices = NULL;
67
68 conn = serialcomm = NULL;
69 for (l = options; l; l = l->next) {
70 src = l->data;
71 switch (src->key) {
72 case SR_CONF_CONN:
73 conn = g_variant_get_string(src->data, NULL);
74 break;
75 case SR_CONF_SERIALCOMM:
76 serialcomm = g_variant_get_string(src->data, NULL);
77 break;
78 }
79 }
80 if (!conn)
81 return NULL;
82 if (!serialcomm)
83 serialcomm = SERIALCOMM;
84
85 sdi = g_malloc0(sizeof(struct sr_dev_inst));
86 sdi->status = SR_ST_INACTIVE;
87 sdi->vendor = g_strdup("Colead");
88 sdi->model = g_strdup("SL-5868P");
89 devc = g_malloc0(sizeof(struct dev_context));
90 if (!(sdi->conn = sr_serial_dev_inst_new(conn, serialcomm)))
91 return NULL;
92 sdi->inst_type = SR_INST_SERIAL;
93 sdi->priv = devc;
94 sdi->driver = di;
95 ch = sr_channel_new(0, SR_CHANNEL_ANALOG, TRUE, "P1");
96 sdi->channels = g_slist_append(sdi->channels, ch);
97 drvc->instances = g_slist_append(drvc->instances, sdi);
98 devices = g_slist_append(devices, sdi);
99
100 return devices;
101}
102
103static GSList *dev_list(void)
104{
105 return ((struct drv_context *)(di->priv))->instances;
106}
107
108static int dev_open(struct sr_dev_inst *sdi)
109{
110 struct sr_serial_dev_inst *serial;
111
112 serial = sdi->conn;
113 if (serial_open(serial, SERIAL_RDWR) != SR_OK)
114 return SR_ERR;
115
116 sdi->status = SR_ST_ACTIVE;
117
118 return SR_OK;
119}
120
121static int cleanup(void)
122{
123 return std_dev_clear(di, NULL);
124}
125
126static int config_set(uint32_t key, GVariant *data, const struct sr_dev_inst *sdi,
127 const struct sr_channel_group *cg)
128{
129 struct dev_context *devc;
130
131 (void)cg;
132
133 if (sdi->status != SR_ST_ACTIVE)
134 return SR_ERR_DEV_CLOSED;
135
136 if (!(devc = sdi->priv)) {
137 sr_err("sdi->priv was NULL.");
138 return SR_ERR_BUG;
139 }
140
141 switch (key) {
142 case SR_CONF_LIMIT_MSEC:
143 /* TODO: not yet implemented */
144 if (g_variant_get_uint64(data) == 0) {
145 sr_err("LIMIT_MSEC can't be 0.");
146 return SR_ERR;
147 }
148 devc->limit_msec = g_variant_get_uint64(data);;
149 sr_dbg("Setting time limit to %" PRIu64 "ms.",
150 devc->limit_msec);
151 break;
152 case SR_CONF_LIMIT_SAMPLES:
153 devc->limit_samples = g_variant_get_uint64(data);
154 sr_dbg("Setting sample limit to %" PRIu64 ".",
155 devc->limit_samples);
156 break;
157 default:
158 return SR_ERR_NA;
159 }
160
161 return SR_OK;
162}
163
164static int config_list(uint32_t key, GVariant **data, const struct sr_dev_inst *sdi,
165 const struct sr_channel_group *cg)
166{
167 (void)sdi;
168 (void)cg;
169
170 switch (key) {
171 case SR_CONF_SCAN_OPTIONS:
172 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
173 scanopts, ARRAY_SIZE(scanopts), sizeof(uint32_t));
174 break;
175 case SR_CONF_DEVICE_OPTIONS:
176 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
177 devopts, ARRAY_SIZE(devopts), sizeof(uint32_t));
178 break;
179 default:
180 return SR_ERR_NA;
181 }
182
183 return SR_OK;
184}
185
186static int dev_acquisition_start(const struct sr_dev_inst *sdi, void *cb_data)
187{
188 struct dev_context *devc;
189 struct sr_serial_dev_inst *serial;
190
191 if (sdi->status != SR_ST_ACTIVE)
192 return SR_ERR_DEV_CLOSED;
193
194 if (!(devc = sdi->priv)) {
195 sr_err("sdi->priv was NULL.");
196 return SR_ERR_BUG;
197 }
198
199 devc->cb_data = cb_data;
200
201 /* Send header packet to the session bus. */
202 std_session_send_df_header(cb_data, LOG_PREFIX);
203
204 /* Poll every 150ms, or whenever some data comes in. */
205 serial = sdi->conn;
206 serial_source_add(sdi->session, serial, G_IO_IN, 150,
207 colead_slm_receive_data, (void *)sdi);
208
209 return SR_OK;
210}
211
212static int dev_acquisition_stop(struct sr_dev_inst *sdi, void *cb_data)
213{
214 return std_serial_dev_acquisition_stop(sdi, cb_data, std_serial_dev_close,
215 sdi->conn, LOG_PREFIX);
216}
217
218SR_PRIV struct sr_dev_driver colead_slm_driver_info = {
219 .name = "colead-slm",
220 .longname = "Colead SLM",
221 .api_version = 1,
222 .init = init,
223 .cleanup = cleanup,
224 .scan = scan,
225 .dev_list = dev_list,
226 .dev_clear = NULL,
227 .config_get = NULL,
228 .config_set = config_set,
229 .config_list = config_list,
230 .dev_open = dev_open,
231 .dev_close = std_serial_dev_close,
232 .dev_acquisition_start = dev_acquisition_start,
233 .dev_acquisition_stop = dev_acquisition_stop,
234 .priv = NULL,
235};