]> sigrok.org Git - libsigrok.git/blame_incremental - src/hardware/brymen-dmm/api.c
Introduce standard implementation of the dev_list() callback
[libsigrok.git] / src / hardware / brymen-dmm / api.c
... / ...
CommitLineData
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
20#include <config.h>
21#include "protocol.h"
22
23static const uint32_t scanopts[] = {
24 SR_CONF_CONN,
25 SR_CONF_SERIALCOMM,
26};
27
28static const uint32_t devopts[] = {
29 SR_CONF_MULTIMETER,
30 SR_CONF_CONTINUOUS,
31 SR_CONF_LIMIT_SAMPLES | SR_CONF_SET,
32 SR_CONF_LIMIT_MSEC | SR_CONF_SET,
33};
34
35SR_PRIV struct sr_dev_driver brymen_bm857_driver_info;
36static struct sr_dev_driver *di = &brymen_bm857_driver_info;
37
38static int init(struct sr_dev_driver *di, struct sr_context *sr_ctx)
39{
40 return std_init(sr_ctx, di, LOG_PREFIX);
41}
42
43static GSList *brymen_scan(const char *conn, const char *serialcomm)
44{
45 struct sr_dev_inst *sdi;
46 struct dev_context *devc;
47 struct drv_context *drvc;
48 struct sr_serial_dev_inst *serial;
49 GSList *devices;
50 int ret;
51 uint8_t buf[128];
52 size_t len;
53
54 serial = sr_serial_dev_inst_new(conn, serialcomm);
55
56 if (serial_open(serial, SERIAL_RDWR) != SR_OK)
57 return NULL;
58
59 sr_info("Probing port %s.", conn);
60
61 devices = NULL;
62
63 /* Request reading */
64 if ((ret = brymen_packet_request(serial)) < 0) {
65 sr_err("Unable to send command: %d.", ret);
66 goto scan_cleanup;
67 }
68
69 len = 128;
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;
74
75 sr_info("Found device on port %s.", conn);
76
77 sdi = g_malloc0(sizeof(struct sr_dev_inst));
78 sdi->status = SR_ST_INACTIVE;
79 sdi->vendor = g_strdup("Brymen");
80 sdi->model = g_strdup("BM85x");
81 devc = g_malloc0(sizeof(struct dev_context));
82 sdi->inst_type = SR_INST_SERIAL;
83 sdi->conn = serial;
84 drvc = di->context;
85 sdi->priv = devc;
86 sdi->driver = di;
87 sr_channel_new(sdi, 0, SR_CHANNEL_ANALOG, TRUE, "P1");
88 drvc->instances = g_slist_append(drvc->instances, sdi);
89 devices = g_slist_append(devices, sdi);
90
91scan_cleanup:
92 serial_close(serial);
93
94 return devices;
95}
96
97static GSList *scan(struct sr_dev_driver *di, GSList *options)
98{
99 struct drv_context *drvc;
100 struct sr_config *src;
101 GSList *devices, *l;
102 const char *conn, *serialcomm;
103
104 devices = NULL;
105 drvc = di->context;
106 drvc->instances = NULL;
107
108 conn = serialcomm = NULL;
109 for (l = options; l; l = l->next) {
110 src = l->data;
111 switch (src->key) {
112 case SR_CONF_CONN:
113 conn = g_variant_get_string(src->data, NULL);
114 break;
115 case SR_CONF_SERIALCOMM:
116 serialcomm = g_variant_get_string(src->data, NULL);
117 break;
118 }
119 }
120 if (!conn)
121 return NULL;
122
123 if (serialcomm) {
124 /* Use the provided comm specs. */
125 devices = brymen_scan(conn, serialcomm);
126 } else {
127 /* But 9600/8n1 should work all of the time. */
128 devices = brymen_scan(conn, "9600/8n1/dtr=1/rts=1");
129 }
130
131 return devices;
132}
133
134static int config_set(uint32_t key, GVariant *data, const struct sr_dev_inst *sdi,
135 const struct sr_channel_group *cg)
136{
137 struct dev_context *devc;
138 int ret;
139
140 (void)cg;
141
142 if (sdi->status != SR_ST_ACTIVE)
143 return SR_ERR_DEV_CLOSED;
144
145 if (!(devc = sdi->priv)) {
146 sr_err("sdi->priv was NULL.");
147 return SR_ERR_BUG;
148 }
149
150 ret = SR_OK;
151 switch (key) {
152 case SR_CONF_LIMIT_SAMPLES:
153 devc->limit_samples = g_variant_get_uint64(data);
154 break;
155 case SR_CONF_LIMIT_MSEC:
156 devc->limit_msec = g_variant_get_uint64(data);
157 break;
158 default:
159 ret = SR_ERR_NA;
160 }
161
162 return ret;
163}
164
165static int config_list(uint32_t key, GVariant **data, const struct sr_dev_inst *sdi,
166 const struct sr_channel_group *cg)
167{
168 (void)sdi;
169 (void)cg;
170
171 switch (key) {
172 case SR_CONF_SCAN_OPTIONS:
173 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
174 scanopts, ARRAY_SIZE(scanopts), sizeof(uint32_t));
175 break;
176 case SR_CONF_DEVICE_OPTIONS:
177 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
178 devopts, ARRAY_SIZE(devopts), sizeof(uint32_t));
179 break;
180 default:
181 return SR_ERR_NA;
182 }
183
184 return SR_OK;
185}
186
187static int dev_acquisition_start(const struct sr_dev_inst *sdi)
188{
189 struct dev_context *devc;
190 struct sr_serial_dev_inst *serial;
191
192 if (sdi->status != SR_ST_ACTIVE)
193 return SR_ERR_DEV_CLOSED;
194
195 devc = sdi->priv;
196
197 /*
198 * Reset the number of samples to take. If we've already collected our
199 * quota, but we start a new session, and don't reset this, we'll just
200 * quit without acquiring any new samples.
201 */
202 devc->num_samples = 0;
203 devc->starttime = g_get_monotonic_time();
204
205 std_session_send_df_header(sdi, LOG_PREFIX);
206
207 /* Poll every 50ms, or whenever some data comes in. */
208 serial = sdi->conn;
209 serial_source_add(sdi->session, serial, G_IO_IN, 50,
210 brymen_dmm_receive_data, (void *)sdi);
211
212 return SR_OK;
213}
214
215static int dev_acquisition_stop(struct sr_dev_inst *sdi)
216{
217 return std_serial_dev_acquisition_stop(sdi, std_serial_dev_close,
218 sdi->conn, LOG_PREFIX);
219}
220
221SR_PRIV struct sr_dev_driver brymen_bm857_driver_info = {
222 .name = "brymen-bm857",
223 .longname = "Brymen BM857",
224 .api_version = 1,
225 .init = init,
226 .cleanup = std_cleanup,
227 .scan = scan,
228 .dev_list = std_dev_list,
229 .dev_clear = NULL,
230 .config_get = NULL,
231 .config_set = config_set,
232 .config_list = config_list,
233 .dev_open = std_serial_dev_open,
234 .dev_close = std_serial_dev_close,
235 .dev_acquisition_start = dev_acquisition_start,
236 .dev_acquisition_stop = dev_acquisition_stop,
237 .context = NULL,
238};