mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-09 00:00:00 +01:00
uldaq: rename some fields in struct uldaq
This commit is contained in:
parent
ab58f3aa11
commit
f383bc767f
1 changed files with 15 additions and 10 deletions
|
@ -39,18 +39,23 @@ extern "C" {
|
|||
|
||||
#include <uldaq.h>
|
||||
|
||||
#define ULDAQ_MAX_DEV_COUNT 100
|
||||
#define ULDAQ_MAX_RANGE_COUNT 8
|
||||
|
||||
struct uldaq {
|
||||
DaqDeviceHandle device_handle;
|
||||
DaqDeviceDescriptor device_descriptor;
|
||||
DaqDeviceInterface device_interface_type;
|
||||
|
||||
struct {
|
||||
int sample_count;
|
||||
double sample_rate;
|
||||
ScanOption scan_options;
|
||||
AInScanFlag flags;
|
||||
AiQueueElement queues;
|
||||
AiInputMode inputMode;
|
||||
DaqDeviceDescriptor devDescriptor;
|
||||
DaqDeviceInterface interfaceType;
|
||||
DaqDeviceHandle daqDeviceHandle
|
||||
double* buffer;
|
||||
double *buffer;
|
||||
int sample_count;
|
||||
double sample_rate;
|
||||
|
||||
ScanOption scan_options;
|
||||
AInScanFlag flags;
|
||||
AiQueueElement *queues;
|
||||
AiInputMode input_mode;
|
||||
} in;
|
||||
|
||||
struct {
|
||||
|
|
Loading…
Add table
Reference in a new issue