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