]> sigrok.org Git - libsigrok.git/blame - src/hardware/tondaj-sl-814/api.c
std: Rename std_dev_clear() to std_dev_clear_with_callback().
[libsigrok.git] / src / hardware / tondaj-sl-814 / api.c
CommitLineData
aa2af324 1/*
50985c20 2 * This file is part of the libsigrok project.
aa2af324
UH
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
2ea1fdf1 17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
aa2af324
UH
18 */
19
6ec6c43b 20#include <config.h>
c073af80 21#include <fcntl.h>
aa2af324 22#include <glib.h>
c1aae900 23#include <libsigrok/libsigrok.h>
aa2af324
UH
24#include "libsigrok-internal.h"
25#include "protocol.h"
26
19ee7dff
BV
27#define SERIALCOMM "9600/8e1"
28
a0e0bb41 29static const uint32_t scanopts[] = {
1953564a
BV
30 SR_CONF_CONN,
31 SR_CONF_SERIALCOMM,
c073af80
UH
32};
33
f254bc4b 34static const uint32_t devopts[] = {
1953564a 35 SR_CONF_SOUNDLEVELMETER,
1953564a 36 SR_CONF_CONTINUOUS,
5827f61b 37 SR_CONF_LIMIT_SAMPLES | SR_CONF_SET,
2630f97e 38 SR_CONF_LIMIT_MSEC | SR_CONF_SET,
c073af80
UH
39};
40
4f840ce9 41static GSList *scan(struct sr_dev_driver *di, GSList *options)
aa2af324 42{
c073af80
UH
43 struct dev_context *devc;
44 struct sr_dev_inst *sdi;
1987b8d6 45 struct sr_config *src;
43376f33 46 GSList *l;
c073af80 47 const char *conn, *serialcomm;
a5e44c32 48 struct sr_serial_dev_inst *serial;
aa2af324 49
c073af80
UH
50 conn = serialcomm = NULL;
51 for (l = options; l; l = l->next) {
1987b8d6 52 if (!(src = l->data)) {
c073af80
UH
53 sr_err("Invalid option data, skipping.");
54 continue;
55 }
1987b8d6 56 switch (src->key) {
1953564a 57 case SR_CONF_CONN:
afdf6d6a 58 conn = g_variant_get_string(src->data, NULL);
c073af80 59 break;
1953564a 60 case SR_CONF_SERIALCOMM:
06c45a66 61 serialcomm = g_variant_get_string(src->data, NULL);
c073af80
UH
62 break;
63 default:
1987b8d6 64 sr_err("Unknown option %d, skipping.", src->key);
c073af80
UH
65 break;
66 }
67 }
80bc6632 68 if (!conn)
c073af80 69 return NULL;
19ee7dff
BV
70 if (!serialcomm)
71 serialcomm = SERIALCOMM;
c073af80 72
aac29cc1 73 sdi = g_malloc0(sizeof(struct sr_dev_inst));
0af636be
UH
74 sdi->status = SR_ST_INACTIVE;
75 sdi->vendor = g_strdup("Tondaj");
76 sdi->model = g_strdup("SL-814");
f57d8ffe 77 devc = g_malloc0(sizeof(struct dev_context));
2630f97e 78 sr_sw_limits_init(&devc->limits);
c073af80 79
91219afc 80 serial = sr_serial_dev_inst_new(conn, serialcomm);
c073af80 81
7ef93fb0 82 if (serial_open(serial, SERIAL_RDWR) != SR_OK)
c073af80 83 return NULL;
19ee7dff 84
a5e44c32
UH
85 sdi->inst_type = SR_INST_SERIAL;
86 sdi->conn = serial;
87
c073af80 88 sdi->priv = devc;
5e23fcab 89 sr_channel_new(sdi, 0, SR_CHANNEL_ANALOG, TRUE, "P1");
aa2af324 90
43376f33 91 return std_scan_complete(di, g_slist_append(NULL, sdi));
aa2af324
UH
92}
93
584560f1 94static int config_set(uint32_t key, GVariant *data, const struct sr_dev_inst *sdi,
53b4680f 95 const struct sr_channel_group *cg)
aa2af324 96{
c073af80 97 struct dev_context *devc;
aa2af324 98
53b4680f 99 (void)cg;
8f996b89 100
c073af80
UH
101 devc = sdi->priv;
102
2630f97e 103 return sr_sw_limits_config_set(&devc->limits, key, data);
aa2af324
UH
104}
105
584560f1 106static int config_list(uint32_t key, GVariant **data, const struct sr_dev_inst *sdi,
53b4680f 107 const struct sr_channel_group *cg)
a1c743fc 108{
a1c743fc 109 (void)sdi;
53b4680f 110 (void)cg;
a1c743fc
BV
111
112 switch (key) {
0d485e30 113 case SR_CONF_SCAN_OPTIONS:
584560f1 114 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
a0e0bb41 115 scanopts, ARRAY_SIZE(scanopts), sizeof(uint32_t));
0d485e30 116 break;
9a6517d1 117 case SR_CONF_DEVICE_OPTIONS:
584560f1 118 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
f254bc4b 119 devopts, ARRAY_SIZE(devopts), sizeof(uint32_t));
9a6517d1 120 break;
a1c743fc 121 default:
bd6fbf62 122 return SR_ERR_NA;
a1c743fc
BV
123 }
124
125 return SR_OK;
126}
127
695dc859 128static int dev_acquisition_start(const struct sr_dev_inst *sdi)
aa2af324 129{
2630f97e 130 struct dev_context *devc = sdi->priv;
a5e44c32 131 struct sr_serial_dev_inst *serial;
c073af80 132
bee2b016 133 std_session_send_df_header(sdi);
176d785d 134
2630f97e 135 sr_sw_limits_acquisition_start(&devc->limits);
c073af80 136
c073af80 137 /* Poll every 500ms, or whenever some data comes in. */
a5e44c32 138 serial = sdi->conn;
102f1239 139 serial_source_add(sdi->session, serial, G_IO_IN, 500,
c073af80 140 tondaj_sl_814_receive_data, (void *)sdi);
aa2af324
UH
141
142 return SR_OK;
143}
144
dd5c48a6 145static struct sr_dev_driver tondaj_sl_814_driver_info = {
aa2af324
UH
146 .name = "tondaj-sl-814",
147 .longname = "Tondaj SL-814",
148 .api_version = 1,
c2fdcc25 149 .init = std_init,
700d6b64 150 .cleanup = std_cleanup,
6078d2c9 151 .scan = scan,
c01bf34c 152 .dev_list = std_dev_list,
a6630742 153 .dev_clear = NULL,
6fab7b8f 154 .config_get = NULL,
035a1078 155 .config_set = config_set,
a1c743fc 156 .config_list = config_list,
854434de 157 .dev_open = std_serial_dev_open,
bf2c987f 158 .dev_close = std_serial_dev_close,
6078d2c9 159 .dev_acquisition_start = dev_acquisition_start,
4b1a9d5d 160 .dev_acquisition_stop = std_serial_dev_acquisition_stop,
41812aca 161 .context = NULL,
aa2af324 162};
dd5c48a6 163SR_REGISTER_DEV_DRIVER(tondaj_sl_814_driver_info);