From: David Schleef Date: Wed, 24 Oct 2001 22:19:13 +0000 (+0000) Subject: Added flags in chanspec description X-Git-Tag: r0_7_61~36 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=5ee1bb96a3efbc62e4219cc89180bfcac1e65e8b;p=comedi.git Added flags in chanspec description --- diff --git a/include/linux/comedi.h b/include/linux/comedi.h index dbf4ce67..4980ffbe 100644 --- a/include/linux/comedi.h +++ b/include/linux/comedi.h @@ -57,6 +57,9 @@ typedef unsigned short sampl_t; #define CR_RANGE(a) (((a)>>16)&0xff) #define CR_AREF(a) (((a)>>24)&0x03) +#define CR_DITHER (1<<26) +#define CR_INVERT (1<<31) + #define AREF_GROUND 0x00 /* analog ref = analog ground */ #define AREF_COMMON 0x01 /* analog ref = analog common */ #define AREF_DIFF 0x02 /* analog ref = differential */