2014-02-05 18:50:46 +00:00
|
|
|
/*
|
|
|
|
* This file is part of the libsigrok project.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2014 Matthias Heidbrink <m-sigrok@heidbrink.biz>
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2014-02-08 13:26:26 +00:00
|
|
|
/** @file
|
|
|
|
* <em>Conrad DIGI 35 CPU</em> power supply driver
|
|
|
|
* @internal
|
|
|
|
*/
|
|
|
|
|
2014-02-05 18:50:46 +00:00
|
|
|
#include "protocol.h"
|
|
|
|
|
2014-02-12 14:13:41 +00:00
|
|
|
#define SERIALCOMM "9600/8n1"
|
|
|
|
|
2014-02-08 13:26:26 +00:00
|
|
|
static const int32_t hwopts[] = {
|
|
|
|
SR_CONF_CONN,
|
|
|
|
SR_CONF_SERIALCOMM,
|
|
|
|
};
|
|
|
|
|
|
|
|
static const int32_t hwcaps[] = {
|
|
|
|
SR_CONF_POWER_SUPPLY,
|
|
|
|
SR_CONF_OUTPUT_VOLTAGE,
|
|
|
|
SR_CONF_OUTPUT_CURRENT,
|
2014-02-12 14:13:41 +00:00
|
|
|
/* There's no SR_CONF_OUTPUT_ENABLED; can't know/set status remotely. */
|
2014-02-08 13:26:26 +00:00
|
|
|
SR_CONF_OVER_CURRENT_PROTECTION,
|
|
|
|
};
|
|
|
|
|
2014-02-05 18:50:46 +00:00
|
|
|
SR_PRIV struct sr_dev_driver conrad_digi_35_cpu_driver_info;
|
|
|
|
static struct sr_dev_driver *di = &conrad_digi_35_cpu_driver_info;
|
|
|
|
|
|
|
|
static int init(struct sr_context *sr_ctx)
|
|
|
|
{
|
|
|
|
return std_init(sr_ctx, di, LOG_PREFIX);
|
|
|
|
}
|
|
|
|
|
|
|
|
static GSList *scan(GSList *options)
|
|
|
|
{
|
2014-02-08 13:26:26 +00:00
|
|
|
struct sr_dev_inst *sdi;
|
2014-02-05 18:50:46 +00:00
|
|
|
struct drv_context *drvc;
|
2014-02-08 13:26:26 +00:00
|
|
|
struct sr_config *src;
|
2014-03-24 20:34:20 +00:00
|
|
|
struct sr_channel *ch;
|
2014-02-08 13:26:26 +00:00
|
|
|
struct sr_serial_dev_inst *serial;
|
|
|
|
GSList *l, *devices;
|
|
|
|
const char *conn, *serialcomm;
|
2014-02-05 18:50:46 +00:00
|
|
|
|
|
|
|
devices = NULL;
|
|
|
|
drvc = di->priv;
|
|
|
|
drvc->instances = NULL;
|
2014-02-08 13:26:26 +00:00
|
|
|
conn = serialcomm = NULL;
|
|
|
|
|
|
|
|
for (l = options; l; l = l->next) {
|
|
|
|
src = l->data;
|
|
|
|
switch (src->key) {
|
|
|
|
case SR_CONF_CONN:
|
|
|
|
conn = g_variant_get_string(src->data, NULL);
|
|
|
|
break;
|
|
|
|
case SR_CONF_SERIALCOMM:
|
|
|
|
serialcomm = g_variant_get_string(src->data, NULL);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!conn)
|
|
|
|
return NULL;
|
|
|
|
if (!serialcomm)
|
|
|
|
serialcomm = SERIALCOMM;
|
|
|
|
|
2014-02-12 14:13:41 +00:00
|
|
|
/*
|
|
|
|
* We cannot scan for this device because it is write-only.
|
2014-02-08 13:26:26 +00:00
|
|
|
* So just check that the port parameters are valid and assume that
|
2014-02-12 14:13:41 +00:00
|
|
|
* the device is there.
|
|
|
|
*/
|
2014-02-08 13:26:26 +00:00
|
|
|
|
|
|
|
if (!(serial = sr_serial_dev_inst_new(conn, serialcomm)))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (serial_open(serial, SERIAL_RDWR | SERIAL_NONBLOCK) != SR_OK)
|
|
|
|
return NULL;
|
2014-02-05 18:50:46 +00:00
|
|
|
|
2014-02-08 13:26:26 +00:00
|
|
|
serial_flush(serial);
|
|
|
|
serial_close(serial);
|
|
|
|
|
2014-02-12 14:13:41 +00:00
|
|
|
sr_spew("Conrad DIGI 35 CPU assumed at %s.", conn);
|
2014-02-08 13:26:26 +00:00
|
|
|
|
|
|
|
if (!(sdi = sr_dev_inst_new(0, SR_ST_ACTIVE, "Conrad", "DIGI 35 CPU", "")))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
sdi->conn = serial;
|
|
|
|
sdi->priv = NULL;
|
|
|
|
sdi->driver = di;
|
2014-03-24 20:34:20 +00:00
|
|
|
if (!(ch = sr_probe_new(0, SR_PROBE_ANALOG, TRUE, "CH1")))
|
2014-02-08 13:26:26 +00:00
|
|
|
return NULL;
|
2014-03-24 20:34:20 +00:00
|
|
|
sdi->channels = g_slist_append(sdi->channels, ch);
|
2014-02-08 13:26:26 +00:00
|
|
|
|
|
|
|
drvc->instances = g_slist_append(drvc->instances, sdi);
|
|
|
|
devices = g_slist_append(devices, sdi);
|
2014-02-05 18:50:46 +00:00
|
|
|
|
|
|
|
return devices;
|
|
|
|
}
|
|
|
|
|
|
|
|
static GSList *dev_list(void)
|
|
|
|
{
|
|
|
|
return ((struct drv_context *)(di->priv))->instances;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int cleanup(void)
|
|
|
|
{
|
2014-02-26 20:37:18 +00:00
|
|
|
return std_dev_clear(di, NULL);
|
2014-02-05 18:50:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int config_set(int key, GVariant *data, const struct sr_dev_inst *sdi,
|
2014-03-20 20:58:01 +00:00
|
|
|
const struct sr_channel_group *cg)
|
2014-02-05 18:50:46 +00:00
|
|
|
{
|
|
|
|
int ret;
|
2014-02-08 13:26:26 +00:00
|
|
|
double dblval;
|
2014-02-05 18:50:46 +00:00
|
|
|
|
2014-03-20 20:58:01 +00:00
|
|
|
(void)cg;
|
2014-02-05 18:50:46 +00:00
|
|
|
|
|
|
|
if (sdi->status != SR_ST_ACTIVE)
|
|
|
|
return SR_ERR_DEV_CLOSED;
|
|
|
|
|
|
|
|
ret = SR_OK;
|
|
|
|
switch (key) {
|
2014-02-08 13:26:26 +00:00
|
|
|
case SR_CONF_OUTPUT_VOLTAGE:
|
|
|
|
dblval = g_variant_get_double(data);
|
|
|
|
if ((dblval < 0.0) || (dblval > 35.0)) {
|
|
|
|
sr_err("Voltage out of range (0 - 35.0)!");
|
|
|
|
return SR_ERR_ARG;
|
|
|
|
}
|
|
|
|
ret = send_msg1(sdi, 'V', (int) (dblval * 10 + 0.5));
|
|
|
|
break;
|
|
|
|
case SR_CONF_OUTPUT_CURRENT:
|
|
|
|
dblval = g_variant_get_double(data);
|
|
|
|
if ((dblval < 0.01) || (dblval > 2.55)) {
|
|
|
|
sr_err("Current out of range (0 - 2.55)!");
|
|
|
|
return SR_ERR_ARG;
|
|
|
|
}
|
|
|
|
ret = send_msg1(sdi, 'C', (int) (dblval * 100 + 0.5));
|
|
|
|
break;
|
|
|
|
/* No SR_CONF_OUTPUT_ENABLED :-( . */
|
|
|
|
case SR_CONF_OVER_CURRENT_PROTECTION:
|
|
|
|
if (g_variant_get_boolean(data))
|
|
|
|
ret = send_msg1(sdi, 'V', 900);
|
|
|
|
else /* Constant current mode */
|
|
|
|
ret = send_msg1(sdi, 'V', 901);
|
|
|
|
break;
|
2014-02-05 18:50:46 +00:00
|
|
|
default:
|
|
|
|
ret = SR_ERR_NA;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int config_list(int key, GVariant **data, const struct sr_dev_inst *sdi,
|
2014-03-20 20:58:01 +00:00
|
|
|
const struct sr_channel_group *cg)
|
2014-02-05 18:50:46 +00:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
(void)sdi;
|
2014-03-20 20:58:01 +00:00
|
|
|
(void)cg;
|
2014-02-05 18:50:46 +00:00
|
|
|
|
|
|
|
ret = SR_OK;
|
|
|
|
switch (key) {
|
2014-02-08 13:26:26 +00:00
|
|
|
case SR_CONF_SCAN_OPTIONS:
|
|
|
|
*data = g_variant_new_fixed_array(G_VARIANT_TYPE_INT32,
|
|
|
|
hwopts, ARRAY_SIZE(hwopts), sizeof(int32_t));
|
|
|
|
break;
|
|
|
|
case SR_CONF_DEVICE_OPTIONS:
|
|
|
|
*data = g_variant_new_fixed_array(G_VARIANT_TYPE_INT32,
|
|
|
|
hwcaps, ARRAY_SIZE(hwcaps), sizeof(int32_t));
|
|
|
|
break;
|
2014-02-05 18:50:46 +00:00
|
|
|
default:
|
|
|
|
return SR_ERR_NA;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2014-02-12 14:13:41 +00:00
|
|
|
static int dev_acquisition_start(const struct sr_dev_inst *sdi, void *cb_data)
|
2014-02-05 18:50:46 +00:00
|
|
|
{
|
|
|
|
(void)cb_data;
|
|
|
|
|
|
|
|
if (sdi->status != SR_ST_ACTIVE)
|
|
|
|
return SR_ERR_DEV_CLOSED;
|
|
|
|
|
|
|
|
return SR_OK;
|
|
|
|
}
|
|
|
|
|
2014-02-12 14:13:41 +00:00
|
|
|
static int dev_acquisition_stop(struct sr_dev_inst *sdi, void *cb_data)
|
2014-02-05 18:50:46 +00:00
|
|
|
{
|
|
|
|
(void)cb_data;
|
|
|
|
|
|
|
|
if (sdi->status != SR_ST_ACTIVE)
|
|
|
|
return SR_ERR_DEV_CLOSED;
|
|
|
|
|
|
|
|
return SR_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
SR_PRIV struct sr_dev_driver conrad_digi_35_cpu_driver_info = {
|
|
|
|
.name = "conrad-digi-35-cpu",
|
|
|
|
.longname = "Conrad DIGI 35 CPU",
|
|
|
|
.api_version = 1,
|
|
|
|
.init = init,
|
|
|
|
.cleanup = cleanup,
|
|
|
|
.scan = scan,
|
|
|
|
.dev_list = dev_list,
|
2014-02-26 20:37:18 +00:00
|
|
|
.dev_clear = NULL,
|
2014-02-08 13:26:26 +00:00
|
|
|
.config_get = NULL,
|
2014-02-05 18:50:46 +00:00
|
|
|
.config_set = config_set,
|
|
|
|
.config_list = config_list,
|
2014-02-08 13:26:26 +00:00
|
|
|
.dev_open = std_serial_dev_open,
|
|
|
|
.dev_close = std_serial_dev_close,
|
2014-02-12 14:13:41 +00:00
|
|
|
.dev_acquisition_start = dev_acquisition_start,
|
|
|
|
.dev_acquisition_stop = dev_acquisition_stop,
|
2014-02-05 18:50:46 +00:00
|
|
|
.priv = NULL,
|
|
|
|
};
|