]> sigrok.org Git - libsigrok.git/blame - hardware/tondaj-sl-814/api.c
README.devices: Document how to make some DMMs log.
[libsigrok.git] / hardware / tondaj-sl-814 / api.c
CommitLineData
aa2af324 1/*
50985c20 2 * This file is part of the libsigrok project.
aa2af324
UH
3 *
4 * Copyright (C) 2012 Uwe Hermann <uwe@hermann-uwe.de>
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 2 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, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
c073af80 21#include <fcntl.h>
aa2af324
UH
22#include <glib.h>
23#include "libsigrok.h"
24#include "libsigrok-internal.h"
25#include "protocol.h"
26
19ee7dff
BV
27#define SERIALCOMM "9600/8e1"
28
afdf6d6a 29static const int32_t hwopts[] = {
1953564a
BV
30 SR_CONF_CONN,
31 SR_CONF_SERIALCOMM,
c073af80
UH
32};
33
afdf6d6a 34static const int32_t hwcaps[] = {
1953564a
BV
35 SR_CONF_SOUNDLEVELMETER,
36 SR_CONF_LIMIT_SAMPLES,
37 SR_CONF_CONTINUOUS,
c073af80
UH
38};
39
aa2af324
UH
40SR_PRIV struct sr_dev_driver tondaj_sl_814_driver_info;
41static struct sr_dev_driver *di = &tondaj_sl_814_driver_info;
42
43/* Properly close and free all devices. */
44static int clear_instances(void)
45{
46 struct sr_dev_inst *sdi;
47 struct drv_context *drvc;
48 struct dev_context *devc;
a5e44c32 49 struct sr_serial_dev_inst *serial;
aa2af324
UH
50 GSList *l;
51
52 if (!(drvc = di->priv))
53 return SR_OK;
54
55 for (l = drvc->instances; l; l = l->next) {
56 if (!(sdi = l->data))
57 continue;
58 if (!(devc = sdi->priv))
59 continue;
a5e44c32
UH
60 serial = sdi->conn;
61 sr_serial_dev_inst_free(serial);
aa2af324
UH
62 sr_dev_inst_free(sdi);
63 }
64
65 g_slist_free(drvc->instances);
66 drvc->instances = NULL;
67
68 return SR_OK;
69}
70
34f06b90 71static int hw_init(struct sr_context *sr_ctx)
aa2af324 72{
063e7aef 73 return std_hw_init(sr_ctx, di, DRIVER_LOG_DOMAIN);
aa2af324
UH
74}
75
76static GSList *hw_scan(GSList *options)
77{
78 struct drv_context *drvc;
c073af80
UH
79 struct dev_context *devc;
80 struct sr_dev_inst *sdi;
1987b8d6 81 struct sr_config *src;
c073af80
UH
82 struct sr_probe *probe;
83 GSList *devices, *l;
84 const char *conn, *serialcomm;
a5e44c32 85 struct sr_serial_dev_inst *serial;
aa2af324 86
aa2af324
UH
87 drvc = di->priv;
88 drvc->instances = NULL;
89
4b97c74e
UH
90 devices = NULL;
91
c073af80
UH
92 conn = serialcomm = NULL;
93 for (l = options; l; l = l->next) {
1987b8d6 94 if (!(src = l->data)) {
c073af80
UH
95 sr_err("Invalid option data, skipping.");
96 continue;
97 }
1987b8d6 98 switch (src->key) {
1953564a 99 case SR_CONF_CONN:
afdf6d6a 100 conn = g_variant_get_string(src->data, NULL);
c073af80 101 break;
1953564a 102 case SR_CONF_SERIALCOMM:
afdf6d6a 103 serialcomm = g_variant_get_string(src->data, NULL);
c073af80
UH
104 break;
105 default:
1987b8d6 106 sr_err("Unknown option %d, skipping.", src->key);
c073af80
UH
107 break;
108 }
109 }
80bc6632 110 if (!conn)
c073af80 111 return NULL;
19ee7dff
BV
112 if (!serialcomm)
113 serialcomm = SERIALCOMM;
c073af80
UH
114
115 if (!(sdi = sr_dev_inst_new(0, SR_ST_INACTIVE, "Tondaj",
116 "SL-814", NULL))) {
117 sr_err("Failed to create device instance.");
118 return NULL;
119 }
120
121 if (!(devc = g_try_malloc0(sizeof(struct dev_context)))) {
122 sr_err("Device context malloc failed.");
123 return NULL;
124 }
125
a5e44c32 126 if (!(serial = sr_serial_dev_inst_new(conn, serialcomm)))
19ee7dff 127 return NULL;
c073af80 128
a5e44c32 129 if (serial_open(serial, SERIAL_RDWR | SERIAL_NONBLOCK) != SR_OK)
c073af80 130 return NULL;
19ee7dff 131
a5e44c32
UH
132 sdi->inst_type = SR_INST_SERIAL;
133 sdi->conn = serial;
134
c073af80
UH
135 sdi->priv = devc;
136 sdi->driver = di;
6b8d6f93 137 probe = sr_probe_new(0, SR_PROBE_ANALOG, TRUE, "P1");
c073af80
UH
138 if (!probe) {
139 sr_err("Failed to create probe.");
140 return NULL;
141 }
142 sdi->probes = g_slist_append(sdi->probes, probe);
143 drvc->instances = g_slist_append(drvc->instances, sdi);
144 devices = g_slist_append(devices, sdi);
aa2af324
UH
145
146 return devices;
147}
148
149static GSList *hw_dev_list(void)
150{
0e94d524 151 return ((struct drv_context *)(di->priv))->instances;
aa2af324
UH
152}
153
154static int hw_dev_open(struct sr_dev_inst *sdi)
155{
a5e44c32 156 struct sr_serial_dev_inst *serial;
c073af80 157
a5e44c32
UH
158 serial = sdi->conn;
159 if (serial_open(serial, SERIAL_RDWR | SERIAL_NONBLOCK) != SR_OK)
c073af80 160 return SR_ERR;
c073af80
UH
161
162 sdi->status = SR_ST_ACTIVE;
aa2af324
UH
163
164 return SR_OK;
165}
166
167static int hw_dev_close(struct sr_dev_inst *sdi)
168{
a5e44c32 169 struct sr_serial_dev_inst *serial;
c073af80 170
a5e44c32
UH
171 serial = sdi->conn;
172 if (serial && serial->fd != -1) {
173 serial_close(serial);
19ee7dff 174 sdi->status = SR_ST_INACTIVE;
c073af80
UH
175 }
176
aa2af324
UH
177 return SR_OK;
178}
179
180static int hw_cleanup(void)
181{
182 clear_instances();
183
aa2af324
UH
184 return SR_OK;
185}
186
afdf6d6a 187static int config_set(int id, GVariant *data, const struct sr_dev_inst *sdi)
aa2af324 188{
c073af80 189 struct dev_context *devc;
aa2af324 190
e73ffd42
BV
191 if (sdi->status != SR_ST_ACTIVE)
192 return SR_ERR_DEV_CLOSED;
aa2af324 193
c073af80
UH
194 devc = sdi->priv;
195
035a1078 196 switch (id) {
1953564a 197 case SR_CONF_LIMIT_SAMPLES:
afdf6d6a 198 devc->limit_samples = g_variant_get_uint64(data);
c073af80
UH
199 sr_dbg("Setting sample limit to %" PRIu64 ".",
200 devc->limit_samples);
201 break;
aa2af324 202 default:
bd6fbf62 203 return SR_ERR_NA;
aa2af324
UH
204 }
205
c073af80 206 return SR_OK;
aa2af324
UH
207}
208
afdf6d6a 209static int config_list(int key, GVariant **data, const struct sr_dev_inst *sdi)
a1c743fc
BV
210{
211
212 (void)sdi;
213
214 switch (key) {
0d485e30 215 case SR_CONF_SCAN_OPTIONS:
afdf6d6a
BV
216 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_INT32,
217 hwopts, ARRAY_SIZE(hwopts), sizeof(int32_t));
0d485e30 218 break;
9a6517d1 219 case SR_CONF_DEVICE_OPTIONS:
afdf6d6a
BV
220 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_INT32,
221 hwcaps, ARRAY_SIZE(hwcaps), sizeof(int32_t));
9a6517d1 222 break;
a1c743fc 223 default:
bd6fbf62 224 return SR_ERR_NA;
a1c743fc
BV
225 }
226
227 return SR_OK;
228}
229
aa2af324
UH
230static int hw_dev_acquisition_start(const struct sr_dev_inst *sdi,
231 void *cb_data)
232{
c073af80 233 struct dev_context *devc;
a5e44c32 234 struct sr_serial_dev_inst *serial;
c073af80 235
e73ffd42
BV
236 if (sdi->status != SR_ST_ACTIVE)
237 return SR_ERR_DEV_CLOSED;
238
c073af80
UH
239 devc = sdi->priv;
240 devc->cb_data = cb_data;
241
242 /* Send header packet to the session bus. */
4afdfd46 243 std_session_send_df_header(cb_data, DRIVER_LOG_DOMAIN);
c073af80 244
c073af80 245 /* Poll every 500ms, or whenever some data comes in. */
a5e44c32
UH
246 serial = sdi->conn;
247 sr_source_add(serial->fd, G_IO_IN, 500,
c073af80 248 tondaj_sl_814_receive_data, (void *)sdi);
aa2af324
UH
249
250 return SR_OK;
251}
252
c073af80 253static int hw_dev_acquisition_stop(struct sr_dev_inst *sdi, void *cb_data)
aa2af324 254{
cd2f0fe2 255 return std_hw_dev_acquisition_stop_serial(sdi, cb_data, hw_dev_close,
a5e44c32 256 sdi->conn, DRIVER_LOG_DOMAIN);
aa2af324
UH
257}
258
259SR_PRIV struct sr_dev_driver tondaj_sl_814_driver_info = {
260 .name = "tondaj-sl-814",
261 .longname = "Tondaj SL-814",
262 .api_version = 1,
263 .init = hw_init,
264 .cleanup = hw_cleanup,
265 .scan = hw_scan,
266 .dev_list = hw_dev_list,
267 .dev_clear = clear_instances,
6fab7b8f 268 .config_get = NULL,
035a1078 269 .config_set = config_set,
a1c743fc 270 .config_list = config_list,
aa2af324
UH
271 .dev_open = hw_dev_open,
272 .dev_close = hw_dev_close,
aa2af324
UH
273 .dev_acquisition_start = hw_dev_acquisition_start,
274 .dev_acquisition_stop = hw_dev_acquisition_stop,
275 .priv = NULL,
276};