]> sigrok.org Git - libsigrok.git/blame - src/hardware/center-3xx/api.c
Add helper function for scan completion
[libsigrok.git] / src / hardware / center-3xx / api.c
CommitLineData
4433145f
UH
1/*
2 * This file is part of the libsigrok project.
3 *
4 * Copyright (C) 2013 Uwe Hermann <uwe@hermann-uwe.de>
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 2 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, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
6ec6c43b 21#include <config.h>
4433145f
UH
22#include "protocol.h"
23
a0e0bb41 24static const uint32_t scanopts[] = {
4a8bbed7
UH
25 SR_CONF_CONN,
26 SR_CONF_SERIALCOMM,
27};
28
6685e9a6 29static const uint32_t drvopts[] = {
4a8bbed7 30 SR_CONF_THERMOMETER,
6685e9a6
UH
31};
32
33static const uint32_t devopts[] = {
e91bb0a6 34 SR_CONF_CONTINUOUS,
5827f61b
BV
35 SR_CONF_LIMIT_SAMPLES | SR_CONF_SET,
36 SR_CONF_LIMIT_MSEC | SR_CONF_SET,
4a8bbed7
UH
37};
38
ba7dd8bb 39static const char *channel_names[] = {
4a8bbed7 40 "T1", "T2", "T3", "T4",
4a8bbed7
UH
41};
42
dd5c48a6
LPC
43static struct sr_dev_driver center_309_driver_info;
44static struct sr_dev_driver voltcraft_k204_driver_info;
4a8bbed7
UH
45
46SR_PRIV const struct center_dev_info center_devs[] = {
47 {
48 "Center", "309", "9600/8n1", 4, 32000, 45,
49 center_3xx_packet_valid,
50 &center_309_driver_info, receive_data_CENTER_309,
51 },
52 {
53 "Voltcraft", "K204", "9600/8n1", 4, 32000, 45,
54 center_3xx_packet_valid,
55 &voltcraft_k204_driver_info, receive_data_VOLTCRAFT_K204,
56 },
57};
4433145f 58
4a8bbed7
UH
59static GSList *center_scan(const char *conn, const char *serialcomm, int idx)
60{
61 int i;
62 struct sr_dev_inst *sdi;
4a8bbed7 63 struct dev_context *devc;
4a8bbed7 64 struct sr_serial_dev_inst *serial;
4433145f
UH
65 GSList *devices;
66
91219afc 67 serial = sr_serial_dev_inst_new(conn, serialcomm);
4a8bbed7 68
258a2313 69 if (serial_open(serial, SERIAL_RDWR) != SR_OK)
4a8bbed7 70 return NULL;
4433145f
UH
71
72 devices = NULL;
4a8bbed7
UH
73 serial_flush(serial);
74
75 sr_info("Found device on port %s.", conn);
76
aac29cc1 77 sdi = g_malloc0(sizeof(struct sr_dev_inst));
0af636be
UH
78 sdi->status = SR_ST_INACTIVE;
79 sdi->vendor = g_strdup(center_devs[idx].vendor);
80 sdi->model = g_strdup(center_devs[idx].device);
f57d8ffe 81 devc = g_malloc0(sizeof(struct dev_context));
4a8bbed7
UH
82 sdi->inst_type = SR_INST_SERIAL;
83 sdi->conn = serial;
4a8bbed7 84 sdi->priv = devc;
4a8bbed7 85
0f34cb47
UH
86 for (i = 0; i < center_devs[idx].num_channels; i++)
87 sr_channel_new(sdi, i, SR_CHANNEL_ANALOG, TRUE, channel_names[i]);
4a8bbed7 88
4a8bbed7
UH
89 devices = g_slist_append(devices, sdi);
90
4a8bbed7 91 serial_close(serial);
4433145f
UH
92
93 return devices;
94}
95
4a8bbed7 96static GSList *scan(GSList *options, int idx)
4433145f 97{
4a8bbed7
UH
98 struct sr_config *src;
99 GSList *l, *devices;
100 const char *conn, *serialcomm;
101
102 conn = serialcomm = NULL;
103 for (l = options; l; l = l->next) {
104 src = l->data;
105 switch (src->key) {
106 case SR_CONF_CONN:
107 conn = g_variant_get_string(src->data, NULL);
108 break;
109 case SR_CONF_SERIALCOMM:
110 serialcomm = g_variant_get_string(src->data, NULL);
111 break;
112 }
113 }
114 if (!conn)
115 return NULL;
116
117 if (serialcomm) {
118 /* Use the provided comm specs. */
119 devices = center_scan(conn, serialcomm, idx);
120 } else {
121 /* Try the default. */
122 devices = center_scan(conn, center_devs[idx].conn, idx);
123 }
124
15a5bfe4 125 return std_scan_complete(center_devs[idx].di, devices);
4433145f
UH
126}
127
584560f1 128static int config_set(uint32_t key, GVariant *data, const struct sr_dev_inst *sdi,
53b4680f 129 const struct sr_channel_group *cg)
4433145f 130{
4a8bbed7 131 struct dev_context *devc;
4433145f 132
53b4680f 133 (void)cg;
d3c74a6f 134
4433145f
UH
135 if (sdi->status != SR_ST_ACTIVE)
136 return SR_ERR_DEV_CLOSED;
137
4a8bbed7
UH
138 devc = sdi->priv;
139
838f6906 140 return sr_sw_limits_config_set(&devc->sw_limits, key, data);
4433145f
UH
141}
142
584560f1 143static int config_list(uint32_t key, GVariant **data, const struct sr_dev_inst *sdi,
53b4680f 144 const struct sr_channel_group *cg)
4433145f 145{
53b4680f 146 (void)cg;
4433145f 147
4433145f 148 switch (key) {
4a8bbed7 149 case SR_CONF_SCAN_OPTIONS:
584560f1 150 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
a0e0bb41 151 scanopts, ARRAY_SIZE(scanopts), sizeof(uint32_t));
4a8bbed7
UH
152 break;
153 case SR_CONF_DEVICE_OPTIONS:
6685e9a6
UH
154 if (!sdi)
155 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
156 drvopts, ARRAY_SIZE(drvopts), sizeof(uint32_t));
157 else
158 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
f254bc4b 159 devopts, ARRAY_SIZE(devopts), sizeof(uint32_t));
4a8bbed7 160 break;
4433145f
UH
161 default:
162 return SR_ERR_NA;
163 }
164
4a8bbed7 165 return SR_OK;
4433145f
UH
166}
167
695dc859 168static int dev_acquisition_start(const struct sr_dev_inst *sdi, int idx)
4433145f 169{
4a8bbed7
UH
170 struct dev_context *devc;
171 struct sr_serial_dev_inst *serial;
4433145f
UH
172
173 if (sdi->status != SR_ST_ACTIVE)
174 return SR_ERR_DEV_CLOSED;
175
4a8bbed7 176 devc = sdi->priv;
838f6906
LPC
177
178 sr_sw_limits_acquisition_start(&devc->sw_limits);
4a8bbed7 179
695dc859 180 std_session_send_df_header(sdi, LOG_PREFIX);
4a8bbed7
UH
181
182 /* Poll every 500ms, or whenever some data comes in. */
183 serial = sdi->conn;
102f1239 184 serial_source_add(sdi->session, serial, G_IO_IN, 500,
4a8bbed7
UH
185 center_devs[idx].receive_data, (void *)sdi);
186
4433145f
UH
187 return SR_OK;
188}
189
695dc859 190static int dev_acquisition_stop(struct sr_dev_inst *sdi)
4433145f 191{
6525d819 192 return std_serial_dev_acquisition_stop(sdi,
d43b0908 193 std_serial_dev_close, sdi->conn, LOG_PREFIX);
4433145f
UH
194}
195
4a8bbed7 196/* Driver-specific API function wrappers */
4a8bbed7 197#define HW_SCAN(X) \
4f840ce9 198static GSList *scan_##X(struct sr_dev_driver *d, GSList *options) { \
1a863916 199 (void)d; return scan(options, X); }
4a8bbed7 200#define HW_DEV_ACQUISITION_START(X) \
695dc859
UH
201static int dev_acquisition_start_##X(const struct sr_dev_inst *sdi \
202) { return dev_acquisition_start(sdi, X); }
4a8bbed7
UH
203
204/* Driver structs and API function wrappers */
205#define DRV(ID, ID_UPPER, NAME, LONGNAME) \
4a8bbed7 206HW_SCAN(ID_UPPER) \
4a8bbed7 207HW_DEV_ACQUISITION_START(ID_UPPER) \
dd5c48a6 208static struct sr_dev_driver ID##_driver_info = { \
4a8bbed7
UH
209 .name = NAME, \
210 .longname = LONGNAME, \
211 .api_version = 1, \
c2fdcc25 212 .init = std_init, \
700d6b64 213 .cleanup = std_cleanup, \
4a8bbed7 214 .scan = scan_##ID_UPPER, \
c01bf34c 215 .dev_list = std_dev_list, \
4a8bbed7
UH
216 .config_get = NULL, \
217 .config_set = config_set, \
218 .config_list = config_list, \
854434de 219 .dev_open = std_serial_dev_open, \
bf2c987f 220 .dev_close = std_serial_dev_close, \
4a8bbed7
UH
221 .dev_acquisition_start = dev_acquisition_start_##ID_UPPER, \
222 .dev_acquisition_stop = dev_acquisition_stop, \
41812aca 223 .context = NULL, \
dd5c48a6
LPC
224}; \
225SR_REGISTER_DEV_DRIVER(ID##_driver_info);
4a8bbed7
UH
226
227DRV(center_309, CENTER_309, "center-309", "Center 309")
228DRV(voltcraft_k204, VOLTCRAFT_K204, "voltcraft-k204", "Voltcraft K204")