]> sigrok.org Git - libsigrok.git/blob - src/hardware/colead-slm/api.c
Add helper function for scan completion
[libsigrok.git] / src / hardware / colead-slm / api.c
1 /*
2  * This file is part of the libsigrok project.
3  *
4  * Copyright (C) 2012 Bert Vermeulen <bert@biot.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 <glib.h>
22 #include <sys/types.h>
23 #include <sys/stat.h>
24 #include <fcntl.h>
25 #include <string.h>
26 #include <libsigrok/libsigrok.h>
27 #include "libsigrok-internal.h"
28 #include "protocol.h"
29
30 /* The Colead SL-5868P uses this. */
31 #define SERIALCOMM "2400/8n1"
32
33 static const uint32_t scanopts[] = {
34         SR_CONF_CONN,
35         SR_CONF_SERIALCOMM,
36 };
37
38 static const uint32_t devopts[] = {
39         SR_CONF_SOUNDLEVELMETER,
40         SR_CONF_CONTINUOUS,
41         SR_CONF_LIMIT_SAMPLES | SR_CONF_SET,
42         SR_CONF_LIMIT_MSEC | SR_CONF_SET,
43 };
44
45 static GSList *scan(struct sr_dev_driver *di, GSList *options)
46 {
47         struct dev_context *devc;
48         struct sr_dev_inst *sdi;
49         struct sr_config *src;
50         GSList *devices, *l;
51         const char *conn, *serialcomm;
52
53         devices = NULL;
54
55         conn = serialcomm = NULL;
56         for (l = options; l; l = l->next) {
57                 src = l->data;
58                 switch (src->key) {
59                 case SR_CONF_CONN:
60                         conn = g_variant_get_string(src->data, NULL);
61                         break;
62                 case SR_CONF_SERIALCOMM:
63                         serialcomm = g_variant_get_string(src->data, NULL);
64                         break;
65                 }
66         }
67         if (!conn)
68                 return NULL;
69         if (!serialcomm)
70                 serialcomm = SERIALCOMM;
71
72         sdi = g_malloc0(sizeof(struct sr_dev_inst));
73         sdi->status = SR_ST_INACTIVE;
74         sdi->vendor = g_strdup("Colead");
75         sdi->model = g_strdup("SL-5868P");
76         devc = g_malloc0(sizeof(struct dev_context));
77         sr_sw_limits_init(&devc->limits);
78         sdi->conn = sr_serial_dev_inst_new(conn, serialcomm);
79         sdi->inst_type = SR_INST_SERIAL;
80         sdi->priv = devc;
81         sr_channel_new(sdi, 0, SR_CHANNEL_ANALOG, TRUE, "P1");
82         devices = g_slist_append(devices, sdi);
83
84         return std_scan_complete(di, devices);
85 }
86
87 static int config_set(uint32_t key, GVariant *data, const struct sr_dev_inst *sdi,
88                 const struct sr_channel_group *cg)
89 {
90         struct dev_context *devc;
91
92         (void)cg;
93
94         if (sdi->status != SR_ST_ACTIVE)
95                 return SR_ERR_DEV_CLOSED;
96
97         devc = sdi->priv;
98
99         return sr_sw_limits_config_set(&devc->limits, key, data);
100 }
101
102 static int config_list(uint32_t key, GVariant **data, const struct sr_dev_inst *sdi,
103                 const struct sr_channel_group *cg)
104 {
105         (void)sdi;
106         (void)cg;
107
108         switch (key) {
109         case SR_CONF_SCAN_OPTIONS:
110                 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
111                                 scanopts, ARRAY_SIZE(scanopts), sizeof(uint32_t));
112                 break;
113         case SR_CONF_DEVICE_OPTIONS:
114                 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
115                                 devopts, ARRAY_SIZE(devopts), sizeof(uint32_t));
116                 break;
117         default:
118                 return SR_ERR_NA;
119         }
120
121         return SR_OK;
122 }
123
124 static int dev_acquisition_start(const struct sr_dev_inst *sdi)
125 {
126         struct dev_context *devc = sdi->priv;
127         struct sr_serial_dev_inst *serial;
128
129         if (sdi->status != SR_ST_ACTIVE)
130                 return SR_ERR_DEV_CLOSED;
131
132         sr_sw_limits_acquisition_start(&devc->limits);
133         std_session_send_df_header(sdi, LOG_PREFIX);
134
135         /* Poll every 150ms, or whenever some data comes in. */
136         serial = sdi->conn;
137         serial_source_add(sdi->session, serial, G_IO_IN, 150,
138                         colead_slm_receive_data, (void *)sdi);
139
140         return SR_OK;
141 }
142
143 static int dev_acquisition_stop(struct sr_dev_inst *sdi)
144 {
145         return std_serial_dev_acquisition_stop(sdi, std_serial_dev_close,
146                         sdi->conn, LOG_PREFIX);
147 }
148
149 static struct sr_dev_driver colead_slm_driver_info = {
150         .name = "colead-slm",
151         .longname = "Colead SLM",
152         .api_version = 1,
153         .init = std_init,
154         .cleanup = std_cleanup,
155         .scan = scan,
156         .dev_list = std_dev_list,
157         .dev_clear = NULL,
158         .config_get = NULL,
159         .config_set = config_set,
160         .config_list = config_list,
161         .dev_open = std_serial_dev_open,
162         .dev_close = std_serial_dev_close,
163         .dev_acquisition_start = dev_acquisition_start,
164         .dev_acquisition_stop = dev_acquisition_stop,
165         .context = NULL,
166 };
167 SR_REGISTER_DEV_DRIVER(colead_slm_driver_info);