]> sigrok.org Git - libsigrok.git/blob - src/hardware/colead-slm/api.c
bc59fd63c7f7def667d5be4cc29c33e49883be49
[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 drv_context *drvc;
48         struct dev_context *devc;
49         struct sr_dev_inst *sdi;
50         struct sr_config *src;
51         GSList *devices, *l;
52         const char *conn, *serialcomm;
53
54         drvc = di->context;
55
56         devices = NULL;
57
58         conn = serialcomm = NULL;
59         for (l = options; l; l = l->next) {
60                 src = l->data;
61                 switch (src->key) {
62                 case SR_CONF_CONN:
63                         conn = g_variant_get_string(src->data, NULL);
64                         break;
65                 case SR_CONF_SERIALCOMM:
66                         serialcomm = g_variant_get_string(src->data, NULL);
67                         break;
68                 }
69         }
70         if (!conn)
71                 return NULL;
72         if (!serialcomm)
73                 serialcomm = SERIALCOMM;
74
75         sdi = g_malloc0(sizeof(struct sr_dev_inst));
76         sdi->status = SR_ST_INACTIVE;
77         sdi->vendor = g_strdup("Colead");
78         sdi->model = g_strdup("SL-5868P");
79         devc = g_malloc0(sizeof(struct dev_context));
80         sr_sw_limits_init(&devc->limits);
81         sdi->conn = sr_serial_dev_inst_new(conn, serialcomm);
82         sdi->inst_type = SR_INST_SERIAL;
83         sdi->priv = devc;
84         sdi->driver = di;
85         sr_channel_new(sdi, 0, SR_CHANNEL_ANALOG, TRUE, "P1");
86         drvc->instances = g_slist_append(drvc->instances, sdi);
87         devices = g_slist_append(devices, sdi);
88
89         return devices;
90 }
91
92 static int config_set(uint32_t key, GVariant *data, const struct sr_dev_inst *sdi,
93                 const struct sr_channel_group *cg)
94 {
95         struct dev_context *devc;
96
97         (void)cg;
98
99         if (sdi->status != SR_ST_ACTIVE)
100                 return SR_ERR_DEV_CLOSED;
101
102         devc = sdi->priv;
103
104         return sr_sw_limits_config_set(&devc->limits, key, data);
105 }
106
107 static int config_list(uint32_t key, GVariant **data, const struct sr_dev_inst *sdi,
108                 const struct sr_channel_group *cg)
109 {
110         (void)sdi;
111         (void)cg;
112
113         switch (key) {
114         case SR_CONF_SCAN_OPTIONS:
115                 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
116                                 scanopts, ARRAY_SIZE(scanopts), sizeof(uint32_t));
117                 break;
118         case SR_CONF_DEVICE_OPTIONS:
119                 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
120                                 devopts, ARRAY_SIZE(devopts), sizeof(uint32_t));
121                 break;
122         default:
123                 return SR_ERR_NA;
124         }
125
126         return SR_OK;
127 }
128
129 static int dev_acquisition_start(const struct sr_dev_inst *sdi)
130 {
131         struct dev_context *devc = sdi->priv;
132         struct sr_serial_dev_inst *serial;
133
134         if (sdi->status != SR_ST_ACTIVE)
135                 return SR_ERR_DEV_CLOSED;
136
137         sr_sw_limits_acquisition_start(&devc->limits);
138         std_session_send_df_header(sdi, LOG_PREFIX);
139
140         /* Poll every 150ms, or whenever some data comes in. */
141         serial = sdi->conn;
142         serial_source_add(sdi->session, serial, G_IO_IN, 150,
143                         colead_slm_receive_data, (void *)sdi);
144
145         return SR_OK;
146 }
147
148 static int dev_acquisition_stop(struct sr_dev_inst *sdi)
149 {
150         return std_serial_dev_acquisition_stop(sdi, std_serial_dev_close,
151                         sdi->conn, LOG_PREFIX);
152 }
153
154 static struct sr_dev_driver colead_slm_driver_info = {
155         .name = "colead-slm",
156         .longname = "Colead SLM",
157         .api_version = 1,
158         .init = std_init,
159         .cleanup = std_cleanup,
160         .scan = scan,
161         .dev_list = std_dev_list,
162         .dev_clear = NULL,
163         .config_get = NULL,
164         .config_set = config_set,
165         .config_list = config_list,
166         .dev_open = std_serial_dev_open,
167         .dev_close = std_serial_dev_close,
168         .dev_acquisition_start = dev_acquisition_start,
169         .dev_acquisition_stop = dev_acquisition_stop,
170         .context = NULL,
171 };
172 SR_REGISTER_DEV_DRIVER(colead_slm_driver_info);