2000-02-02 05:14:23 +00:00
|
|
|
/*
|
|
|
|
include/comedilib.h
|
|
|
|
header file for the comedi library routines
|
|
|
|
|
|
|
|
COMEDI - Linux Control and Measurement Device Interface
|
2002-03-09 01:22:30 +00:00
|
|
|
Copyright (C) 1998-2002 David A. Schleef <ds@schleef.org>
|
2000-02-02 05:14:23 +00:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
2005-02-06 16:22:41 +00:00
|
|
|
it under the terms of the GNU Lesser General Public License as published by
|
2000-02-02 05:14:23 +00:00
|
|
|
the Free Software Foundation; either version 2 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, write to the Free Software
|
|
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef _COMEDILIB_H
|
|
|
|
#define _COMEDILIB_H
|
|
|
|
|
|
|
|
#include <comedi.h>
|
2011-01-26 16:29:34 +00:00
|
|
|
#include <comedilib_version.h>
|
2000-02-02 05:14:23 +00:00
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2009-01-30 14:51:38 +00:00
|
|
|
/* Macros for swig to %include this file. */
|
|
|
|
#ifdef SWIG
|
|
|
|
#define SWIG_OUTPUT(x) OUTPUT
|
|
|
|
#define SWIG_INPUT(x) INPUT
|
|
|
|
#define SWIG_INOUT(x) INOUT
|
|
|
|
#else
|
|
|
|
#define SWIG_OUTPUT(x) x
|
|
|
|
#define SWIG_INPUT(x) x
|
|
|
|
#define SWIG_INOUT(x) x
|
|
|
|
#endif
|
|
|
|
|
2000-02-02 05:14:23 +00:00
|
|
|
typedef struct comedi_t_struct comedi_t;
|
|
|
|
|
|
|
|
typedef struct{
|
|
|
|
double min;
|
|
|
|
double max;
|
|
|
|
unsigned int unit;
|
|
|
|
}comedi_range;
|
|
|
|
|
|
|
|
typedef struct comedi_sv_struct{
|
|
|
|
comedi_t *dev;
|
|
|
|
unsigned int subdevice;
|
|
|
|
unsigned int chan;
|
|
|
|
|
|
|
|
/* range policy */
|
|
|
|
int range;
|
|
|
|
int aref;
|
2003-02-26 19:19:57 +00:00
|
|
|
|
2000-02-02 05:14:23 +00:00
|
|
|
/* number of measurements to average (for ai) */
|
|
|
|
int n;
|
|
|
|
|
|
|
|
lsampl_t maxdata;
|
|
|
|
}comedi_sv_t;
|
|
|
|
|
2002-07-04 03:29:41 +00:00
|
|
|
enum comedi_oor_behavior {
|
|
|
|
COMEDI_OOR_NUMBER = 0,
|
|
|
|
COMEDI_OOR_NAN
|
|
|
|
};
|
|
|
|
|
2000-02-02 05:14:23 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
comedi_t *comedi_open(const char *fn);
|
2001-06-27 22:16:08 +00:00
|
|
|
int comedi_close(comedi_t *it);
|
2000-02-02 05:14:23 +00:00
|
|
|
|
2001-06-27 22:16:08 +00:00
|
|
|
/* logging */
|
2000-02-02 05:14:23 +00:00
|
|
|
int comedi_loglevel(int loglevel);
|
|
|
|
void comedi_perror(const char *s);
|
2008-03-28 15:56:35 +00:00
|
|
|
const char *comedi_strerror(int errnum);
|
2000-02-02 05:14:23 +00:00
|
|
|
int comedi_errno(void);
|
|
|
|
int comedi_fileno(comedi_t *it);
|
|
|
|
|
2002-07-04 03:29:41 +00:00
|
|
|
/* global behavior */
|
|
|
|
enum comedi_oor_behavior comedi_set_global_oor_behavior(enum comedi_oor_behavior behavior);
|
|
|
|
|
2001-06-27 22:16:08 +00:00
|
|
|
/* device queries */
|
2000-02-02 05:14:23 +00:00
|
|
|
int comedi_get_n_subdevices(comedi_t *it);
|
2003-05-03 14:59:26 +00:00
|
|
|
#define COMEDI_VERSION_CODE(a,b,c) (((a)<<16) | ((b)<<8) | (c))
|
2000-02-02 05:14:23 +00:00
|
|
|
int comedi_get_version_code(comedi_t *it);
|
2006-10-17 18:19:29 +00:00
|
|
|
const char *comedi_get_driver_name(comedi_t *it);
|
|
|
|
const char *comedi_get_board_name(comedi_t *it);
|
2002-07-04 03:29:41 +00:00
|
|
|
int comedi_get_read_subdevice(comedi_t *dev);
|
|
|
|
int comedi_get_write_subdevice(comedi_t *dev);
|
2000-02-02 05:14:23 +00:00
|
|
|
|
2001-06-27 22:16:08 +00:00
|
|
|
/* subdevice queries */
|
2000-02-02 05:14:23 +00:00
|
|
|
int comedi_get_subdevice_type(comedi_t *it,unsigned int subdevice);
|
|
|
|
int comedi_find_subdevice_by_type(comedi_t *it,int type,unsigned int subd);
|
2001-05-28 02:34:32 +00:00
|
|
|
int comedi_get_subdevice_flags(comedi_t *it,unsigned int subdevice);
|
2000-02-02 05:14:23 +00:00
|
|
|
int comedi_get_n_channels(comedi_t *it,unsigned int subdevice);
|
2000-09-03 02:20:13 +00:00
|
|
|
int comedi_range_is_chan_specific(comedi_t *it,unsigned int subdevice);
|
|
|
|
int comedi_maxdata_is_chan_specific(comedi_t *it,unsigned int subdevice);
|
|
|
|
|
2001-06-27 22:16:08 +00:00
|
|
|
/* channel queries */
|
|
|
|
lsampl_t comedi_get_maxdata(comedi_t *it,unsigned int subdevice,
|
|
|
|
unsigned int chan);
|
|
|
|
int comedi_get_n_ranges(comedi_t *it,unsigned int subdevice,
|
|
|
|
unsigned int chan);
|
|
|
|
comedi_range * comedi_get_range(comedi_t *it,unsigned int subdevice,
|
|
|
|
unsigned int chan,unsigned int range);
|
|
|
|
int comedi_find_range(comedi_t *it,unsigned int subd,unsigned int chan,
|
|
|
|
unsigned int unit,double min,double max);
|
|
|
|
|
|
|
|
/* buffer queries */
|
2001-03-01 21:57:33 +00:00
|
|
|
int comedi_get_buffer_size(comedi_t *it,unsigned int subdevice);
|
|
|
|
int comedi_get_max_buffer_size(comedi_t *it,unsigned int subdevice);
|
2001-06-27 22:16:08 +00:00
|
|
|
int comedi_set_buffer_size(comedi_t *it,unsigned int subdevice,
|
|
|
|
unsigned int len);
|
2001-03-01 21:57:33 +00:00
|
|
|
|
2001-06-27 22:16:08 +00:00
|
|
|
/* low-level stuff */
|
|
|
|
#ifdef _COMEDILIB_DEPRECATED
|
|
|
|
int comedi_trigger(comedi_t *it,comedi_trig *trig); /* deprecated */
|
|
|
|
#endif
|
2000-09-03 02:20:13 +00:00
|
|
|
int comedi_do_insnlist(comedi_t *it,comedi_insnlist *il);
|
|
|
|
int comedi_do_insn(comedi_t *it,comedi_insn *insn);
|
|
|
|
int comedi_lock(comedi_t *it,unsigned int subdevice);
|
|
|
|
int comedi_unlock(comedi_t *it,unsigned int subdevice);
|
2016-05-12 18:00:28 +01:00
|
|
|
/*
|
|
|
|
* Changing read and write subdevice is supported for the version of comedi
|
|
|
|
* in the Linux kernel sources since Linux kernel version 3.19.
|
|
|
|
*
|
|
|
|
* The functions to set and get the read and write subdevice are unusual in
|
|
|
|
* that changes are local to the "open file description" for the Comedi
|
|
|
|
* device.
|
|
|
|
*/
|
|
|
|
int comedi_set_read_subdevice(comedi_t *it,unsigned int subdevice);
|
|
|
|
int comedi_set_write_subdevice(comedi_t *it,unsigned int subdevice);
|
2000-02-02 05:14:23 +00:00
|
|
|
|
|
|
|
/* physical units */
|
|
|
|
double comedi_to_phys(lsampl_t data,comedi_range *rng,lsampl_t maxdata);
|
|
|
|
lsampl_t comedi_from_phys(double data,comedi_range *rng,lsampl_t maxdata);
|
2002-07-04 03:29:41 +00:00
|
|
|
int comedi_sampl_to_phys(double *dest, int dst_stride, sampl_t *src,
|
|
|
|
int src_stride, comedi_range *rng, lsampl_t maxdata, int n);
|
|
|
|
int comedi_sampl_from_phys(sampl_t *dest,int dst_stride,double *src,
|
|
|
|
int src_stride, comedi_range *rng, lsampl_t maxdata, int n);
|
2000-02-02 05:14:23 +00:00
|
|
|
|
2016-03-10 12:25:21 +00:00
|
|
|
/* synchronous stuff */
|
2001-06-27 22:16:08 +00:00
|
|
|
int comedi_data_read(comedi_t *it,unsigned int subd,unsigned int chan,
|
2009-01-30 14:51:38 +00:00
|
|
|
unsigned int range,unsigned int aref,lsampl_t *SWIG_OUTPUT(data));
|
2002-04-29 21:13:13 +00:00
|
|
|
int comedi_data_read_n(comedi_t *it,unsigned int subd,unsigned int chan,
|
2016-05-12 18:52:35 +01:00
|
|
|
unsigned int range,unsigned int aref,lsampl_t *data, unsigned int n);
|
2002-04-29 19:50:32 +00:00
|
|
|
int comedi_data_read_hint(comedi_t *it,unsigned int subd,unsigned int chan,
|
|
|
|
unsigned int range,unsigned int aref);
|
2002-04-29 18:22:41 +00:00
|
|
|
int comedi_data_read_delayed(comedi_t *it,unsigned int subd,unsigned int chan,
|
2009-01-30 14:51:38 +00:00
|
|
|
unsigned int range,unsigned int aref,lsampl_t *SWIG_OUTPUT(data), unsigned int nano_sec);
|
2001-06-27 22:16:08 +00:00
|
|
|
int comedi_data_write(comedi_t *it,unsigned int subd,unsigned int chan,
|
|
|
|
unsigned int range,unsigned int aref,lsampl_t data);
|
|
|
|
int comedi_dio_config(comedi_t *it,unsigned int subd,unsigned int chan,
|
|
|
|
unsigned int dir);
|
2005-03-06 17:42:56 +00:00
|
|
|
int comedi_dio_get_config(comedi_t *it,unsigned int subd,unsigned int chan,
|
2009-01-30 14:51:38 +00:00
|
|
|
unsigned int *SWIG_OUTPUT(dir));
|
2001-06-27 22:16:08 +00:00
|
|
|
int comedi_dio_read(comedi_t *it,unsigned int subd,unsigned int chan,
|
2009-01-30 14:51:38 +00:00
|
|
|
unsigned int *SWIG_OUTPUT(bit));
|
2001-06-27 22:16:08 +00:00
|
|
|
int comedi_dio_write(comedi_t *it,unsigned int subd,unsigned int chan,
|
|
|
|
unsigned int bit);
|
2006-10-17 18:19:29 +00:00
|
|
|
int comedi_dio_bitfield2(comedi_t *it,unsigned int subd,
|
2009-01-30 14:51:38 +00:00
|
|
|
unsigned int write_mask, unsigned int *SWIG_INOUT(bits), unsigned int base_channel);
|
2007-07-31 14:27:21 +00:00
|
|
|
/* Should be moved to _COMEDILIB_DEPRECATED once bindings for other languages are updated
|
|
|
|
* to use comedi_dio_bitfield2() instead.*/
|
|
|
|
int comedi_dio_bitfield(comedi_t *it,unsigned int subd,
|
2009-01-30 14:51:38 +00:00
|
|
|
unsigned int write_mask, unsigned int *SWIG_INOUT(bits));
|
2000-02-02 05:14:23 +00:00
|
|
|
|
|
|
|
/* slowly varying stuff */
|
|
|
|
int comedi_sv_init(comedi_sv_t *it,comedi_t *dev,unsigned int subd,unsigned int chan);
|
|
|
|
int comedi_sv_update(comedi_sv_t *it);
|
2010-12-16 11:29:10 +00:00
|
|
|
int comedi_sv_measure(comedi_sv_t *it,double *SWIG_OUTPUT(data));
|
2000-02-02 05:14:23 +00:00
|
|
|
|
2001-06-27 22:16:08 +00:00
|
|
|
/* streaming I/O (commands) */
|
2003-02-26 19:19:57 +00:00
|
|
|
|
2001-06-27 22:16:08 +00:00
|
|
|
int comedi_get_cmd_src_mask(comedi_t *dev,unsigned int subdevice,
|
2009-01-30 14:51:38 +00:00
|
|
|
comedi_cmd *SWIG_INOUT(cmd));
|
2001-06-27 22:16:08 +00:00
|
|
|
int comedi_get_cmd_generic_timed(comedi_t *dev,unsigned int subdevice,
|
2009-01-30 14:51:38 +00:00
|
|
|
comedi_cmd *SWIG_INOUT(cmd), unsigned chanlist_len, unsigned scan_period_ns);
|
2001-06-27 22:16:08 +00:00
|
|
|
int comedi_cancel(comedi_t *it,unsigned int subdevice);
|
|
|
|
int comedi_command(comedi_t *it,comedi_cmd *cmd);
|
2009-01-30 14:51:38 +00:00
|
|
|
int comedi_command_test(comedi_t *it,comedi_cmd *SWIG_INOUT(cmd));
|
2001-05-28 02:34:32 +00:00
|
|
|
int comedi_poll(comedi_t *dev,unsigned int subdevice);
|
|
|
|
|
2002-07-04 03:29:41 +00:00
|
|
|
/* buffer control */
|
|
|
|
|
2001-06-27 22:16:08 +00:00
|
|
|
int comedi_set_max_buffer_size(comedi_t *it, unsigned int subdev,
|
|
|
|
unsigned int max_size);
|
|
|
|
int comedi_get_buffer_contents(comedi_t *it, unsigned int subdev);
|
|
|
|
int comedi_mark_buffer_read(comedi_t *it, unsigned int subdev,
|
|
|
|
unsigned int bytes);
|
2005-01-10 00:46:28 +00:00
|
|
|
int comedi_mark_buffer_written(comedi_t *it, unsigned int subdev,
|
|
|
|
unsigned int bytes);
|
2016-05-13 15:14:47 +01:00
|
|
|
int comedi_get_buffer_read_offset(comedi_t *it, unsigned int subdev);
|
|
|
|
int comedi_get_buffer_write_offset(comedi_t *it, unsigned int subdev);
|
|
|
|
int comedi_get_buffer_read_count(comedi_t *it, unsigned int subdev,
|
|
|
|
unsigned int *SWIG_OUTPUT(read_count));
|
|
|
|
int comedi_get_buffer_write_count(comedi_t *it, unsigned int subdev,
|
|
|
|
unsigned int *SWIG_OUTPUT(write_count));
|
|
|
|
|
|
|
|
/* Should be moved to _COMEDILIB_DEPRECATED - use comedi_get_buffer_read_offset instead. */
|
2001-06-27 22:16:08 +00:00
|
|
|
int comedi_get_buffer_offset(comedi_t *it, unsigned int subdev);
|
2000-02-02 05:14:23 +00:00
|
|
|
|
2001-06-27 22:16:08 +00:00
|
|
|
#ifdef _COMEDILIB_DEPRECATED
|
2002-07-04 03:29:41 +00:00
|
|
|
/*
|
|
|
|
* The following functions are deprecated and should not be used.
|
|
|
|
*/
|
2001-06-27 22:16:08 +00:00
|
|
|
int comedi_get_timer(comedi_t *it,unsigned int subdev,double freq,
|
|
|
|
unsigned int *trigvar,double *actual_freq);
|
|
|
|
int comedi_timed_1chan(comedi_t *it,unsigned int subdev,unsigned int chan,
|
|
|
|
unsigned int range, unsigned int aref,double freq,
|
|
|
|
unsigned int n_samples,double *data);
|
2002-07-04 03:29:41 +00:00
|
|
|
int comedi_get_rangetype(comedi_t *it,unsigned int subdevice,
|
|
|
|
unsigned int chan);
|
2001-06-27 22:16:08 +00:00
|
|
|
#endif
|
2000-02-02 05:14:23 +00:00
|
|
|
|
|
|
|
|
2002-07-04 03:29:41 +00:00
|
|
|
#ifndef _COMEDILIB_STRICT_ABI
|
2000-02-02 05:14:23 +00:00
|
|
|
/*
|
2002-07-04 03:29:41 +00:00
|
|
|
The following prototypes are _NOT_ part of the Comedilib ABI, and
|
|
|
|
may change in future versions without regard to source or binary
|
|
|
|
compatibility. In practice, this is a holding place for the next
|
|
|
|
library ABI version change.
|
2000-02-02 05:14:23 +00:00
|
|
|
*/
|
2003-05-06 18:26:21 +00:00
|
|
|
/* structs and functions used for parsing calibration files */
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
unsigned int subdevice;
|
|
|
|
unsigned int channel;
|
|
|
|
unsigned int value;
|
|
|
|
} comedi_caldac_t;
|
2006-09-07 19:09:04 +00:00
|
|
|
#define COMEDI_MAX_NUM_POLYNOMIAL_COEFFICIENTS 4
|
2006-08-22 18:14:22 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
double coefficients[COMEDI_MAX_NUM_POLYNOMIAL_COEFFICIENTS];
|
|
|
|
double expansion_origin;
|
|
|
|
unsigned order;
|
|
|
|
} comedi_polynomial_t;
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
comedi_polynomial_t *to_phys;
|
|
|
|
comedi_polynomial_t *from_phys;
|
|
|
|
} comedi_softcal_t;
|
2003-05-06 23:37:45 +00:00
|
|
|
#define CS_MAX_AREFS_LENGTH 4
|
|
|
|
typedef struct
|
2003-05-06 18:26:21 +00:00
|
|
|
{
|
|
|
|
unsigned int subdevice;
|
|
|
|
unsigned int *channels;
|
|
|
|
unsigned int num_channels;
|
|
|
|
unsigned int *ranges;
|
|
|
|
unsigned int num_ranges;
|
2003-05-06 23:37:45 +00:00
|
|
|
unsigned int arefs[ CS_MAX_AREFS_LENGTH ];
|
2003-05-06 18:26:21 +00:00
|
|
|
unsigned int num_arefs;
|
|
|
|
comedi_caldac_t *caldacs;
|
|
|
|
unsigned int num_caldacs;
|
2006-08-22 18:14:22 +00:00
|
|
|
comedi_softcal_t soft_calibration;
|
2003-05-06 18:26:21 +00:00
|
|
|
} comedi_calibration_setting_t;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
char *driver_name;
|
|
|
|
char *board_name;
|
2003-05-06 23:37:45 +00:00
|
|
|
comedi_calibration_setting_t *settings;
|
|
|
|
unsigned int num_settings;
|
2003-05-06 18:26:21 +00:00
|
|
|
} comedi_calibration_t;
|
|
|
|
|
|
|
|
comedi_calibration_t* comedi_parse_calibration_file( const char *cal_file_path );
|
|
|
|
int comedi_apply_parsed_calibration( comedi_t *dev, unsigned int subdev, unsigned int channel,
|
|
|
|
unsigned int range, unsigned int aref, const comedi_calibration_t *calibration );
|
|
|
|
char* comedi_get_default_calibration_path( comedi_t *dev );
|
|
|
|
void comedi_cleanup_calibration( comedi_calibration_t *calibration );
|
2003-03-04 00:41:10 +00:00
|
|
|
int comedi_apply_calibration( comedi_t *dev, unsigned int subdev, unsigned int channel,
|
2003-02-26 19:19:57 +00:00
|
|
|
unsigned int range, unsigned int aref, const char *cal_file_path);
|
2000-02-02 05:14:23 +00:00
|
|
|
|
2006-09-07 19:09:04 +00:00
|
|
|
/* New stuff to provide conversion between integers and physical values that
|
|
|
|
* can support software calibrations. */
|
|
|
|
enum comedi_conversion_direction
|
|
|
|
{
|
|
|
|
COMEDI_TO_PHYSICAL,
|
|
|
|
COMEDI_FROM_PHYSICAL
|
|
|
|
};
|
|
|
|
int comedi_get_softcal_converter(
|
|
|
|
unsigned subdevice, unsigned channel, unsigned range,
|
|
|
|
enum comedi_conversion_direction direction,
|
2009-01-30 14:51:38 +00:00
|
|
|
const comedi_calibration_t *calibration, comedi_polynomial_t* SWIG_OUTPUT(polynomial));
|
2006-09-07 19:09:04 +00:00
|
|
|
int comedi_get_hardcal_converter(
|
|
|
|
comedi_t *dev, unsigned subdevice, unsigned channel, unsigned range,
|
2009-01-30 14:51:38 +00:00
|
|
|
enum comedi_conversion_direction direction, comedi_polynomial_t* SWIG_OUTPUT(polynomial));
|
2006-09-07 19:09:04 +00:00
|
|
|
double comedi_to_physical(lsampl_t data,
|
|
|
|
const comedi_polynomial_t *conversion_polynomial);
|
|
|
|
lsampl_t comedi_from_physical(double data,
|
|
|
|
const comedi_polynomial_t *conversion_polynomial);
|
2003-05-06 18:26:21 +00:00
|
|
|
|
2008-01-18 16:37:32 +00:00
|
|
|
int comedi_internal_trigger(comedi_t *dev, unsigned subd, unsigned trignum);
|
2008-01-15 21:01:40 +00:00
|
|
|
/* INSN_CONFIG wrappers */
|
2008-01-17 17:03:01 +00:00
|
|
|
int comedi_arm(comedi_t *device, unsigned subdevice, unsigned source);
|
2016-03-10 11:20:18 +00:00
|
|
|
int comedi_arm_channel(comedi_t *device, unsigned subdevice, unsigned channel,
|
|
|
|
unsigned source);
|
2016-03-10 11:20:18 +00:00
|
|
|
int comedi_disarm(comedi_t *device, unsigned subdevice);
|
2016-03-10 11:20:18 +00:00
|
|
|
int comedi_disarm_channel(comedi_t *device, unsigned subdevice,
|
|
|
|
unsigned channel);
|
2008-01-18 16:37:32 +00:00
|
|
|
int comedi_reset(comedi_t *device, unsigned subdevice);
|
2016-03-10 11:20:18 +00:00
|
|
|
int comedi_reset_channel(comedi_t *device, unsigned subdevice,
|
|
|
|
unsigned channel);
|
2010-03-19 13:44:56 +00:00
|
|
|
int comedi_get_clock_source(comedi_t *device, unsigned subdevice, unsigned channel, unsigned *SWIG_OUTPUT(clock), unsigned *SWIG_OUTPUT(period_ns));
|
2008-01-23 18:56:52 +00:00
|
|
|
int comedi_get_gate_source(comedi_t *device, unsigned subdevice, unsigned channel,
|
2009-01-30 14:51:38 +00:00
|
|
|
unsigned gate, unsigned *SWIG_OUTPUT(source));
|
|
|
|
int comedi_get_routing(comedi_t *device, unsigned subdevice, unsigned channel, unsigned *SWIG_OUTPUT(routing));
|
2008-01-23 18:56:52 +00:00
|
|
|
int comedi_set_counter_mode(comedi_t *device, unsigned subdevice, unsigned channel, unsigned mode_bits);
|
2010-03-19 13:44:56 +00:00
|
|
|
int comedi_set_clock_source(comedi_t *device, unsigned subdevice, unsigned channel, unsigned clock, unsigned period_ns);
|
2008-01-18 16:37:32 +00:00
|
|
|
int comedi_set_filter(comedi_t *device, unsigned subdevice, unsigned channel, unsigned filter);
|
2008-01-23 18:56:52 +00:00
|
|
|
int comedi_set_gate_source(comedi_t *device, unsigned subdevice, unsigned channel, unsigned gate_index, unsigned gate_source);
|
|
|
|
int comedi_set_other_source(comedi_t *device, unsigned subdevice, unsigned channel,
|
2008-01-15 21:01:40 +00:00
|
|
|
unsigned other, unsigned source);
|
2008-01-18 16:37:32 +00:00
|
|
|
int comedi_set_routing(comedi_t *device, unsigned subdevice, unsigned channel, unsigned routing);
|
2008-03-28 15:56:35 +00:00
|
|
|
int comedi_get_hardware_buffer_size(comedi_t *device, unsigned subdevice, enum comedi_io_direction direction);
|
2016-03-10 15:11:16 +00:00
|
|
|
int comedi_digital_trigger_disable(comedi_t *device, unsigned subdevice,
|
|
|
|
unsigned trigger_id);
|
|
|
|
int comedi_digital_trigger_enable_edges(comedi_t *device, unsigned subdevice,
|
|
|
|
unsigned trigger_id, unsigned base_input,
|
|
|
|
unsigned rising_edge_inputs, unsigned falling_edge_inputs);
|
|
|
|
int comedi_digital_trigger_enable_levels(comedi_t *device, unsigned subdevice,
|
|
|
|
unsigned trigger_id, unsigned base_input,
|
|
|
|
unsigned high_level_inputs, unsigned low_level_inputs);
|
2008-01-15 21:01:40 +00:00
|
|
|
|
2002-07-04 03:29:41 +00:00
|
|
|
#endif
|
2000-02-02 05:14:23 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|