]> sigrok.org Git - libsigrok.git/blame - src/hardware/appa-55ii/api.c
Simplify channel creation.
[libsigrok.git] / src / hardware / appa-55ii / api.c
CommitLineData
5e7a8e57
AJ
1/*
2 * This file is part of the libsigrok project.
3 *
4 * Copyright (C) 2013 Aurelien Jacobs <aurel@gnuage.org>
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
81a9ab72 20#include <string.h>
5e7a8e57
AJ
21#include "protocol.h"
22
a0e0bb41 23static const uint32_t scanopts[] = {
81a9ab72
AJ
24 SR_CONF_CONN,
25 SR_CONF_SERIALCOMM,
26};
27
42a47a9a 28static const uint32_t drvopts[] = {
81a9ab72 29 SR_CONF_THERMOMETER,
42a47a9a
BV
30};
31
32static const uint32_t devopts[] = {
33 SR_CONF_CONTINUOUS | SR_CONF_SET,
5827f61b
BV
34 SR_CONF_LIMIT_SAMPLES | SR_CONF_GET | SR_CONF_SET,
35 SR_CONF_LIMIT_MSEC | SR_CONF_GET | SR_CONF_SET,
36 SR_CONF_DATA_SOURCE | SR_CONF_GET | SR_CONF_SET | SR_CONF_LIST,
81a9ab72
AJ
37};
38
39static const char *data_sources[] = {
40 "Live",
41 "Memory",
42};
43
5e7a8e57
AJ
44SR_PRIV struct sr_dev_driver appa_55ii_driver_info;
45static struct sr_dev_driver *di = &appa_55ii_driver_info;
46
47static int init(struct sr_context *sr_ctx)
48{
49 return std_init(sr_ctx, di, LOG_PREFIX);
50}
51
52static GSList *scan(GSList *options)
53{
54 struct drv_context *drvc;
81a9ab72
AJ
55 struct dev_context *devc;
56 struct sr_serial_dev_inst *serial;
57 struct sr_dev_inst *sdi;
7574e58c
BV
58 struct sr_config *src;
59 GSList *devices, *l;
60 const char *conn, *serialcomm;
81a9ab72 61 uint8_t buf[50];
7574e58c 62 size_t len;
81a9ab72 63
7574e58c
BV
64 len = sizeof(buf);
65 devices = NULL;
66 conn = serialcomm = NULL;
81a9ab72 67 for (l = options; l; l = l->next) {
7574e58c 68 src = l->data;
81a9ab72
AJ
69 switch (src->key) {
70 case SR_CONF_CONN:
71 conn = g_variant_get_string(src->data, NULL);
72 break;
73 case SR_CONF_SERIALCOMM:
74 serialcomm = g_variant_get_string(src->data, NULL);
75 break;
76 }
77 }
78 if (!conn)
79 return NULL;
80 if (!serialcomm)
81 serialcomm = "9600/8n1";
82
91219afc
UH
83 serial = sr_serial_dev_inst_new(conn, serialcomm);
84
25dd0831 85 if (serial_open(serial, SERIAL_RDONLY) != SR_OK)
81a9ab72 86 return NULL;
5e7a8e57 87
81a9ab72 88 sr_info("Probing serial port %s.", conn);
5e7a8e57 89
5e7a8e57
AJ
90 drvc = di->priv;
91 drvc->instances = NULL;
81a9ab72
AJ
92 serial_flush(serial);
93
94 /* Let's get a bit of data and see if we can find a packet. */
95 if (serial_stream_detect(serial, buf, &len, 25,
7574e58c 96 appa_55ii_packet_valid, 500, 9600) != SR_OK)
81a9ab72
AJ
97 goto scan_cleanup;
98
99 sr_info("Found device on port %s.", conn);
100
aac29cc1 101 sdi = g_malloc0(sizeof(struct sr_dev_inst));
0af636be
UH
102 sdi->status = SR_ST_INACTIVE;
103 sdi->vendor = g_strdup("APPA");
104 sdi->model = g_strdup("55II");
f57d8ffe 105 devc = g_malloc0(sizeof(struct dev_context));
81a9ab72 106 devc->data_source = DEFAULT_DATA_SOURCE;
81a9ab72
AJ
107 sdi->inst_type = SR_INST_SERIAL;
108 sdi->conn = serial;
109 sdi->priv = devc;
110 sdi->driver = di;
5e7a8e57 111
5e23fcab
ML
112 sr_channel_new(sdi, 0, SR_CHANNEL_ANALOG, TRUE, "T1");
113 sr_channel_new(sdi, 0, SR_CHANNEL_ANALOG, TRUE, "T2");
81a9ab72
AJ
114
115 drvc->instances = g_slist_append(drvc->instances, sdi);
116 devices = g_slist_append(devices, sdi);
117
118scan_cleanup:
119 serial_close(serial);
5e7a8e57
AJ
120
121 return devices;
122}
123
124static GSList *dev_list(void)
125{
126 return ((struct drv_context *)(di->priv))->instances;
127}
128
5e7a8e57
AJ
129static int cleanup(void)
130{
a6630742 131 return std_dev_clear(di, NULL);
5e7a8e57
AJ
132}
133
584560f1 134static int config_get(uint32_t key, GVariant **data, const struct sr_dev_inst *sdi,
53b4680f 135 const struct sr_channel_group *cg)
5e7a8e57 136{
81a9ab72 137 struct dev_context *devc = sdi->priv;
5e7a8e57 138
53b4680f 139 (void)cg;
5e7a8e57 140
5e7a8e57 141 switch (key) {
81a9ab72
AJ
142 case SR_CONF_LIMIT_SAMPLES:
143 *data = g_variant_new_uint64(devc->limit_samples);
144 break;
145 case SR_CONF_LIMIT_MSEC:
146 *data = g_variant_new_uint64(devc->limit_msec);
147 break;
148 case SR_CONF_DATA_SOURCE:
149 *data = g_variant_new_string(data_sources[devc->data_source]);
150 break;
5e7a8e57
AJ
151 default:
152 return SR_ERR_NA;
153 }
154
81a9ab72 155 return SR_OK;
5e7a8e57
AJ
156}
157
584560f1 158static int config_set(uint32_t key, GVariant *data, const struct sr_dev_inst *sdi,
53b4680f 159 const struct sr_channel_group *cg)
5e7a8e57 160{
81a9ab72 161 struct dev_context *devc;
7574e58c
BV
162 const char *tmp_str;
163 unsigned int i;
5e7a8e57 164
53b4680f 165 (void)cg;
5e7a8e57
AJ
166
167 if (sdi->status != SR_ST_ACTIVE)
168 return SR_ERR_DEV_CLOSED;
169
81a9ab72
AJ
170 if (!(devc = sdi->priv)) {
171 sr_err("sdi->priv was NULL.");
172 return SR_ERR_BUG;
173 }
174
5e7a8e57 175 switch (key) {
81a9ab72
AJ
176 case SR_CONF_LIMIT_SAMPLES:
177 devc->limit_samples = g_variant_get_uint64(data);
178 sr_dbg("Setting sample limit to %" PRIu64 ".", devc->limit_samples);
179 break;
180 case SR_CONF_LIMIT_MSEC:
181 devc->limit_msec = g_variant_get_uint64(data);
182 sr_dbg("Setting time limit to %" PRIu64 "ms.", devc->limit_msec);
183 break;
184 case SR_CONF_DATA_SOURCE: {
7574e58c
BV
185 tmp_str = g_variant_get_string(data, NULL);
186 for (i = 0; i < ARRAY_SIZE(data_sources); i++)
81a9ab72
AJ
187 if (!strcmp(tmp_str, data_sources[i])) {
188 devc->data_source = i;
189 break;
190 }
191 if (i == ARRAY_SIZE(data_sources))
192 return SR_ERR;
193 break;
194 }
5e7a8e57 195 default:
81a9ab72 196 return SR_ERR_NA;
5e7a8e57
AJ
197 }
198
81a9ab72 199 return SR_OK;
5e7a8e57
AJ
200}
201
584560f1 202static int config_list(uint32_t key, GVariant **data, const struct sr_dev_inst *sdi,
53b4680f 203 const struct sr_channel_group *cg)
5e7a8e57 204{
5e7a8e57 205 (void)sdi;
53b4680f 206 (void)cg;
5e7a8e57 207
5e7a8e57 208 switch (key) {
81a9ab72 209 case SR_CONF_SCAN_OPTIONS:
584560f1 210 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
a0e0bb41 211 scanopts, ARRAY_SIZE(scanopts), sizeof(uint32_t));
81a9ab72
AJ
212 break;
213 case SR_CONF_DEVICE_OPTIONS:
42a47a9a
BV
214 if (!sdi)
215 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
216 drvopts, ARRAY_SIZE(drvopts), sizeof(uint32_t));
217 else
218 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
219 devopts, ARRAY_SIZE(devopts), sizeof(uint32_t));
81a9ab72
AJ
220 break;
221 case SR_CONF_DATA_SOURCE:
222 *data = g_variant_new_strv(data_sources, ARRAY_SIZE(data_sources));
223 break;
5e7a8e57
AJ
224 default:
225 return SR_ERR_NA;
226 }
227
81a9ab72 228 return SR_OK;
5e7a8e57
AJ
229}
230
231static int dev_acquisition_start(const struct sr_dev_inst *sdi,
7574e58c 232 void *cb_data)
5e7a8e57 233{
7574e58c 234 struct sr_serial_dev_inst *serial;
81a9ab72 235 struct dev_context *devc;
5e7a8e57 236
7574e58c 237 serial = sdi->conn;
5e7a8e57
AJ
238 if (sdi->status != SR_ST_ACTIVE)
239 return SR_ERR_DEV_CLOSED;
240
81a9ab72
AJ
241 if (!(devc = sdi->priv)) {
242 sr_err("sdi->priv was NULL.");
243 return SR_ERR_BUG;
244 }
5e7a8e57 245
81a9ab72 246 devc->session_cb_data = cb_data;
5e7a8e57 247
81a9ab72
AJ
248 /*
249 * Reset the number of samples to take. If we've already collected our
250 * quota, but we start a new session, and don't reset this, we'll just
251 * quit without acquiring any new samples.
252 */
253 devc->num_samples = 0;
254 devc->start_time = g_get_monotonic_time();
5e7a8e57 255
81a9ab72
AJ
256 /* Send header packet to the session bus. */
257 std_session_send_df_header(cb_data, LOG_PREFIX);
5e7a8e57 258
81a9ab72 259 /* Poll every 50ms, or whenever some data comes in. */
102f1239
BV
260 serial_source_add(sdi->session, serial, G_IO_IN, 50,
261 appa_55ii_receive_data, (void *)sdi);
5e7a8e57
AJ
262
263 return SR_OK;
264}
265
81a9ab72
AJ
266static int dev_acquisition_stop(struct sr_dev_inst *sdi, void *cb_data)
267{
76b4d4f4
UH
268 return std_serial_dev_acquisition_stop(sdi, cb_data,
269 std_serial_dev_close, sdi->conn, LOG_PREFIX);
81a9ab72
AJ
270}
271
5e7a8e57
AJ
272SR_PRIV struct sr_dev_driver appa_55ii_driver_info = {
273 .name = "appa-55ii",
274 .longname = "APPA 55II",
275 .api_version = 1,
276 .init = init,
277 .cleanup = cleanup,
278 .scan = scan,
279 .dev_list = dev_list,
a6630742 280 .dev_clear = NULL,
5e7a8e57
AJ
281 .config_get = config_get,
282 .config_set = config_set,
283 .config_list = config_list,
81a9ab72
AJ
284 .dev_open = std_serial_dev_open,
285 .dev_close = std_serial_dev_close,
5e7a8e57
AJ
286 .dev_acquisition_start = dev_acquisition_start,
287 .dev_acquisition_stop = dev_acquisition_stop,
76b4d4f4 288 .priv = NULL,
5e7a8e57 289};