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