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