]> sigrok.org Git - libsigrok.git/blame - src/hardware/colead-slm/api.c
Don't reset instance list in scan() callback
[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
4f840ce9 45static GSList *scan(struct sr_dev_driver *di, GSList *options)
4d729ddc
BV
46{
47 struct drv_context *drvc;
a8d09e13
BV
48 struct dev_context *devc;
49 struct sr_dev_inst *sdi;
1987b8d6 50 struct sr_config *src;
a8d09e13
BV
51 GSList *devices, *l;
52 const char *conn, *serialcomm;
4d729ddc 53
41812aca 54 drvc = di->context;
4d729ddc 55
4b97c74e
UH
56 devices = NULL;
57
a8d09e13
BV
58 conn = serialcomm = NULL;
59 for (l = options; l; l = l->next) {
1987b8d6
BV
60 src = l->data;
61 switch (src->key) {
1953564a 62 case SR_CONF_CONN:
dccda194 63 conn = g_variant_get_string(src->data, NULL);
a8d09e13 64 break;
1953564a 65 case SR_CONF_SERIALCOMM:
dccda194 66 serialcomm = g_variant_get_string(src->data, NULL);
a8d09e13
BV
67 break;
68 }
69 }
70 if (!conn)
71 return NULL;
f306ca61
BV
72 if (!serialcomm)
73 serialcomm = SERIALCOMM;
a8d09e13 74
aac29cc1 75 sdi = g_malloc0(sizeof(struct sr_dev_inst));
0af636be
UH
76 sdi->status = SR_ST_INACTIVE;
77 sdi->vendor = g_strdup("Colead");
78 sdi->model = g_strdup("SL-5868P");
f57d8ffe 79 devc = g_malloc0(sizeof(struct dev_context));
9edb9898 80 sr_sw_limits_init(&devc->limits);
91219afc 81 sdi->conn = sr_serial_dev_inst_new(conn, serialcomm);
aa706635 82 sdi->inst_type = SR_INST_SERIAL;
a8d09e13
BV
83 sdi->priv = devc;
84 sdi->driver = di;
5e23fcab 85 sr_channel_new(sdi, 0, SR_CHANNEL_ANALOG, TRUE, "P1");
a8d09e13
BV
86 drvc->instances = g_slist_append(drvc->instances, sdi);
87 devices = g_slist_append(devices, sdi);
4d729ddc
BV
88
89 return devices;
90}
91
584560f1 92static int config_set(uint32_t key, GVariant *data, const struct sr_dev_inst *sdi,
53b4680f 93 const struct sr_channel_group *cg)
4d729ddc 94{
a8d09e13 95 struct dev_context *devc;
4d729ddc 96
53b4680f 97 (void)cg;
8f996b89 98
a8d09e13 99 if (sdi->status != SR_ST_ACTIVE)
e73ffd42 100 return SR_ERR_DEV_CLOSED;
a8d09e13 101
b0baddef 102 devc = sdi->priv;
4d729ddc 103
9edb9898 104 return sr_sw_limits_config_set(&devc->limits, key, data);
4d729ddc
BV
105}
106
584560f1 107static int config_list(uint32_t key, GVariant **data, const struct sr_dev_inst *sdi,
53b4680f 108 const struct sr_channel_group *cg)
a1c743fc 109{
a1c743fc 110 (void)sdi;
53b4680f 111 (void)cg;
a1c743fc
BV
112
113 switch (key) {
0d485e30 114 case SR_CONF_SCAN_OPTIONS:
584560f1 115 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
a0e0bb41 116 scanopts, ARRAY_SIZE(scanopts), sizeof(uint32_t));
0d485e30 117 break;
9a6517d1 118 case SR_CONF_DEVICE_OPTIONS:
584560f1 119 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
f254bc4b 120 devopts, ARRAY_SIZE(devopts), sizeof(uint32_t));
9a6517d1 121 break;
a1c743fc 122 default:
bd6fbf62 123 return SR_ERR_NA;
a1c743fc
BV
124 }
125
126 return SR_OK;
127}
128
695dc859 129static int dev_acquisition_start(const struct sr_dev_inst *sdi)
4d729ddc 130{
9edb9898 131 struct dev_context *devc = sdi->priv;
aa706635 132 struct sr_serial_dev_inst *serial;
a8d09e13 133
e73ffd42
BV
134 if (sdi->status != SR_ST_ACTIVE)
135 return SR_ERR_DEV_CLOSED;
136
9edb9898 137 sr_sw_limits_acquisition_start(&devc->limits);
695dc859 138 std_session_send_df_header(sdi, LOG_PREFIX);
a8d09e13 139
a8d09e13 140 /* Poll every 150ms, or whenever some data comes in. */
aa706635 141 serial = sdi->conn;
102f1239
BV
142 serial_source_add(sdi->session, serial, G_IO_IN, 150,
143 colead_slm_receive_data, (void *)sdi);
4d729ddc
BV
144
145 return SR_OK;
146}
147
695dc859 148static int dev_acquisition_stop(struct sr_dev_inst *sdi)
4d729ddc 149{
6525d819 150 return std_serial_dev_acquisition_stop(sdi, std_serial_dev_close,
f6beaac5 151 sdi->conn, LOG_PREFIX);
4d729ddc
BV
152}
153
dd5c48a6 154static struct sr_dev_driver colead_slm_driver_info = {
4d729ddc
BV
155 .name = "colead-slm",
156 .longname = "Colead SLM",
157 .api_version = 1,
c2fdcc25 158 .init = std_init,
700d6b64 159 .cleanup = std_cleanup,
6078d2c9 160 .scan = scan,
c01bf34c 161 .dev_list = std_dev_list,
a6630742 162 .dev_clear = NULL,
6fab7b8f 163 .config_get = NULL,
035a1078 164 .config_set = config_set,
a1c743fc 165 .config_list = config_list,
8f878dc6 166 .dev_open = std_serial_dev_open,
bf2c987f 167 .dev_close = std_serial_dev_close,
6078d2c9
UH
168 .dev_acquisition_start = dev_acquisition_start,
169 .dev_acquisition_stop = dev_acquisition_stop,
41812aca 170 .context = NULL,
4d729ddc 171};
dd5c48a6 172SR_REGISTER_DEV_DRIVER(colead_slm_driver_info);