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