]> sigrok.org Git - libsigrok.git/blame - src/hardware/appa-55ii/api.c
Introduce standard cleanup helper
[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
6ec6c43b 20#include <config.h>
81a9ab72 21#include <string.h>
5e7a8e57
AJ
22#include "protocol.h"
23
a0e0bb41 24static const uint32_t scanopts[] = {
81a9ab72
AJ
25 SR_CONF_CONN,
26 SR_CONF_SERIALCOMM,
27};
28
42a47a9a 29static const uint32_t drvopts[] = {
81a9ab72 30 SR_CONF_THERMOMETER,
42a47a9a
BV
31};
32
33static const uint32_t devopts[] = {
34 SR_CONF_CONTINUOUS | SR_CONF_SET,
5827f61b
BV
35 SR_CONF_LIMIT_SAMPLES | SR_CONF_GET | SR_CONF_SET,
36 SR_CONF_LIMIT_MSEC | SR_CONF_GET | SR_CONF_SET,
37 SR_CONF_DATA_SOURCE | SR_CONF_GET | SR_CONF_SET | SR_CONF_LIST,
81a9ab72
AJ
38};
39
40static const char *data_sources[] = {
41 "Live",
42 "Memory",
43};
44
5e7a8e57 45SR_PRIV struct sr_dev_driver appa_55ii_driver_info;
5e7a8e57 46
4f840ce9 47static int init(struct sr_dev_driver *di, struct sr_context *sr_ctx)
5e7a8e57
AJ
48{
49 return std_init(sr_ctx, di, LOG_PREFIX);
50}
51
4f840ce9 52static GSList *scan(struct sr_dev_driver *di, GSList *options)
5e7a8e57
AJ
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
41812aca 90 drvc = di->context;
5e7a8e57 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
4f840ce9 124static GSList *dev_list(const struct sr_dev_driver *di)
5e7a8e57 125{
41812aca 126 return ((struct drv_context *)(di->context))->instances;
5e7a8e57
AJ
127}
128
584560f1 129static int config_get(uint32_t key, GVariant **data, const struct sr_dev_inst *sdi,
53b4680f 130 const struct sr_channel_group *cg)
5e7a8e57 131{
81a9ab72 132 struct dev_context *devc = sdi->priv;
5e7a8e57 133
53b4680f 134 (void)cg;
5e7a8e57 135
5e7a8e57 136 switch (key) {
81a9ab72
AJ
137 case SR_CONF_LIMIT_SAMPLES:
138 *data = g_variant_new_uint64(devc->limit_samples);
139 break;
140 case SR_CONF_LIMIT_MSEC:
141 *data = g_variant_new_uint64(devc->limit_msec);
142 break;
143 case SR_CONF_DATA_SOURCE:
144 *data = g_variant_new_string(data_sources[devc->data_source]);
145 break;
5e7a8e57
AJ
146 default:
147 return SR_ERR_NA;
148 }
149
81a9ab72 150 return SR_OK;
5e7a8e57
AJ
151}
152
584560f1 153static int config_set(uint32_t key, GVariant *data, const struct sr_dev_inst *sdi,
53b4680f 154 const struct sr_channel_group *cg)
5e7a8e57 155{
81a9ab72 156 struct dev_context *devc;
7574e58c
BV
157 const char *tmp_str;
158 unsigned int i;
5e7a8e57 159
53b4680f 160 (void)cg;
5e7a8e57
AJ
161
162 if (sdi->status != SR_ST_ACTIVE)
163 return SR_ERR_DEV_CLOSED;
164
81a9ab72
AJ
165 if (!(devc = sdi->priv)) {
166 sr_err("sdi->priv was NULL.");
167 return SR_ERR_BUG;
168 }
169
5e7a8e57 170 switch (key) {
81a9ab72
AJ
171 case SR_CONF_LIMIT_SAMPLES:
172 devc->limit_samples = g_variant_get_uint64(data);
81a9ab72
AJ
173 break;
174 case SR_CONF_LIMIT_MSEC:
175 devc->limit_msec = g_variant_get_uint64(data);
81a9ab72
AJ
176 break;
177 case SR_CONF_DATA_SOURCE: {
7574e58c
BV
178 tmp_str = g_variant_get_string(data, NULL);
179 for (i = 0; i < ARRAY_SIZE(data_sources); i++)
81a9ab72
AJ
180 if (!strcmp(tmp_str, data_sources[i])) {
181 devc->data_source = i;
182 break;
183 }
184 if (i == ARRAY_SIZE(data_sources))
185 return SR_ERR;
186 break;
187 }
5e7a8e57 188 default:
81a9ab72 189 return SR_ERR_NA;
5e7a8e57
AJ
190 }
191
81a9ab72 192 return SR_OK;
5e7a8e57
AJ
193}
194
584560f1 195static int config_list(uint32_t key, GVariant **data, const struct sr_dev_inst *sdi,
53b4680f 196 const struct sr_channel_group *cg)
5e7a8e57 197{
53b4680f 198 (void)cg;
5e7a8e57 199
5e7a8e57 200 switch (key) {
81a9ab72 201 case SR_CONF_SCAN_OPTIONS:
584560f1 202 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
a0e0bb41 203 scanopts, ARRAY_SIZE(scanopts), sizeof(uint32_t));
81a9ab72
AJ
204 break;
205 case SR_CONF_DEVICE_OPTIONS:
42a47a9a
BV
206 if (!sdi)
207 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
208 drvopts, ARRAY_SIZE(drvopts), sizeof(uint32_t));
209 else
210 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
211 devopts, ARRAY_SIZE(devopts), sizeof(uint32_t));
81a9ab72
AJ
212 break;
213 case SR_CONF_DATA_SOURCE:
214 *data = g_variant_new_strv(data_sources, ARRAY_SIZE(data_sources));
215 break;
5e7a8e57
AJ
216 default:
217 return SR_ERR_NA;
218 }
219
81a9ab72 220 return SR_OK;
5e7a8e57
AJ
221}
222
695dc859 223static int dev_acquisition_start(const struct sr_dev_inst *sdi)
5e7a8e57 224{
7574e58c 225 struct sr_serial_dev_inst *serial;
81a9ab72 226 struct dev_context *devc;
5e7a8e57 227
7574e58c 228 serial = sdi->conn;
5e7a8e57
AJ
229 if (sdi->status != SR_ST_ACTIVE)
230 return SR_ERR_DEV_CLOSED;
231
208c1d35 232 devc = sdi->priv;
5e7a8e57 233
81a9ab72
AJ
234 /*
235 * Reset the number of samples to take. If we've already collected our
236 * quota, but we start a new session, and don't reset this, we'll just
237 * quit without acquiring any new samples.
238 */
239 devc->num_samples = 0;
240 devc->start_time = g_get_monotonic_time();
5e7a8e57 241
695dc859 242 std_session_send_df_header(sdi, LOG_PREFIX);
5e7a8e57 243
81a9ab72 244 /* Poll every 50ms, or whenever some data comes in. */
102f1239
BV
245 serial_source_add(sdi->session, serial, G_IO_IN, 50,
246 appa_55ii_receive_data, (void *)sdi);
5e7a8e57
AJ
247
248 return SR_OK;
249}
250
695dc859 251static int dev_acquisition_stop(struct sr_dev_inst *sdi)
81a9ab72 252{
6525d819 253 return std_serial_dev_acquisition_stop(sdi,
76b4d4f4 254 std_serial_dev_close, sdi->conn, LOG_PREFIX);
81a9ab72
AJ
255}
256
5e7a8e57
AJ
257SR_PRIV struct sr_dev_driver appa_55ii_driver_info = {
258 .name = "appa-55ii",
259 .longname = "APPA 55II",
260 .api_version = 1,
261 .init = init,
700d6b64 262 .cleanup = std_cleanup,
5e7a8e57
AJ
263 .scan = scan,
264 .dev_list = dev_list,
a6630742 265 .dev_clear = NULL,
5e7a8e57
AJ
266 .config_get = config_get,
267 .config_set = config_set,
268 .config_list = config_list,
81a9ab72
AJ
269 .dev_open = std_serial_dev_open,
270 .dev_close = std_serial_dev_close,
5e7a8e57
AJ
271 .dev_acquisition_start = dev_acquisition_start,
272 .dev_acquisition_stop = dev_acquisition_stop,
41812aca 273 .context = NULL,
5e7a8e57 274};