]> sigrok.org Git - libsigrok.git/blame - src/hardware/kern-scale/api.c
Introduce standard cleanup helper
[libsigrok.git] / src / hardware / kern-scale / api.c
CommitLineData
9380ec2f
UH
1/*
2 * This file is part of the libsigrok project.
3 *
4 * Copyright (C) 2015 Uwe Hermann <uwe@hermann-uwe.de>
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 2 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, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
6ec6c43b 21#include <config.h>
607dcdea
UH
22#include <glib.h>
23#include <libsigrok/libsigrok.h>
24#include "libsigrok-internal.h"
9380ec2f
UH
25#include "protocol.h"
26
607dcdea
UH
27static const uint32_t scanopts[] = {
28 SR_CONF_CONN,
29 SR_CONF_SERIALCOMM,
30};
31
32static const uint32_t devopts[] = {
33 SR_CONF_SCALE,
34 SR_CONF_CONTINUOUS,
35 SR_CONF_LIMIT_SAMPLES | SR_CONF_SET,
36 SR_CONF_LIMIT_MSEC | SR_CONF_SET,
37};
38
39static int dev_clear(const struct sr_dev_driver *di)
40{
41 return std_dev_clear(di, NULL);
42}
9380ec2f
UH
43
44static int init(struct sr_dev_driver *di, struct sr_context *sr_ctx)
45{
46 return std_init(sr_ctx, di, LOG_PREFIX);
47}
48
49static GSList *scan(struct sr_dev_driver *di, GSList *options)
50{
607dcdea
UH
51 struct scale_info *scale;
52 struct sr_config *src;
53 GSList *l, *devices;
54 const char *conn, *serialcomm;
55 struct sr_dev_inst *sdi;
9380ec2f 56 struct drv_context *drvc;
607dcdea
UH
57 struct dev_context *devc;
58 struct sr_serial_dev_inst *serial;
59 int ret;
60 size_t len;
61 uint8_t buf[128];
62
63 scale = (struct scale_info *)di;
64
65 conn = serialcomm = NULL;
66 for (l = options; l; l = l->next) {
67 src = l->data;
68 switch (src->key) {
69 case SR_CONF_CONN:
70 conn = g_variant_get_string(src->data, NULL);
71 break;
72 case SR_CONF_SERIALCOMM:
73 serialcomm = g_variant_get_string(src->data, NULL);
74 break;
75 }
76 }
77 if (!conn)
78 return NULL;
9380ec2f 79
607dcdea
UH
80 if (!serialcomm)
81 serialcomm = scale->conn;
9380ec2f 82
607dcdea 83 serial = sr_serial_dev_inst_new(conn, serialcomm);
9380ec2f 84
607dcdea
UH
85 if (serial_open(serial, SERIAL_RDWR) != SR_OK)
86 return NULL;
9380ec2f 87
607dcdea 88 sr_info("Probing serial port %s.", conn);
9380ec2f 89
607dcdea
UH
90 drvc = di->context;
91 devices = NULL;
92 serial_flush(serial);
9380ec2f 93
607dcdea
UH
94 sr_spew("Set O1 mode (continuous values, stable and unstable ones).");
95 if (serial_write_nonblocking(serial, "O1\r\n", 4) != 4)
96 goto scan_cleanup;
97 /* Device replies with "A00\r\n" (OK) or "E01\r\n" (Error). Ignore. */
9380ec2f 98
607dcdea
UH
99 /* Let's get a bit of data and see if we can find a packet. */
100 len = sizeof(buf);
101 ret = serial_stream_detect(serial, buf, &len, scale->packet_size,
102 scale->packet_valid, 3000, scale->baudrate);
103 if (ret != SR_OK)
104 goto scan_cleanup;
9380ec2f 105
607dcdea 106 sr_info("Found device on port %s.", conn);
9380ec2f 107
607dcdea 108 sdi = g_malloc0(sizeof(struct sr_dev_inst));
9380ec2f 109 sdi->status = SR_ST_INACTIVE;
607dcdea
UH
110 sdi->vendor = g_strdup(scale->vendor);
111 sdi->model = g_strdup(scale->device);
112 devc = g_malloc0(sizeof(struct dev_context));
113 sdi->inst_type = SR_INST_SERIAL;
114 sdi->conn = serial;
115 sdi->priv = devc;
116 sdi->driver = di;
117 sr_channel_new(sdi, 0, SR_CHANNEL_ANALOG, TRUE, "Mass");
118 drvc->instances = g_slist_append(drvc->instances, sdi);
119 devices = g_slist_append(devices, sdi);
120
121scan_cleanup:
122 serial_close(serial);
9380ec2f 123
607dcdea 124 return devices;
9380ec2f
UH
125}
126
607dcdea 127static GSList *dev_list(const struct sr_dev_driver *di)
9380ec2f 128{
607dcdea 129 return ((struct drv_context *)(di->context))->instances;
9380ec2f
UH
130}
131
9380ec2f
UH
132static int config_set(uint32_t key, GVariant *data, const struct sr_dev_inst *sdi,
133 const struct sr_channel_group *cg)
134{
607dcdea 135 struct dev_context *devc;
9380ec2f 136
9380ec2f
UH
137 (void)cg;
138
139 if (sdi->status != SR_ST_ACTIVE)
140 return SR_ERR_DEV_CLOSED;
141
607dcdea
UH
142 if (!(devc = sdi->priv))
143 return SR_ERR_BUG;
144
9380ec2f 145 switch (key) {
607dcdea
UH
146 case SR_CONF_LIMIT_SAMPLES:
147 devc->limit_samples = g_variant_get_uint64(data);
148 break;
149 case SR_CONF_LIMIT_MSEC:
150 devc->limit_msec = g_variant_get_uint64(data);
151 break;
9380ec2f 152 default:
607dcdea 153 return SR_ERR_NA;
9380ec2f
UH
154 }
155
607dcdea 156 return SR_OK;
9380ec2f
UH
157}
158
159static int config_list(uint32_t key, GVariant **data, const struct sr_dev_inst *sdi,
160 const struct sr_channel_group *cg)
161{
9380ec2f 162 (void)sdi;
9380ec2f
UH
163 (void)cg;
164
9380ec2f 165 switch (key) {
607dcdea
UH
166 case SR_CONF_SCAN_OPTIONS:
167 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
168 scanopts, ARRAY_SIZE(scanopts), sizeof(uint32_t));
169 break;
170 case SR_CONF_DEVICE_OPTIONS:
171 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
172 devopts, ARRAY_SIZE(devopts), sizeof(uint32_t));
173 break;
9380ec2f
UH
174 default:
175 return SR_ERR_NA;
176 }
177
607dcdea 178 return SR_OK;
9380ec2f
UH
179}
180
695dc859 181static int dev_acquisition_start(const struct sr_dev_inst *sdi)
9380ec2f 182{
607dcdea
UH
183 struct dev_context *devc;
184 struct sr_serial_dev_inst *serial;
9380ec2f
UH
185
186 if (sdi->status != SR_ST_ACTIVE)
187 return SR_ERR_DEV_CLOSED;
188
208c1d35 189 devc = sdi->priv;
607dcdea
UH
190 serial = sdi->conn;
191
192 sr_spew("Set O1 mode (continuous values, stable and unstable ones).");
193 if (serial_write_nonblocking(serial, "O1\r\n", 4) != 4)
194 return SR_ERR;
195 /* Device replies with "A00\r\n" (OK) or "E01\r\n" (Error). Ignore. */
196
197 devc->num_samples = 0;
198 devc->starttime = g_get_monotonic_time();
199
695dc859 200 std_session_send_df_header(sdi, LOG_PREFIX);
607dcdea
UH
201
202 /* Poll every 50ms, or whenever some data comes in. */
203 serial_source_add(sdi->session, serial, G_IO_IN, 50,
204 kern_scale_receive_data, (void *)sdi);
205
9380ec2f
UH
206 return SR_OK;
207}
208
695dc859 209static int dev_acquisition_stop(struct sr_dev_inst *sdi)
9380ec2f 210{
6525d819 211 return std_serial_dev_acquisition_stop(sdi, std_serial_dev_close,
607dcdea
UH
212 sdi->conn, LOG_PREFIX);
213}
9380ec2f 214
607dcdea
UH
215#define SCALE(ID, CHIPSET, VENDOR, MODEL, CONN, BAUDRATE, PACKETSIZE, \
216 VALID, PARSE) \
217 &(struct scale_info) { \
218 { \
219 .name = ID, \
220 .longname = VENDOR " " MODEL, \
221 .api_version = 1, \
222 .init = init, \
700d6b64 223 .cleanup = std_cleanup, \
607dcdea
UH
224 .scan = scan, \
225 .dev_list = dev_list, \
226 .dev_clear = dev_clear, \
227 .config_get = NULL, \
228 .config_set = config_set, \
229 .config_list = config_list, \
230 .dev_open = std_serial_dev_open, \
231 .dev_close = std_serial_dev_close, \
232 .dev_acquisition_start = dev_acquisition_start, \
233 .dev_acquisition_stop = dev_acquisition_stop, \
234 .context = NULL, \
235 }, \
236 VENDOR, MODEL, CONN, BAUDRATE, PACKETSIZE, \
237 VALID, PARSE, sizeof(struct CHIPSET##_info) \
238 }
9380ec2f 239
607dcdea
UH
240/*
241 * Some scales have (user-configurable) 14-byte or 15-byte packets.
242 * We transparently support both variants by specifying the larger value
243 * below and due to the way the stream parser works.
244 *
245 * The scales have a standard baudrate (model dependent) as listed below,
246 * but serial parameters are user-configurable. We support that by letting
247 * the user override them via "serialcomm".
248 */
9380ec2f 249
607dcdea
UH
250SR_PRIV const struct scale_info *kern_scale_drivers[] = {
251 SCALE(
252 "kern-ew-6200-2nm", kern,
253 "KERN", "EW 6200-2NM", "1200/8n2", 1200,
254 15 /* (or 14) */, sr_kern_packet_valid, sr_kern_parse
255 ),
256 NULL
9380ec2f 257};