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