]> sigrok.org Git - libsigrok.git/blame - src/hardware/conrad-digi-35-cpu/api.c
rigol-ds: Fix reading data from internal memory
[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
6ec6c43b 20#include <config.h>
823b4e58
MH
21#include "protocol.h"
22
0294a409
UH
23#define SERIALCOMM "9600/8n1"
24
a0e0bb41 25static const uint32_t scanopts[] = {
c6a2843a
MH
26 SR_CONF_CONN,
27 SR_CONF_SERIALCOMM,
28};
29
05199c0a 30static const uint32_t drvopts[] = {
c6a2843a 31 SR_CONF_POWER_SUPPLY,
05199c0a
UH
32};
33
34static const uint32_t devopts[] = {
0b7c0785
FS
35 SR_CONF_VOLTAGE_TARGET | SR_CONF_SET | SR_CONF_LIST,
36 SR_CONF_CURRENT_LIMIT | SR_CONF_SET | SR_CONF_LIST,
5827f61b 37 SR_CONF_OVER_CURRENT_PROTECTION_ENABLED | SR_CONF_SET,
c6a2843a
MH
38};
39
4f840ce9 40static GSList *scan(struct sr_dev_driver *di, GSList *options)
823b4e58 41{
eea57607 42 struct dev_context *devc;
c6a2843a 43 struct sr_dev_inst *sdi;
c6a2843a 44 struct sr_config *src;
c6a2843a 45 struct sr_serial_dev_inst *serial;
43376f33 46 GSList *l;
c6a2843a 47 const char *conn, *serialcomm;
823b4e58 48
c6a2843a
MH
49 conn = serialcomm = NULL;
50
51 for (l = options; l; l = l->next) {
52 src = l->data;
53 switch (src->key) {
54 case SR_CONF_CONN:
55 conn = g_variant_get_string(src->data, NULL);
56 break;
57 case SR_CONF_SERIALCOMM:
58 serialcomm = g_variant_get_string(src->data, NULL);
59 break;
60 }
61 }
62 if (!conn)
63 return NULL;
64 if (!serialcomm)
65 serialcomm = SERIALCOMM;
66
0294a409
UH
67 /*
68 * We cannot scan for this device because it is write-only.
c6a2843a 69 * So just check that the port parameters are valid and assume that
0294a409
UH
70 * the device is there.
71 */
c6a2843a 72
91219afc 73 serial = sr_serial_dev_inst_new(conn, serialcomm);
c6a2843a 74
0ac161bb 75 if (serial_open(serial, SERIAL_RDWR) != SR_OK)
c6a2843a 76 return NULL;
823b4e58 77
c6a2843a
MH
78 serial_flush(serial);
79 serial_close(serial);
80
0294a409 81 sr_spew("Conrad DIGI 35 CPU assumed at %s.", conn);
c6a2843a 82
aac29cc1 83 sdi = g_malloc0(sizeof(struct sr_dev_inst));
45884333 84 sdi->status = SR_ST_INACTIVE;
0af636be
UH
85 sdi->vendor = g_strdup("Conrad");
86 sdi->model = g_strdup("DIGI 35 CPU");
eea57607
FS
87 devc = g_malloc0(sizeof(struct dev_context));
88 sr_sw_limits_init(&devc->limits);
89 sdi->inst_type = SR_INST_SERIAL;
c6a2843a 90 sdi->conn = serial;
eea57607 91 sdi->priv = devc;
5e23fcab 92 sr_channel_new(sdi, 0, SR_CHANNEL_ANALOG, TRUE, "CH1");
823b4e58 93
43376f33 94 return std_scan_complete(di, g_slist_append(NULL, sdi));
823b4e58
MH
95}
96
dd7a72ea
UH
97static int config_set(uint32_t key, GVariant *data,
98 const struct sr_dev_inst *sdi, const struct sr_channel_group *cg)
823b4e58 99{
c6a2843a 100 double dblval;
823b4e58 101
53b4680f 102 (void)cg;
823b4e58 103
823b4e58 104 switch (key) {
57837aed 105 case SR_CONF_VOLTAGE_TARGET:
c6a2843a
MH
106 dblval = g_variant_get_double(data);
107 if ((dblval < 0.0) || (dblval > 35.0)) {
108 sr_err("Voltage out of range (0 - 35.0)!");
109 return SR_ERR_ARG;
110 }
758906aa 111 return send_msg1(sdi, 'V', (int) (dblval * 10 + 0.5));
57837aed 112 case SR_CONF_CURRENT_LIMIT:
c6a2843a 113 dblval = g_variant_get_double(data);
0b7c0785 114 if ((dblval < 0.00) || (dblval > 2.55)) {
c6a2843a
MH
115 sr_err("Current out of range (0 - 2.55)!");
116 return SR_ERR_ARG;
117 }
758906aa 118 return send_msg1(sdi, 'C', (int) (dblval * 100 + 0.5));
a1eaa9e0 119 case SR_CONF_OVER_CURRENT_PROTECTION_ENABLED:
c6a2843a 120 if (g_variant_get_boolean(data))
758906aa 121 return send_msg1(sdi, 'V', 900);
c6a2843a 122 else /* Constant current mode */
758906aa 123 return send_msg1(sdi, 'V', 901);
823b4e58 124 default:
758906aa 125 return SR_ERR_NA;
823b4e58
MH
126 }
127
758906aa 128 return SR_OK;
823b4e58
MH
129}
130
dd7a72ea
UH
131static int config_list(uint32_t key, GVariant **data,
132 const struct sr_dev_inst *sdi, const struct sr_channel_group *cg)
823b4e58 133{
0b7c0785
FS
134 switch (key) {
135 case SR_CONF_SCAN_OPTIONS:
136 case SR_CONF_DEVICE_OPTIONS:
137 return STD_CONFIG_LIST(key, data, sdi, cg, scanopts, drvopts, devopts);
138 case SR_CONF_VOLTAGE_TARGET:
139 *data = std_gvar_min_max_step(0.0, 35.0, 0.1);
140 break;
141 case SR_CONF_CURRENT_LIMIT:
142 *data = std_gvar_min_max_step(0.0, 2.55, 0.01);
143 break;
144 default:
145 return SR_ERR_NA;
146 }
147
148 return SR_OK;
823b4e58
MH
149}
150
dd5c48a6 151static struct sr_dev_driver conrad_digi_35_cpu_driver_info = {
823b4e58
MH
152 .name = "conrad-digi-35-cpu",
153 .longname = "Conrad DIGI 35 CPU",
154 .api_version = 1,
c2fdcc25 155 .init = std_init,
700d6b64 156 .cleanup = std_cleanup,
823b4e58 157 .scan = scan,
c01bf34c 158 .dev_list = std_dev_list,
f778bf02 159 .dev_clear = std_dev_clear,
c6a2843a 160 .config_get = NULL,
823b4e58
MH
161 .config_set = config_set,
162 .config_list = config_list,
c6a2843a
MH
163 .dev_open = std_serial_dev_open,
164 .dev_close = std_serial_dev_close,
4d67b9d9
UH
165 .dev_acquisition_start = std_dummy_dev_acquisition_start,
166 .dev_acquisition_stop = std_dummy_dev_acquisition_stop,
41812aca 167 .context = NULL,
823b4e58 168};
dd5c48a6 169SR_REGISTER_DEV_DRIVER(conrad_digi_35_cpu_driver_info);