]> sigrok.org Git - libsigrok.git/blame - src/hardware/conrad-digi-35-cpu/api.c
Put driver pointers into special section
[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
4f840ce9 42static GSList *scan(struct sr_dev_driver *di, GSList *options)
823b4e58 43{
c6a2843a 44 struct sr_dev_inst *sdi;
823b4e58 45 struct drv_context *drvc;
c6a2843a 46 struct sr_config *src;
c6a2843a
MH
47 struct sr_serial_dev_inst *serial;
48 GSList *l, *devices;
49 const char *conn, *serialcomm;
823b4e58
MH
50
51 devices = NULL;
41812aca 52 drvc = di->context;
823b4e58 53 drvc->instances = NULL;
c6a2843a
MH
54 conn = serialcomm = NULL;
55
56 for (l = options; l; l = l->next) {
57 src = l->data;
58 switch (src->key) {
59 case SR_CONF_CONN:
60 conn = g_variant_get_string(src->data, NULL);
61 break;
62 case SR_CONF_SERIALCOMM:
63 serialcomm = g_variant_get_string(src->data, NULL);
64 break;
65 }
66 }
67 if (!conn)
68 return NULL;
69 if (!serialcomm)
70 serialcomm = SERIALCOMM;
71
0294a409
UH
72 /*
73 * We cannot scan for this device because it is write-only.
c6a2843a 74 * So just check that the port parameters are valid and assume that
0294a409
UH
75 * the device is there.
76 */
c6a2843a 77
91219afc 78 serial = sr_serial_dev_inst_new(conn, serialcomm);
c6a2843a 79
0ac161bb 80 if (serial_open(serial, SERIAL_RDWR) != SR_OK)
c6a2843a 81 return NULL;
823b4e58 82
c6a2843a
MH
83 serial_flush(serial);
84 serial_close(serial);
85
0294a409 86 sr_spew("Conrad DIGI 35 CPU assumed at %s.", conn);
c6a2843a 87
aac29cc1 88 sdi = g_malloc0(sizeof(struct sr_dev_inst));
45884333 89 sdi->status = SR_ST_INACTIVE;
0af636be
UH
90 sdi->vendor = g_strdup("Conrad");
91 sdi->model = g_strdup("DIGI 35 CPU");
c6a2843a
MH
92 sdi->conn = serial;
93 sdi->priv = NULL;
94 sdi->driver = di;
5e23fcab 95 sr_channel_new(sdi, 0, SR_CHANNEL_ANALOG, TRUE, "CH1");
c6a2843a
MH
96 drvc->instances = g_slist_append(drvc->instances, sdi);
97 devices = g_slist_append(devices, sdi);
823b4e58
MH
98
99 return devices;
100}
101
584560f1 102static int config_set(uint32_t key, GVariant *data, const struct sr_dev_inst *sdi,
53b4680f 103 const struct sr_channel_group *cg)
823b4e58
MH
104{
105 int ret;
c6a2843a 106 double dblval;
823b4e58 107
53b4680f 108 (void)cg;
823b4e58
MH
109
110 if (sdi->status != SR_ST_ACTIVE)
111 return SR_ERR_DEV_CLOSED;
112
823b4e58 113 switch (key) {
7a0b98b5 114 case SR_CONF_VOLTAGE:
c6a2843a
MH
115 dblval = g_variant_get_double(data);
116 if ((dblval < 0.0) || (dblval > 35.0)) {
117 sr_err("Voltage out of range (0 - 35.0)!");
118 return SR_ERR_ARG;
119 }
120 ret = send_msg1(sdi, 'V', (int) (dblval * 10 + 0.5));
121 break;
7a0b98b5 122 case SR_CONF_CURRENT:
c6a2843a
MH
123 dblval = g_variant_get_double(data);
124 if ((dblval < 0.01) || (dblval > 2.55)) {
125 sr_err("Current out of range (0 - 2.55)!");
126 return SR_ERR_ARG;
127 }
128 ret = send_msg1(sdi, 'C', (int) (dblval * 100 + 0.5));
129 break;
a1eaa9e0 130 case SR_CONF_OVER_CURRENT_PROTECTION_ENABLED:
c6a2843a
MH
131 if (g_variant_get_boolean(data))
132 ret = send_msg1(sdi, 'V', 900);
133 else /* Constant current mode */
134 ret = send_msg1(sdi, 'V', 901);
135 break;
823b4e58
MH
136 default:
137 ret = SR_ERR_NA;
138 }
139
140 return ret;
141}
142
584560f1 143static int config_list(uint32_t key, GVariant **data, const struct sr_dev_inst *sdi,
53b4680f 144 const struct sr_channel_group *cg)
823b4e58
MH
145{
146 int ret;
147
148 (void)sdi;
53b4680f 149 (void)cg;
823b4e58
MH
150
151 ret = SR_OK;
152 switch (key) {
c6a2843a 153 case SR_CONF_SCAN_OPTIONS:
584560f1 154 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
a0e0bb41 155 scanopts, ARRAY_SIZE(scanopts), sizeof(uint32_t));
c6a2843a
MH
156 break;
157 case SR_CONF_DEVICE_OPTIONS:
584560f1 158 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
f254bc4b 159 devopts, ARRAY_SIZE(devopts), sizeof(uint32_t));
c6a2843a 160 break;
823b4e58
MH
161 default:
162 return SR_ERR_NA;
163 }
164
165 return ret;
166}
167
695dc859 168static int dev_acquisition_start(const struct sr_dev_inst *sdi)
823b4e58 169{
823b4e58
MH
170 if (sdi->status != SR_ST_ACTIVE)
171 return SR_ERR_DEV_CLOSED;
172
823b4e58
MH
173 return SR_OK;
174}
175
695dc859 176static int dev_acquisition_stop(struct sr_dev_inst *sdi)
823b4e58 177{
823b4e58
MH
178 if (sdi->status != SR_ST_ACTIVE)
179 return SR_ERR_DEV_CLOSED;
180
823b4e58
MH
181 return SR_OK;
182}
183
dd5c48a6 184static struct sr_dev_driver conrad_digi_35_cpu_driver_info = {
823b4e58
MH
185 .name = "conrad-digi-35-cpu",
186 .longname = "Conrad DIGI 35 CPU",
187 .api_version = 1,
c2fdcc25 188 .init = std_init,
700d6b64 189 .cleanup = std_cleanup,
823b4e58 190 .scan = scan,
c01bf34c 191 .dev_list = std_dev_list,
a6630742 192 .dev_clear = NULL,
c6a2843a 193 .config_get = NULL,
823b4e58
MH
194 .config_set = config_set,
195 .config_list = config_list,
c6a2843a
MH
196 .dev_open = std_serial_dev_open,
197 .dev_close = std_serial_dev_close,
0294a409
UH
198 .dev_acquisition_start = dev_acquisition_start,
199 .dev_acquisition_stop = dev_acquisition_stop,
41812aca 200 .context = NULL,
823b4e58 201};
dd5c48a6 202SR_REGISTER_DEV_DRIVER(conrad_digi_35_cpu_driver_info);