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