]> sigrok.org Git - libsigrok.git/blame - src/hardware/brymen-dmm/api.c
Match std_init() parameter order to the driver init() callback
[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
6ec6c43b 20#include <config.h>
20cbc785
AG
21#include "protocol.h"
22
a0e0bb41 23static const uint32_t scanopts[] = {
601fb67c
AG
24 SR_CONF_CONN,
25 SR_CONF_SERIALCOMM,
601fb67c
AG
26};
27
f254bc4b 28static const uint32_t devopts[] = {
601fb67c 29 SR_CONF_MULTIMETER,
601fb67c 30 SR_CONF_CONTINUOUS,
5827f61b
BV
31 SR_CONF_LIMIT_SAMPLES | SR_CONF_SET,
32 SR_CONF_LIMIT_MSEC | SR_CONF_SET,
601fb67c
AG
33};
34
c5d6f5cc
UH
35SR_PRIV struct sr_dev_driver brymen_bm857_driver_info;
36static struct sr_dev_driver *di = &brymen_bm857_driver_info;
20cbc785 37
4f840ce9 38static int init(struct sr_dev_driver *di, struct sr_context *sr_ctx)
601fb67c 39{
1f8f5bc0 40 return std_init(di, sr_ctx, LOG_PREFIX);
601fb67c
AG
41}
42
601fb67c 43static GSList *brymen_scan(const char *conn, const char *serialcomm)
20cbc785 44{
601fb67c
AG
45 struct sr_dev_inst *sdi;
46 struct dev_context *devc;
20cbc785 47 struct drv_context *drvc;
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));
dcba0c41 82 sr_sw_limits_init(&devc->sw_limits);
d9a7c349
UH
83 sdi->inst_type = SR_INST_SERIAL;
84 sdi->conn = serial;
41812aca 85 drvc = di->context;
601fb67c
AG
86 sdi->priv = devc;
87 sdi->driver = di;
5e23fcab 88 sr_channel_new(sdi, 0, SR_CHANNEL_ANALOG, TRUE, "P1");
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
4f840ce9 98static GSList *scan(struct sr_dev_driver *di, 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 105 devices = NULL;
41812aca 106 drvc = di->context;
20cbc785
AG
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
584560f1 135static int config_set(uint32_t key, GVariant *data, const struct sr_dev_inst *sdi,
53b4680f 136 const struct sr_channel_group *cg)
20cbc785 137{
601fb67c 138 struct dev_context *devc;
20cbc785 139
53b4680f 140 (void)cg;
8f996b89 141
e73ffd42
BV
142 if (sdi->status != SR_ST_ACTIVE)
143 return SR_ERR_DEV_CLOSED;
20cbc785 144
601fb67c
AG
145 if (!(devc = sdi->priv)) {
146 sr_err("sdi->priv was NULL.");
147 return SR_ERR_BUG;
148 }
149
dcba0c41 150 return sr_sw_limits_config_set(&devc->sw_limits, key, data);
20cbc785
AG
151}
152
584560f1 153static int config_list(uint32_t key, GVariant **data, const struct sr_dev_inst *sdi,
53b4680f 154 const struct sr_channel_group *cg)
510b3e69
BV
155{
156 (void)sdi;
53b4680f 157 (void)cg;
510b3e69
BV
158
159 switch (key) {
160 case SR_CONF_SCAN_OPTIONS:
584560f1 161 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
a0e0bb41 162 scanopts, ARRAY_SIZE(scanopts), sizeof(uint32_t));
510b3e69
BV
163 break;
164 case SR_CONF_DEVICE_OPTIONS:
584560f1 165 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
f254bc4b 166 devopts, ARRAY_SIZE(devopts), sizeof(uint32_t));
510b3e69
BV
167 break;
168 default:
bd6fbf62 169 return SR_ERR_NA;
510b3e69
BV
170 }
171
172 return SR_OK;
173}
174
695dc859 175static int dev_acquisition_start(const struct sr_dev_inst *sdi)
20cbc785 176{
601fb67c 177 struct dev_context *devc;
d9a7c349 178 struct sr_serial_dev_inst *serial;
601fb67c 179
e73ffd42
BV
180 if (sdi->status != SR_ST_ACTIVE)
181 return SR_ERR_DEV_CLOSED;
182
208c1d35 183 devc = sdi->priv;
601fb67c 184
dcba0c41 185 sr_sw_limits_acquisition_start(&devc->sw_limits);
695dc859 186 std_session_send_df_header(sdi, LOG_PREFIX);
601fb67c
AG
187
188 /* Poll every 50ms, or whenever some data comes in. */
d9a7c349 189 serial = sdi->conn;
102f1239
BV
190 serial_source_add(sdi->session, serial, G_IO_IN, 50,
191 brymen_dmm_receive_data, (void *)sdi);
20cbc785
AG
192
193 return SR_OK;
194}
195
695dc859 196static int dev_acquisition_stop(struct sr_dev_inst *sdi)
20cbc785 197{
6525d819 198 return std_serial_dev_acquisition_stop(sdi, std_serial_dev_close,
d43b0908 199 sdi->conn, LOG_PREFIX);
20cbc785
AG
200}
201
c5d6f5cc
UH
202SR_PRIV struct sr_dev_driver brymen_bm857_driver_info = {
203 .name = "brymen-bm857",
204 .longname = "Brymen BM857",
20cbc785 205 .api_version = 1,
6078d2c9 206 .init = init,
700d6b64 207 .cleanup = std_cleanup,
6078d2c9 208 .scan = scan,
c01bf34c 209 .dev_list = std_dev_list,
a6630742 210 .dev_clear = NULL,
6fab7b8f
UH
211 .config_get = NULL,
212 .config_set = config_set,
213 .config_list = config_list,
854434de 214 .dev_open = std_serial_dev_open,
bf2c987f 215 .dev_close = std_serial_dev_close,
6078d2c9
UH
216 .dev_acquisition_start = dev_acquisition_start,
217 .dev_acquisition_stop = dev_acquisition_stop,
41812aca 218 .context = NULL,
20cbc785 219};