]> sigrok.org Git - libsigrok.git/blame - src/hardware/colead-slm/api.c
scpi-pps: Fix dev_clear() implementation
[libsigrok.git] / src / hardware / colead-slm / api.c
CommitLineData
4d729ddc
BV
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
6ec6c43b 20#include <config.h>
4d729ddc 21#include <glib.h>
a8d09e13
BV
22#include <sys/types.h>
23#include <sys/stat.h>
24#include <fcntl.h>
a8d09e13 25#include <string.h>
c1aae900 26#include <libsigrok/libsigrok.h>
515ab088
UH
27#include "libsigrok-internal.h"
28#include "protocol.h"
a8d09e13 29
f306ca61
BV
30/* The Colead SL-5868P uses this. */
31#define SERIALCOMM "2400/8n1"
32
a0e0bb41 33static const uint32_t scanopts[] = {
1953564a
BV
34 SR_CONF_CONN,
35 SR_CONF_SERIALCOMM,
a8d09e13
BV
36};
37
f254bc4b 38static const uint32_t devopts[] = {
1953564a 39 SR_CONF_SOUNDLEVELMETER,
1953564a 40 SR_CONF_CONTINUOUS,
5827f61b
BV
41 SR_CONF_LIMIT_SAMPLES | SR_CONF_SET,
42 SR_CONF_LIMIT_MSEC | SR_CONF_SET,
a8d09e13
BV
43};
44
4d729ddc 45SR_PRIV struct sr_dev_driver colead_slm_driver_info;
4d729ddc 46
4f840ce9 47static int init(struct sr_dev_driver *di, struct sr_context *sr_ctx)
4d729ddc 48{
f6beaac5 49 return std_init(sr_ctx, di, LOG_PREFIX);
4d729ddc
BV
50}
51
4f840ce9 52static GSList *scan(struct sr_dev_driver *di, GSList *options)
4d729ddc
BV
53{
54 struct drv_context *drvc;
a8d09e13
BV
55 struct dev_context *devc;
56 struct sr_dev_inst *sdi;
1987b8d6 57 struct sr_config *src;
a8d09e13
BV
58 GSList *devices, *l;
59 const char *conn, *serialcomm;
4d729ddc 60
41812aca 61 drvc = di->context;
4d729ddc
BV
62 drvc->instances = NULL;
63
4b97c74e
UH
64 devices = NULL;
65
a8d09e13
BV
66 conn = serialcomm = NULL;
67 for (l = options; l; l = l->next) {
1987b8d6
BV
68 src = l->data;
69 switch (src->key) {
1953564a 70 case SR_CONF_CONN:
dccda194 71 conn = g_variant_get_string(src->data, NULL);
a8d09e13 72 break;
1953564a 73 case SR_CONF_SERIALCOMM:
dccda194 74 serialcomm = g_variant_get_string(src->data, NULL);
a8d09e13
BV
75 break;
76 }
77 }
78 if (!conn)
79 return NULL;
f306ca61
BV
80 if (!serialcomm)
81 serialcomm = SERIALCOMM;
a8d09e13 82
aac29cc1 83 sdi = g_malloc0(sizeof(struct sr_dev_inst));
0af636be
UH
84 sdi->status = SR_ST_INACTIVE;
85 sdi->vendor = g_strdup("Colead");
86 sdi->model = g_strdup("SL-5868P");
f57d8ffe 87 devc = g_malloc0(sizeof(struct dev_context));
91219afc 88 sdi->conn = sr_serial_dev_inst_new(conn, serialcomm);
aa706635 89 sdi->inst_type = SR_INST_SERIAL;
a8d09e13
BV
90 sdi->priv = devc;
91 sdi->driver = di;
5e23fcab 92 sr_channel_new(sdi, 0, SR_CHANNEL_ANALOG, TRUE, "P1");
a8d09e13
BV
93 drvc->instances = g_slist_append(drvc->instances, sdi);
94 devices = g_slist_append(devices, sdi);
4d729ddc
BV
95
96 return devices;
97}
98
4f840ce9 99static GSList *dev_list(const struct sr_dev_driver *di)
4d729ddc 100{
41812aca 101 return ((struct drv_context *)(di->context))->instances;
4d729ddc
BV
102}
103
4f840ce9 104static int cleanup(const struct sr_dev_driver *di)
4d729ddc 105{
a6630742 106 return std_dev_clear(di, NULL);
4d729ddc
BV
107}
108
584560f1 109static int config_set(uint32_t key, GVariant *data, const struct sr_dev_inst *sdi,
53b4680f 110 const struct sr_channel_group *cg)
4d729ddc 111{
a8d09e13 112 struct dev_context *devc;
4d729ddc 113
53b4680f 114 (void)cg;
8f996b89 115
a8d09e13 116 if (sdi->status != SR_ST_ACTIVE)
e73ffd42 117 return SR_ERR_DEV_CLOSED;
a8d09e13
BV
118
119 if (!(devc = sdi->priv)) {
120 sr_err("sdi->priv was NULL.");
121 return SR_ERR_BUG;
4d729ddc
BV
122 }
123
584560f1 124 switch (key) {
1953564a 125 case SR_CONF_LIMIT_MSEC:
a8d09e13 126 /* TODO: not yet implemented */
dccda194 127 devc->limit_msec = g_variant_get_uint64(data);;
a8d09e13 128 break;
1953564a 129 case SR_CONF_LIMIT_SAMPLES:
dccda194 130 devc->limit_samples = g_variant_get_uint64(data);
a8d09e13 131 break;
4d729ddc 132 default:
bd6fbf62 133 return SR_ERR_NA;
4d729ddc
BV
134 }
135
a8d09e13 136 return SR_OK;
4d729ddc
BV
137}
138
584560f1 139static int config_list(uint32_t key, GVariant **data, const struct sr_dev_inst *sdi,
53b4680f 140 const struct sr_channel_group *cg)
a1c743fc 141{
a1c743fc 142 (void)sdi;
53b4680f 143 (void)cg;
a1c743fc
BV
144
145 switch (key) {
0d485e30 146 case SR_CONF_SCAN_OPTIONS:
584560f1 147 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
a0e0bb41 148 scanopts, ARRAY_SIZE(scanopts), sizeof(uint32_t));
0d485e30 149 break;
9a6517d1 150 case SR_CONF_DEVICE_OPTIONS:
584560f1 151 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
f254bc4b 152 devopts, ARRAY_SIZE(devopts), sizeof(uint32_t));
9a6517d1 153 break;
a1c743fc 154 default:
bd6fbf62 155 return SR_ERR_NA;
a1c743fc
BV
156 }
157
158 return SR_OK;
159}
160
695dc859 161static int dev_acquisition_start(const struct sr_dev_inst *sdi)
4d729ddc 162{
aa706635 163 struct sr_serial_dev_inst *serial;
a8d09e13 164
e73ffd42
BV
165 if (sdi->status != SR_ST_ACTIVE)
166 return SR_ERR_DEV_CLOSED;
167
695dc859 168 std_session_send_df_header(sdi, LOG_PREFIX);
a8d09e13 169
a8d09e13 170 /* Poll every 150ms, or whenever some data comes in. */
aa706635 171 serial = sdi->conn;
102f1239
BV
172 serial_source_add(sdi->session, serial, G_IO_IN, 150,
173 colead_slm_receive_data, (void *)sdi);
4d729ddc
BV
174
175 return SR_OK;
176}
177
695dc859 178static int dev_acquisition_stop(struct sr_dev_inst *sdi)
4d729ddc 179{
6525d819 180 return std_serial_dev_acquisition_stop(sdi, std_serial_dev_close,
f6beaac5 181 sdi->conn, LOG_PREFIX);
4d729ddc
BV
182}
183
184SR_PRIV struct sr_dev_driver colead_slm_driver_info = {
185 .name = "colead-slm",
186 .longname = "Colead SLM",
187 .api_version = 1,
6078d2c9
UH
188 .init = init,
189 .cleanup = cleanup,
190 .scan = scan,
191 .dev_list = dev_list,
a6630742 192 .dev_clear = NULL,
6fab7b8f 193 .config_get = NULL,
035a1078 194 .config_set = config_set,
a1c743fc 195 .config_list = config_list,
8f878dc6 196 .dev_open = std_serial_dev_open,
bf2c987f 197 .dev_close = std_serial_dev_close,
6078d2c9
UH
198 .dev_acquisition_start = dev_acquisition_start,
199 .dev_acquisition_stop = dev_acquisition_stop,
41812aca 200 .context = NULL,
4d729ddc 201};