]> sigrok.org Git - libsigrok.git/blame_incremental - src/hardware/tondaj-sl-814/api.c
drivers: Provide proper drvopts.
[libsigrok.git] / src / hardware / tondaj-sl-814 / api.c
... / ...
CommitLineData
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, see <http://www.gnu.org/licenses/>.
18 */
19
20#include <config.h>
21#include <fcntl.h>
22#include <glib.h>
23#include <libsigrok/libsigrok.h>
24#include "libsigrok-internal.h"
25#include "protocol.h"
26
27#define SERIALCOMM "9600/8e1"
28
29static const uint32_t scanopts[] = {
30 SR_CONF_CONN,
31 SR_CONF_SERIALCOMM,
32};
33
34static const uint32_t drvopts[] = {
35 SR_CONF_SOUNDLEVELMETER,
36};
37
38static const uint32_t devopts[] = {
39 SR_CONF_CONTINUOUS,
40 SR_CONF_LIMIT_SAMPLES | SR_CONF_SET,
41 SR_CONF_LIMIT_MSEC | SR_CONF_SET,
42};
43
44static GSList *scan(struct sr_dev_driver *di, GSList *options)
45{
46 struct dev_context *devc;
47 struct sr_dev_inst *sdi;
48 struct sr_config *src;
49 GSList *l;
50 const char *conn, *serialcomm;
51 struct sr_serial_dev_inst *serial;
52
53 conn = serialcomm = NULL;
54 for (l = options; l; l = l->next) {
55 if (!(src = l->data)) {
56 sr_err("Invalid option data, skipping.");
57 continue;
58 }
59 switch (src->key) {
60 case SR_CONF_CONN:
61 conn = g_variant_get_string(src->data, NULL);
62 break;
63 case SR_CONF_SERIALCOMM:
64 serialcomm = g_variant_get_string(src->data, NULL);
65 break;
66 default:
67 sr_err("Unknown option %d, skipping.", src->key);
68 break;
69 }
70 }
71 if (!conn)
72 return NULL;
73 if (!serialcomm)
74 serialcomm = SERIALCOMM;
75
76 sdi = g_malloc0(sizeof(struct sr_dev_inst));
77 sdi->status = SR_ST_INACTIVE;
78 sdi->vendor = g_strdup("Tondaj");
79 sdi->model = g_strdup("SL-814");
80 devc = g_malloc0(sizeof(struct dev_context));
81 sr_sw_limits_init(&devc->limits);
82
83 serial = sr_serial_dev_inst_new(conn, serialcomm);
84
85 if (serial_open(serial, SERIAL_RDWR) != SR_OK)
86 return NULL;
87
88 sdi->inst_type = SR_INST_SERIAL;
89 sdi->conn = serial;
90
91 sdi->priv = devc;
92 sr_channel_new(sdi, 0, SR_CHANNEL_ANALOG, TRUE, "P1");
93
94 return std_scan_complete(di, g_slist_append(NULL, sdi));
95}
96
97static int config_set(uint32_t key, GVariant *data, const struct sr_dev_inst *sdi,
98 const struct sr_channel_group *cg)
99{
100 struct dev_context *devc;
101
102 (void)cg;
103
104 devc = sdi->priv;
105
106 return sr_sw_limits_config_set(&devc->limits, key, data);
107}
108
109static int config_list(uint32_t key, GVariant **data, const struct sr_dev_inst *sdi,
110 const struct sr_channel_group *cg)
111{
112 return STD_CONFIG_LIST(key, data, sdi, cg, scanopts, drvopts, devopts);
113}
114
115static int dev_acquisition_start(const struct sr_dev_inst *sdi)
116{
117 struct dev_context *devc = sdi->priv;
118 struct sr_serial_dev_inst *serial;
119
120 std_session_send_df_header(sdi);
121
122 sr_sw_limits_acquisition_start(&devc->limits);
123
124 /* Poll every 500ms, or whenever some data comes in. */
125 serial = sdi->conn;
126 serial_source_add(sdi->session, serial, G_IO_IN, 500,
127 tondaj_sl_814_receive_data, (void *)sdi);
128
129 return SR_OK;
130}
131
132static struct sr_dev_driver tondaj_sl_814_driver_info = {
133 .name = "tondaj-sl-814",
134 .longname = "Tondaj SL-814",
135 .api_version = 1,
136 .init = std_init,
137 .cleanup = std_cleanup,
138 .scan = scan,
139 .dev_list = std_dev_list,
140 .dev_clear = std_dev_clear,
141 .config_get = NULL,
142 .config_set = config_set,
143 .config_list = config_list,
144 .dev_open = std_serial_dev_open,
145 .dev_close = std_serial_dev_close,
146 .dev_acquisition_start = dev_acquisition_start,
147 .dev_acquisition_stop = std_serial_dev_acquisition_stop,
148 .context = NULL,
149};
150SR_REGISTER_DEV_DRIVER(tondaj_sl_814_driver_info);