mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-30 00:00:11 +01:00
125 lines
2.7 KiB
C
125 lines
2.7 KiB
C
/** Node type: comedi
|
|
*
|
|
* @author Steffen Vogel <stvogel@eonerc.rwth-aachen.de>
|
|
* @copyright 2018, Institute for Automation of Complex Power Systems, EONERC
|
|
* @license GNU General Public License (version 3)
|
|
*
|
|
* VILLASnode
|
|
*
|
|
* 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
|
|
* 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/>.
|
|
*********************************************************************************/
|
|
|
|
#include <string.h>
|
|
|
|
#include <villas/plugin.h>
|
|
#include <villas/nodes/comedi.h>
|
|
#include <villas/utils.h>
|
|
#include <villas/io_format.h>
|
|
|
|
int comedi_parse(struct node *n, json_t *cfg)
|
|
{
|
|
int ret;
|
|
struct comedi *c = (struct comedi *) n->_vd;
|
|
|
|
const char *device;
|
|
|
|
json_error_t err;
|
|
|
|
ret = json_unpack_ex(cfg, &err, 0, "{ s: s }",
|
|
"device", &device
|
|
);
|
|
if (ret)
|
|
jerror(&err, "Failed to parse configuration of node %s", node_name(n));
|
|
|
|
c->device = strdup(device);
|
|
|
|
return 0;
|
|
}
|
|
|
|
char * comedi_print(struct node *n)
|
|
{
|
|
struct comedi *c = (struct comedi *) n->_vd;
|
|
|
|
char *buf = NULL;
|
|
|
|
strcatf(&buf, "device=%s", c->device);
|
|
|
|
return buf;
|
|
}
|
|
|
|
int comedi_start(struct node *n)
|
|
{
|
|
struct comedi *c = (struct comedi *) n->_vd;
|
|
|
|
c->it = comedi_open(c->device);
|
|
if (!c->it) {
|
|
const char *err = comedi_strerror(comedi_errno());
|
|
error("Failed to open device: %s", err);
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
int comedi_stop(struct node *n)
|
|
{
|
|
int ret;
|
|
struct comedi *c = (struct comedi *) n->_vd;
|
|
|
|
ret = comedi_close(c->it);
|
|
if (ret)
|
|
return ret;
|
|
|
|
return 0;
|
|
}
|
|
|
|
int comedi_read(struct node *n, struct sample *smps[], unsigned cnt)
|
|
{
|
|
//struct comedi *c = (struct comedi *) n->_vd;
|
|
|
|
return -1;
|
|
}
|
|
|
|
int comedi_write(struct node *n, struct sample *smps[], unsigned cnt)
|
|
{
|
|
//struct comedi *c = (struct comedi *) n->_vd;
|
|
|
|
return -1;
|
|
}
|
|
|
|
int comedi_fd(struct node *n)
|
|
{
|
|
//struct comedi *c = (struct comedi *) n->_vd;
|
|
|
|
return -1;
|
|
}
|
|
|
|
static struct plugin p = {
|
|
.name = "comedi",
|
|
.description = "Comedi-compatible DAQ/ADC cards",
|
|
.type = PLUGIN_TYPE_NODE,
|
|
.node = {
|
|
.vectorize = 0,
|
|
.size = sizeof(struct comedi),
|
|
.parse = comedi_parse,
|
|
.print = comedi_print,
|
|
.start = comedi_start,
|
|
.stop = comedi_stop,
|
|
.read = comedi_read,
|
|
.write = comedi_write,
|
|
.fd = comedi_fd
|
|
}
|
|
};
|
|
|
|
REGISTER_PLUGIN(&p)
|
|
LIST_INIT_STATIC(&p.node.instances)
|