]> sigrok.org Git - libsigrok.git/blame - hardware/brymen-dmm/api.c
Replace 'probe' with 'channel' in most places.
[libsigrok.git] / hardware / brymen-dmm / api.c
CommitLineData
20cbc785
AG
1/*
2 * This file is part of the libsigrok project.
3 *
4 * Copyright (C) 2012 Alexandru Gagniuc <mr.nuke.me@gmail.com>
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
20cbc785
AG
20#include "protocol.h"
21
510b3e69 22static const int32_t hwopts[] = {
601fb67c
AG
23 SR_CONF_CONN,
24 SR_CONF_SERIALCOMM,
601fb67c
AG
25};
26
510b3e69 27static const int32_t hwcaps[] = {
601fb67c
AG
28 SR_CONF_MULTIMETER,
29 SR_CONF_LIMIT_SAMPLES,
30 SR_CONF_CONTINUOUS,
31 SR_CONF_LIMIT_MSEC,
601fb67c
AG
32};
33
c5d6f5cc
UH
34SR_PRIV struct sr_dev_driver brymen_bm857_driver_info;
35static struct sr_dev_driver *di = &brymen_bm857_driver_info;
20cbc785 36
6078d2c9 37static int init(struct sr_context *sr_ctx)
601fb67c 38{
f6beaac5 39 return std_init(sr_ctx, di, LOG_PREFIX);
601fb67c
AG
40}
41
601fb67c 42static GSList *brymen_scan(const char *conn, const char *serialcomm)
20cbc785 43{
601fb67c
AG
44 struct sr_dev_inst *sdi;
45 struct dev_context *devc;
20cbc785 46 struct drv_context *drvc;
ba7dd8bb 47 struct sr_channel *ch;
601fb67c
AG
48 struct sr_serial_dev_inst *serial;
49 GSList *devices;
50 int ret;
c5d6f5cc
UH
51 uint8_t buf[128];
52 size_t len;
20cbc785 53
601fb67c
AG
54 if (!(serial = sr_serial_dev_inst_new(conn, serialcomm)))
55 return NULL;
56
c5d6f5cc 57 if (serial_open(serial, SERIAL_RDWR | SERIAL_NONBLOCK) != SR_OK)
601fb67c
AG
58 return NULL;
59
60 sr_info("Probing port %s.", conn);
61
62 devices = NULL;
63
64 /* Request reading */
c5d6f5cc
UH
65 if ((ret = brymen_packet_request(serial)) < 0) {
66 sr_err("Unable to send command: %d.", ret);
601fb67c 67 goto scan_cleanup;
20cbc785
AG
68 }
69
c5d6f5cc 70 len = 128;
601fb67c
AG
71 ret = brymen_stream_detect(serial, buf, &len, brymen_packet_length,
72 brymen_packet_is_valid, 1000, 9600);
73 if (ret != SR_OK)
74 goto scan_cleanup;
20cbc785 75
601fb67c
AG
76 sr_info("Found device on port %s.", conn);
77
78 if (!(sdi = sr_dev_inst_new(0, SR_ST_INACTIVE, "Brymen", "BM85x", "")))
79 goto scan_cleanup;
80
81 if (!(devc = g_try_malloc0(sizeof(struct dev_context)))) {
82 sr_err("Device context malloc failed.");
83 goto scan_cleanup;
84 }
85
d9a7c349
UH
86 sdi->inst_type = SR_INST_SERIAL;
87 sdi->conn = serial;
601fb67c
AG
88 drvc = di->priv;
89 sdi->priv = devc;
90 sdi->driver = di;
91
ba7dd8bb 92 if (!(ch = sr_probe_new(0, SR_PROBE_ANALOG, TRUE, "P1")))
601fb67c
AG
93 goto scan_cleanup;
94
ba7dd8bb 95 sdi->channels = g_slist_append(sdi->channels, ch);
601fb67c
AG
96 drvc->instances = g_slist_append(drvc->instances, sdi);
97 devices = g_slist_append(devices, sdi);
98
601fb67c
AG
99scan_cleanup:
100 serial_close(serial);
101
102 return devices;
20cbc785
AG
103}
104
6078d2c9 105static GSList *scan(GSList *options)
20cbc785
AG
106{
107 struct drv_context *drvc;
601fb67c
AG
108 struct sr_config *src;
109 GSList *devices, *l;
110 const char *conn, *serialcomm;
20cbc785 111
20cbc785
AG
112 devices = NULL;
113 drvc = di->priv;
114 drvc->instances = NULL;
115
601fb67c
AG
116 conn = serialcomm = NULL;
117 for (l = options; l; l = l->next) {
118 src = l->data;
119 switch (src->key) {
c5d6f5cc 120 case SR_CONF_CONN:
510b3e69 121 conn = g_variant_get_string(src->data, NULL);
c5d6f5cc
UH
122 break;
123 case SR_CONF_SERIALCOMM:
510b3e69 124 serialcomm = g_variant_get_string(src->data, NULL);
c5d6f5cc 125 break;
601fb67c
AG
126 }
127 }
d9a7c349 128 if (!conn)
601fb67c 129 return NULL;
601fb67c
AG
130
131 if (serialcomm) {
132 /* Use the provided comm specs. */
133 devices = brymen_scan(conn, serialcomm);
134 } else {
c5d6f5cc 135 /* But 9600/8n1 should work all of the time. */
601fb67c
AG
136 devices = brymen_scan(conn, "9600/8n1/dtr=1/rts=1");
137 }
20cbc785
AG
138
139 return devices;
140}
141
6078d2c9 142static GSList *dev_list(void)
20cbc785 143{
0e94d524 144 return ((struct drv_context *)(di->priv))->instances;
20cbc785
AG
145}
146
6078d2c9 147static int cleanup(void)
20cbc785 148{
a6630742 149 return std_dev_clear(di, NULL);
20cbc785
AG
150}
151
8f996b89 152static int config_set(int id, GVariant *data, const struct sr_dev_inst *sdi,
53b4680f 153 const struct sr_channel_group *cg)
20cbc785 154{
601fb67c 155 struct dev_context *devc;
20cbc785
AG
156 int ret;
157
53b4680f 158 (void)cg;
8f996b89 159
e73ffd42
BV
160 if (sdi->status != SR_ST_ACTIVE)
161 return SR_ERR_DEV_CLOSED;
20cbc785 162
601fb67c
AG
163 if (!(devc = sdi->priv)) {
164 sr_err("sdi->priv was NULL.");
165 return SR_ERR_BUG;
166 }
167
20cbc785 168 ret = SR_OK;
601fb67c 169 switch (id) {
c5d6f5cc 170 case SR_CONF_LIMIT_SAMPLES:
510b3e69 171 devc->limit_samples = g_variant_get_uint64(data);
601fb67c 172 break;
c5d6f5cc 173 case SR_CONF_LIMIT_MSEC:
510b3e69 174 devc->limit_msec = g_variant_get_uint64(data);
601fb67c 175 break;
20cbc785 176 default:
bd6fbf62 177 ret = SR_ERR_NA;
20cbc785
AG
178 }
179
180 return ret;
181}
182
8f996b89 183static int config_list(int key, GVariant **data, const struct sr_dev_inst *sdi,
53b4680f 184 const struct sr_channel_group *cg)
510b3e69
BV
185{
186 (void)sdi;
53b4680f 187 (void)cg;
510b3e69
BV
188
189 switch (key) {
190 case SR_CONF_SCAN_OPTIONS:
191 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_INT32,
192 hwopts, ARRAY_SIZE(hwopts), sizeof(int32_t));
193 break;
194 case SR_CONF_DEVICE_OPTIONS:
195 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_INT32,
196 hwcaps, ARRAY_SIZE(hwcaps), sizeof(int32_t));
197 break;
198 default:
bd6fbf62 199 return SR_ERR_NA;
510b3e69
BV
200 }
201
202 return SR_OK;
203}
204
6078d2c9 205static int dev_acquisition_start(const struct sr_dev_inst *sdi, void *cb_data)
20cbc785 206{
601fb67c 207 struct dev_context *devc;
d9a7c349 208 struct sr_serial_dev_inst *serial;
601fb67c 209
e73ffd42
BV
210 if (sdi->status != SR_ST_ACTIVE)
211 return SR_ERR_DEV_CLOSED;
212
601fb67c
AG
213 if (!(devc = sdi->priv)) {
214 sr_err("sdi->priv was NULL.");
215 return SR_ERR_BUG;
216 }
217
601fb67c
AG
218 devc->cb_data = cb_data;
219
220 /*
221 * Reset the number of samples to take. If we've already collected our
222 * quota, but we start a new session, and don't reset this, we'll just
223 * quit without acquiring any new samples.
224 */
225 devc->num_samples = 0;
226 devc->starttime = g_get_monotonic_time();
227
228 /* Send header packet to the session bus. */
29a27196 229 std_session_send_df_header(cb_data, LOG_PREFIX);
601fb67c
AG
230
231 /* Poll every 50ms, or whenever some data comes in. */
d9a7c349 232 serial = sdi->conn;
abc4b335 233 serial_source_add(serial, G_IO_IN, 50,
601fb67c 234 brymen_dmm_receive_data, (void *)sdi);
20cbc785
AG
235
236 return SR_OK;
237}
238
6078d2c9 239static int dev_acquisition_stop(struct sr_dev_inst *sdi, void *cb_data)
20cbc785 240{
d43b0908
BV
241 return std_serial_dev_acquisition_stop(sdi, cb_data, std_serial_dev_close,
242 sdi->conn, LOG_PREFIX);
20cbc785
AG
243}
244
c5d6f5cc
UH
245SR_PRIV struct sr_dev_driver brymen_bm857_driver_info = {
246 .name = "brymen-bm857",
247 .longname = "Brymen BM857",
20cbc785 248 .api_version = 1,
6078d2c9
UH
249 .init = init,
250 .cleanup = cleanup,
251 .scan = scan,
252 .dev_list = dev_list,
a6630742 253 .dev_clear = NULL,
6fab7b8f
UH
254 .config_get = NULL,
255 .config_set = config_set,
256 .config_list = config_list,
854434de 257 .dev_open = std_serial_dev_open,
bf2c987f 258 .dev_close = std_serial_dev_close,
6078d2c9
UH
259 .dev_acquisition_start = dev_acquisition_start,
260 .dev_acquisition_stop = dev_acquisition_stop,
20cbc785
AG
261 .priv = NULL,
262};