]> sigrok.org Git - libsigrok.git/blame - src/hardware/appa-55ii/api.c
Remove unnecessary std_init() wrapper functions
[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[] = {
e91bb0a6 34 SR_CONF_CONTINUOUS,
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 GSList *scan(struct sr_dev_driver *di, GSList *options)
5e7a8e57
AJ
48{
49 struct drv_context *drvc;
81a9ab72
AJ
50 struct dev_context *devc;
51 struct sr_serial_dev_inst *serial;
52 struct sr_dev_inst *sdi;
7574e58c
BV
53 struct sr_config *src;
54 GSList *devices, *l;
55 const char *conn, *serialcomm;
81a9ab72 56 uint8_t buf[50];
7574e58c 57 size_t len;
81a9ab72 58
7574e58c
BV
59 len = sizeof(buf);
60 devices = NULL;
61 conn = serialcomm = NULL;
81a9ab72 62 for (l = options; l; l = l->next) {
7574e58c 63 src = l->data;
81a9ab72
AJ
64 switch (src->key) {
65 case SR_CONF_CONN:
66 conn = g_variant_get_string(src->data, NULL);
67 break;
68 case SR_CONF_SERIALCOMM:
69 serialcomm = g_variant_get_string(src->data, NULL);
70 break;
71 }
72 }
73 if (!conn)
74 return NULL;
75 if (!serialcomm)
76 serialcomm = "9600/8n1";
77
91219afc
UH
78 serial = sr_serial_dev_inst_new(conn, serialcomm);
79
25dd0831 80 if (serial_open(serial, SERIAL_RDONLY) != SR_OK)
81a9ab72 81 return NULL;
5e7a8e57 82
81a9ab72 83 sr_info("Probing serial port %s.", conn);
5e7a8e57 84
41812aca 85 drvc = di->context;
5e7a8e57 86 drvc->instances = NULL;
81a9ab72
AJ
87 serial_flush(serial);
88
89 /* Let's get a bit of data and see if we can find a packet. */
90 if (serial_stream_detect(serial, buf, &len, 25,
7574e58c 91 appa_55ii_packet_valid, 500, 9600) != SR_OK)
81a9ab72
AJ
92 goto scan_cleanup;
93
94 sr_info("Found device on port %s.", conn);
95
aac29cc1 96 sdi = g_malloc0(sizeof(struct sr_dev_inst));
0af636be
UH
97 sdi->status = SR_ST_INACTIVE;
98 sdi->vendor = g_strdup("APPA");
99 sdi->model = g_strdup("55II");
f57d8ffe 100 devc = g_malloc0(sizeof(struct dev_context));
81a9ab72 101 devc->data_source = DEFAULT_DATA_SOURCE;
81a9ab72
AJ
102 sdi->inst_type = SR_INST_SERIAL;
103 sdi->conn = serial;
104 sdi->priv = devc;
105 sdi->driver = di;
5e7a8e57 106
5e23fcab
ML
107 sr_channel_new(sdi, 0, SR_CHANNEL_ANALOG, TRUE, "T1");
108 sr_channel_new(sdi, 0, SR_CHANNEL_ANALOG, TRUE, "T2");
81a9ab72
AJ
109
110 drvc->instances = g_slist_append(drvc->instances, sdi);
111 devices = g_slist_append(devices, sdi);
112
113scan_cleanup:
114 serial_close(serial);
5e7a8e57
AJ
115
116 return devices;
117}
118
584560f1 119static int config_get(uint32_t key, GVariant **data, const struct sr_dev_inst *sdi,
53b4680f 120 const struct sr_channel_group *cg)
5e7a8e57 121{
81a9ab72 122 struct dev_context *devc = sdi->priv;
5e7a8e57 123
53b4680f 124 (void)cg;
5e7a8e57 125
5e7a8e57 126 switch (key) {
81a9ab72 127 case SR_CONF_LIMIT_SAMPLES:
81a9ab72 128 case SR_CONF_LIMIT_MSEC:
e2492a33 129 return sr_sw_limits_config_get(&devc->limits, key, data);
81a9ab72
AJ
130 case SR_CONF_DATA_SOURCE:
131 *data = g_variant_new_string(data_sources[devc->data_source]);
132 break;
5e7a8e57
AJ
133 default:
134 return SR_ERR_NA;
135 }
136
81a9ab72 137 return SR_OK;
5e7a8e57
AJ
138}
139
584560f1 140static int config_set(uint32_t 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;
7574e58c
BV
144 const char *tmp_str;
145 unsigned int i;
5e7a8e57 146
53b4680f 147 (void)cg;
5e7a8e57
AJ
148
149 if (sdi->status != SR_ST_ACTIVE)
150 return SR_ERR_DEV_CLOSED;
151
81a9ab72
AJ
152 if (!(devc = sdi->priv)) {
153 sr_err("sdi->priv was NULL.");
154 return SR_ERR_BUG;
155 }
156
5e7a8e57 157 switch (key) {
81a9ab72 158 case SR_CONF_LIMIT_SAMPLES:
e2492a33 159 return sr_sw_limits_config_set(&devc->limits, key, data);
81a9ab72 160 case SR_CONF_DATA_SOURCE: {
7574e58c
BV
161 tmp_str = g_variant_get_string(data, NULL);
162 for (i = 0; i < ARRAY_SIZE(data_sources); i++)
81a9ab72
AJ
163 if (!strcmp(tmp_str, data_sources[i])) {
164 devc->data_source = i;
165 break;
166 }
167 if (i == ARRAY_SIZE(data_sources))
168 return SR_ERR;
169 break;
170 }
5e7a8e57 171 default:
81a9ab72 172 return SR_ERR_NA;
5e7a8e57
AJ
173 }
174
81a9ab72 175 return SR_OK;
5e7a8e57
AJ
176}
177
584560f1 178static int config_list(uint32_t key, GVariant **data, const struct sr_dev_inst *sdi,
53b4680f 179 const struct sr_channel_group *cg)
5e7a8e57 180{
53b4680f 181 (void)cg;
5e7a8e57 182
5e7a8e57 183 switch (key) {
81a9ab72 184 case SR_CONF_SCAN_OPTIONS:
584560f1 185 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
a0e0bb41 186 scanopts, ARRAY_SIZE(scanopts), sizeof(uint32_t));
81a9ab72
AJ
187 break;
188 case SR_CONF_DEVICE_OPTIONS:
42a47a9a
BV
189 if (!sdi)
190 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
191 drvopts, ARRAY_SIZE(drvopts), sizeof(uint32_t));
192 else
193 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
194 devopts, ARRAY_SIZE(devopts), sizeof(uint32_t));
81a9ab72
AJ
195 break;
196 case SR_CONF_DATA_SOURCE:
197 *data = g_variant_new_strv(data_sources, ARRAY_SIZE(data_sources));
198 break;
5e7a8e57
AJ
199 default:
200 return SR_ERR_NA;
201 }
202
81a9ab72 203 return SR_OK;
5e7a8e57
AJ
204}
205
695dc859 206static int dev_acquisition_start(const struct sr_dev_inst *sdi)
5e7a8e57 207{
7574e58c 208 struct sr_serial_dev_inst *serial;
81a9ab72 209 struct dev_context *devc;
5e7a8e57 210
7574e58c 211 serial = sdi->conn;
5e7a8e57
AJ
212 if (sdi->status != SR_ST_ACTIVE)
213 return SR_ERR_DEV_CLOSED;
214
208c1d35 215 devc = sdi->priv;
5e7a8e57 216
e2492a33 217 sr_sw_limits_acquisition_start(&devc->limits);
5e7a8e57 218
695dc859 219 std_session_send_df_header(sdi, LOG_PREFIX);
5e7a8e57 220
81a9ab72 221 /* Poll every 50ms, or whenever some data comes in. */
102f1239
BV
222 serial_source_add(sdi->session, serial, G_IO_IN, 50,
223 appa_55ii_receive_data, (void *)sdi);
5e7a8e57
AJ
224
225 return SR_OK;
226}
227
695dc859 228static int dev_acquisition_stop(struct sr_dev_inst *sdi)
81a9ab72 229{
6525d819 230 return std_serial_dev_acquisition_stop(sdi,
76b4d4f4 231 std_serial_dev_close, sdi->conn, LOG_PREFIX);
81a9ab72
AJ
232}
233
5e7a8e57
AJ
234SR_PRIV struct sr_dev_driver appa_55ii_driver_info = {
235 .name = "appa-55ii",
236 .longname = "APPA 55II",
237 .api_version = 1,
c2fdcc25 238 .init = std_init,
700d6b64 239 .cleanup = std_cleanup,
5e7a8e57 240 .scan = scan,
c01bf34c 241 .dev_list = std_dev_list,
a6630742 242 .dev_clear = NULL,
5e7a8e57
AJ
243 .config_get = config_get,
244 .config_set = config_set,
245 .config_list = config_list,
81a9ab72
AJ
246 .dev_open = std_serial_dev_open,
247 .dev_close = std_serial_dev_close,
5e7a8e57
AJ
248 .dev_acquisition_start = dev_acquisition_start,
249 .dev_acquisition_stop = dev_acquisition_stop,
41812aca 250 .context = NULL,
5e7a8e57 251};