]> sigrok.org Git - libsigrok.git/blame - src/hardware/conrad-digi-35-cpu/api.c
Fix a few "value never read" scan-build warnings.
[libsigrok.git] / src / hardware / conrad-digi-35-cpu / api.c
CommitLineData
823b4e58
MH
1/*
2 * This file is part of the libsigrok project.
3 *
4 * Copyright (C) 2014 Matthias Heidbrink <m-sigrok@heidbrink.biz>
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
c6a2843a
MH
20/** @file
21 * <em>Conrad DIGI 35 CPU</em> power supply driver
22 * @internal
23 */
24
6ec6c43b 25#include <config.h>
823b4e58
MH
26#include "protocol.h"
27
0294a409
UH
28#define SERIALCOMM "9600/8n1"
29
a0e0bb41 30static const uint32_t scanopts[] = {
c6a2843a
MH
31 SR_CONF_CONN,
32 SR_CONF_SERIALCOMM,
33};
34
f254bc4b 35static const uint32_t devopts[] = {
c6a2843a 36 SR_CONF_POWER_SUPPLY,
7a0b98b5
AJ
37 SR_CONF_VOLTAGE | SR_CONF_SET,
38 SR_CONF_CURRENT | SR_CONF_SET,
5827f61b 39 SR_CONF_OVER_CURRENT_PROTECTION_ENABLED | SR_CONF_SET,
c6a2843a
MH
40};
41
823b4e58 42SR_PRIV struct sr_dev_driver conrad_digi_35_cpu_driver_info;
823b4e58 43
4f840ce9 44static int init(struct sr_dev_driver *di, struct sr_context *sr_ctx)
823b4e58
MH
45{
46 return std_init(sr_ctx, di, LOG_PREFIX);
47}
48
4f840ce9 49static GSList *scan(struct sr_dev_driver *di, GSList *options)
823b4e58 50{
c6a2843a 51 struct sr_dev_inst *sdi;
823b4e58 52 struct drv_context *drvc;
c6a2843a 53 struct sr_config *src;
c6a2843a
MH
54 struct sr_serial_dev_inst *serial;
55 GSList *l, *devices;
56 const char *conn, *serialcomm;
823b4e58
MH
57
58 devices = NULL;
41812aca 59 drvc = di->context;
823b4e58 60 drvc->instances = NULL;
c6a2843a
MH
61 conn = serialcomm = NULL;
62
63 for (l = options; l; l = l->next) {
64 src = l->data;
65 switch (src->key) {
66 case SR_CONF_CONN:
67 conn = g_variant_get_string(src->data, NULL);
68 break;
69 case SR_CONF_SERIALCOMM:
70 serialcomm = g_variant_get_string(src->data, NULL);
71 break;
72 }
73 }
74 if (!conn)
75 return NULL;
76 if (!serialcomm)
77 serialcomm = SERIALCOMM;
78
0294a409
UH
79 /*
80 * We cannot scan for this device because it is write-only.
c6a2843a 81 * So just check that the port parameters are valid and assume that
0294a409
UH
82 * the device is there.
83 */
c6a2843a 84
91219afc 85 serial = sr_serial_dev_inst_new(conn, serialcomm);
c6a2843a 86
0ac161bb 87 if (serial_open(serial, SERIAL_RDWR) != SR_OK)
c6a2843a 88 return NULL;
823b4e58 89
c6a2843a
MH
90 serial_flush(serial);
91 serial_close(serial);
92
0294a409 93 sr_spew("Conrad DIGI 35 CPU assumed at %s.", conn);
c6a2843a 94
aac29cc1 95 sdi = g_malloc0(sizeof(struct sr_dev_inst));
0af636be
UH
96 sdi->status = SR_ST_ACTIVE;
97 sdi->vendor = g_strdup("Conrad");
98 sdi->model = g_strdup("DIGI 35 CPU");
c6a2843a
MH
99 sdi->conn = serial;
100 sdi->priv = NULL;
101 sdi->driver = di;
5e23fcab 102 sr_channel_new(sdi, 0, SR_CHANNEL_ANALOG, TRUE, "CH1");
c6a2843a
MH
103 drvc->instances = g_slist_append(drvc->instances, sdi);
104 devices = g_slist_append(devices, sdi);
823b4e58
MH
105
106 return devices;
107}
108
4f840ce9 109static GSList *dev_list(const struct sr_dev_driver *di)
823b4e58 110{
41812aca 111 return ((struct drv_context *)(di->context))->instances;
823b4e58
MH
112}
113
4f840ce9 114static int cleanup(const struct sr_dev_driver *di)
823b4e58 115{
a6630742 116 return std_dev_clear(di, NULL);
823b4e58
MH
117}
118
584560f1 119static int config_set(uint32_t key, GVariant *data, const struct sr_dev_inst *sdi,
53b4680f 120 const struct sr_channel_group *cg)
823b4e58
MH
121{
122 int ret;
c6a2843a 123 double dblval;
823b4e58 124
53b4680f 125 (void)cg;
823b4e58
MH
126
127 if (sdi->status != SR_ST_ACTIVE)
128 return SR_ERR_DEV_CLOSED;
129
823b4e58 130 switch (key) {
7a0b98b5 131 case SR_CONF_VOLTAGE:
c6a2843a
MH
132 dblval = g_variant_get_double(data);
133 if ((dblval < 0.0) || (dblval > 35.0)) {
134 sr_err("Voltage out of range (0 - 35.0)!");
135 return SR_ERR_ARG;
136 }
137 ret = send_msg1(sdi, 'V', (int) (dblval * 10 + 0.5));
138 break;
7a0b98b5 139 case SR_CONF_CURRENT:
c6a2843a
MH
140 dblval = g_variant_get_double(data);
141 if ((dblval < 0.01) || (dblval > 2.55)) {
142 sr_err("Current out of range (0 - 2.55)!");
143 return SR_ERR_ARG;
144 }
145 ret = send_msg1(sdi, 'C', (int) (dblval * 100 + 0.5));
146 break;
a1eaa9e0 147 case SR_CONF_OVER_CURRENT_PROTECTION_ENABLED:
c6a2843a
MH
148 if (g_variant_get_boolean(data))
149 ret = send_msg1(sdi, 'V', 900);
150 else /* Constant current mode */
151 ret = send_msg1(sdi, 'V', 901);
152 break;
823b4e58
MH
153 default:
154 ret = SR_ERR_NA;
155 }
156
157 return ret;
158}
159
584560f1 160static int config_list(uint32_t key, GVariant **data, const struct sr_dev_inst *sdi,
53b4680f 161 const struct sr_channel_group *cg)
823b4e58
MH
162{
163 int ret;
164
165 (void)sdi;
53b4680f 166 (void)cg;
823b4e58
MH
167
168 ret = SR_OK;
169 switch (key) {
c6a2843a 170 case SR_CONF_SCAN_OPTIONS:
584560f1 171 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
a0e0bb41 172 scanopts, ARRAY_SIZE(scanopts), sizeof(uint32_t));
c6a2843a
MH
173 break;
174 case SR_CONF_DEVICE_OPTIONS:
584560f1 175 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
f254bc4b 176 devopts, ARRAY_SIZE(devopts), sizeof(uint32_t));
c6a2843a 177 break;
823b4e58
MH
178 default:
179 return SR_ERR_NA;
180 }
181
182 return ret;
183}
184
0294a409 185static int dev_acquisition_start(const struct sr_dev_inst *sdi, void *cb_data)
823b4e58 186{
823b4e58
MH
187 (void)cb_data;
188
189 if (sdi->status != SR_ST_ACTIVE)
190 return SR_ERR_DEV_CLOSED;
191
823b4e58
MH
192 return SR_OK;
193}
194
0294a409 195static int dev_acquisition_stop(struct sr_dev_inst *sdi, void *cb_data)
823b4e58
MH
196{
197 (void)cb_data;
198
199 if (sdi->status != SR_ST_ACTIVE)
200 return SR_ERR_DEV_CLOSED;
201
823b4e58
MH
202 return SR_OK;
203}
204
205SR_PRIV struct sr_dev_driver conrad_digi_35_cpu_driver_info = {
206 .name = "conrad-digi-35-cpu",
207 .longname = "Conrad DIGI 35 CPU",
208 .api_version = 1,
209 .init = init,
210 .cleanup = cleanup,
211 .scan = scan,
212 .dev_list = dev_list,
a6630742 213 .dev_clear = NULL,
c6a2843a 214 .config_get = NULL,
823b4e58
MH
215 .config_set = config_set,
216 .config_list = config_list,
c6a2843a
MH
217 .dev_open = std_serial_dev_open,
218 .dev_close = std_serial_dev_close,
0294a409
UH
219 .dev_acquisition_start = dev_acquisition_start,
220 .dev_acquisition_stop = dev_acquisition_stop,
41812aca 221 .context = NULL,
823b4e58 222};