2018-09-24 21:30:57 +02:00
|
|
|
/** Node-type for uldaq connections.
|
|
|
|
*
|
|
|
|
* @file
|
|
|
|
* @author Manuel Pitz <manuel.pitz@eonerc.rwth-aachen.de>
|
|
|
|
* @author Steffen Vogel <stvogel@eonerc.rwth-aachen.de>
|
2020-01-20 17:17:00 +01:00
|
|
|
* @copyright 2014-2020, Institute for Automation of Complex Power Systems, EONERC
|
2018-09-24 21:30:57 +02:00
|
|
|
* @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/>.
|
|
|
|
*********************************************************************************/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @ingroup node
|
|
|
|
* @addtogroup uldaq Read USB analog to digital converters
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2018-09-25 20:27:01 +02:00
|
|
|
#include <pthread.h>
|
|
|
|
|
2018-09-24 21:30:57 +02:00
|
|
|
#include <villas/queue_signalled.h>
|
|
|
|
#include <villas/pool.h>
|
|
|
|
|
2018-09-24 22:28:51 +02:00
|
|
|
#include <uldaq.h>
|
|
|
|
|
2018-09-25 09:55:38 +02:00
|
|
|
#define ULDAQ_MAX_DEV_COUNT 100
|
|
|
|
#define ULDAQ_MAX_RANGE_COUNT 8
|
|
|
|
|
2018-09-24 22:28:51 +02:00
|
|
|
struct uldaq {
|
2018-10-04 03:00:14 +02:00
|
|
|
const char *device_id;
|
|
|
|
|
2018-09-25 09:55:38 +02:00
|
|
|
DaqDeviceHandle device_handle;
|
2018-10-04 03:00:14 +02:00
|
|
|
DaqDeviceDescriptor *device_descriptor;
|
2018-09-25 09:55:38 +02:00
|
|
|
DaqDeviceInterface device_interface_type;
|
|
|
|
|
2018-09-25 21:46:42 +02:00
|
|
|
uint64_t sequence;
|
|
|
|
|
2018-09-24 22:28:51 +02:00
|
|
|
struct {
|
2018-09-25 09:55:38 +02:00
|
|
|
double sample_rate;
|
2018-09-25 20:27:01 +02:00
|
|
|
double *buffer;
|
2018-10-04 03:00:14 +02:00
|
|
|
size_t buffer_len;
|
|
|
|
size_t buffer_pos;
|
|
|
|
size_t channel_count;
|
2018-09-25 09:55:38 +02:00
|
|
|
|
|
|
|
ScanOption scan_options;
|
|
|
|
AInScanFlag flags;
|
|
|
|
AiQueueElement *queues;
|
2018-09-25 20:27:01 +02:00
|
|
|
ScanStatus status; // protected by mutex
|
|
|
|
TransferStatus transfer_status; // protected by mutex
|
|
|
|
|
|
|
|
pthread_mutex_t mutex;
|
|
|
|
pthread_cond_t cv;
|
2018-09-24 22:28:51 +02:00
|
|
|
} in;
|
|
|
|
|
|
|
|
struct {
|
|
|
|
// TODO
|
|
|
|
} out;
|
|
|
|
};
|
|
|
|
|
|
|
|
/** @} */
|