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