]> sigrok.org Git - libsigrok.git/blame - src/hardware/brymen-dmm/api.c
std_serial_dev_acquisition_stop(): Remove serial parameter
[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
e32862eb
LPC
35static GSList *brymen_scan(struct sr_dev_driver *di, const char *conn,
36 const char *serialcomm)
20cbc785 37{
601fb67c
AG
38 struct sr_dev_inst *sdi;
39 struct dev_context *devc;
601fb67c
AG
40 struct sr_serial_dev_inst *serial;
41 GSList *devices;
42 int ret;
c5d6f5cc
UH
43 uint8_t buf[128];
44 size_t len;
20cbc785 45
91219afc 46 serial = sr_serial_dev_inst_new(conn, serialcomm);
601fb67c 47
ca4266a0 48 if (serial_open(serial, SERIAL_RDWR) != SR_OK)
601fb67c
AG
49 return NULL;
50
51 sr_info("Probing port %s.", conn);
52
53 devices = NULL;
54
55 /* Request reading */
c5d6f5cc
UH
56 if ((ret = brymen_packet_request(serial)) < 0) {
57 sr_err("Unable to send command: %d.", ret);
601fb67c 58 goto scan_cleanup;
20cbc785
AG
59 }
60
c5d6f5cc 61 len = 128;
601fb67c
AG
62 ret = brymen_stream_detect(serial, buf, &len, brymen_packet_length,
63 brymen_packet_is_valid, 1000, 9600);
64 if (ret != SR_OK)
65 goto scan_cleanup;
20cbc785 66
601fb67c
AG
67 sr_info("Found device on port %s.", conn);
68
aac29cc1 69 sdi = g_malloc0(sizeof(struct sr_dev_inst));
0af636be
UH
70 sdi->status = SR_ST_INACTIVE;
71 sdi->vendor = g_strdup("Brymen");
72 sdi->model = g_strdup("BM85x");
f57d8ffe 73 devc = g_malloc0(sizeof(struct dev_context));
dcba0c41 74 sr_sw_limits_init(&devc->sw_limits);
d9a7c349
UH
75 sdi->inst_type = SR_INST_SERIAL;
76 sdi->conn = serial;
601fb67c 77 sdi->priv = devc;
5e23fcab 78 sr_channel_new(sdi, 0, SR_CHANNEL_ANALOG, TRUE, "P1");
601fb67c
AG
79 devices = g_slist_append(devices, sdi);
80
601fb67c
AG
81scan_cleanup:
82 serial_close(serial);
83
15a5bfe4 84 return std_scan_complete(di, devices);
20cbc785
AG
85}
86
4f840ce9 87static GSList *scan(struct sr_dev_driver *di, GSList *options)
20cbc785 88{
601fb67c
AG
89 struct sr_config *src;
90 GSList *devices, *l;
91 const char *conn, *serialcomm;
20cbc785 92
20cbc785 93 devices = NULL;
20cbc785 94
601fb67c
AG
95 conn = serialcomm = NULL;
96 for (l = options; l; l = l->next) {
97 src = l->data;
98 switch (src->key) {
c5d6f5cc 99 case SR_CONF_CONN:
510b3e69 100 conn = g_variant_get_string(src->data, NULL);
c5d6f5cc
UH
101 break;
102 case SR_CONF_SERIALCOMM:
510b3e69 103 serialcomm = g_variant_get_string(src->data, NULL);
c5d6f5cc 104 break;
601fb67c
AG
105 }
106 }
d9a7c349 107 if (!conn)
601fb67c 108 return NULL;
601fb67c
AG
109
110 if (serialcomm) {
111 /* Use the provided comm specs. */
e32862eb 112 devices = brymen_scan(di, conn, serialcomm);
601fb67c 113 } else {
c5d6f5cc 114 /* But 9600/8n1 should work all of the time. */
e32862eb 115 devices = brymen_scan(di, conn, "9600/8n1/dtr=1/rts=1");
601fb67c 116 }
20cbc785
AG
117
118 return devices;
119}
120
584560f1 121static int config_set(uint32_t key, GVariant *data, const struct sr_dev_inst *sdi,
53b4680f 122 const struct sr_channel_group *cg)
20cbc785 123{
601fb67c 124 struct dev_context *devc;
20cbc785 125
53b4680f 126 (void)cg;
8f996b89 127
e73ffd42
BV
128 if (sdi->status != SR_ST_ACTIVE)
129 return SR_ERR_DEV_CLOSED;
20cbc785 130
b0baddef 131 devc = sdi->priv;
601fb67c 132
dcba0c41 133 return sr_sw_limits_config_set(&devc->sw_limits, key, data);
20cbc785
AG
134}
135
584560f1 136static int config_list(uint32_t key, GVariant **data, const struct sr_dev_inst *sdi,
53b4680f 137 const struct sr_channel_group *cg)
510b3e69
BV
138{
139 (void)sdi;
53b4680f 140 (void)cg;
510b3e69
BV
141
142 switch (key) {
143 case SR_CONF_SCAN_OPTIONS:
584560f1 144 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
a0e0bb41 145 scanopts, ARRAY_SIZE(scanopts), sizeof(uint32_t));
510b3e69
BV
146 break;
147 case SR_CONF_DEVICE_OPTIONS:
584560f1 148 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
f254bc4b 149 devopts, ARRAY_SIZE(devopts), sizeof(uint32_t));
510b3e69
BV
150 break;
151 default:
bd6fbf62 152 return SR_ERR_NA;
510b3e69
BV
153 }
154
155 return SR_OK;
156}
157
695dc859 158static int dev_acquisition_start(const struct sr_dev_inst *sdi)
20cbc785 159{
601fb67c 160 struct dev_context *devc;
d9a7c349 161 struct sr_serial_dev_inst *serial;
601fb67c 162
e73ffd42
BV
163 if (sdi->status != SR_ST_ACTIVE)
164 return SR_ERR_DEV_CLOSED;
165
208c1d35 166 devc = sdi->priv;
601fb67c 167
dcba0c41 168 sr_sw_limits_acquisition_start(&devc->sw_limits);
bee2b016 169 std_session_send_df_header(sdi);
601fb67c
AG
170
171 /* Poll every 50ms, or whenever some data comes in. */
d9a7c349 172 serial = sdi->conn;
102f1239
BV
173 serial_source_add(sdi->session, serial, G_IO_IN, 50,
174 brymen_dmm_receive_data, (void *)sdi);
20cbc785
AG
175
176 return SR_OK;
177}
178
695dc859 179static int dev_acquisition_stop(struct sr_dev_inst *sdi)
20cbc785 180{
15f96409 181 return std_serial_dev_acquisition_stop(sdi, std_serial_dev_close);
20cbc785
AG
182}
183
dd5c48a6 184static struct sr_dev_driver brymen_bm857_driver_info = {
c5d6f5cc
UH
185 .name = "brymen-bm857",
186 .longname = "Brymen BM857",
20cbc785 187 .api_version = 1,
c2fdcc25 188 .init = std_init,
700d6b64 189 .cleanup = std_cleanup,
6078d2c9 190 .scan = scan,
c01bf34c 191 .dev_list = std_dev_list,
a6630742 192 .dev_clear = NULL,
6fab7b8f
UH
193 .config_get = NULL,
194 .config_set = config_set,
195 .config_list = config_list,
854434de 196 .dev_open = std_serial_dev_open,
bf2c987f 197 .dev_close = std_serial_dev_close,
6078d2c9
UH
198 .dev_acquisition_start = dev_acquisition_start,
199 .dev_acquisition_stop = dev_acquisition_stop,
41812aca 200 .context = NULL,
20cbc785 201};
dd5c48a6 202SR_REGISTER_DEV_DRIVER(brymen_bm857_driver_info);