summaryrefslogtreecommitdiffstats
path: root/sys/sys/dataacq.h
diff options
context:
space:
mode:
authormsmith <msmith@FreeBSD.org>1999-01-20 03:29:59 +0000
committermsmith <msmith@FreeBSD.org>1999-01-20 03:29:59 +0000
commitd1fd3fc4f6fb9e29c01f5cd5c716feaf195171a7 (patch)
tree1338683f74c9855c6bbc2044a0f3049d25f87a71 /sys/sys/dataacq.h
parent8421f831f874fab5fd0c7d3c9f4ea9851272d5cb (diff)
downloadFreeBSD-src-d1fd3fc4f6fb9e29c01f5cd5c716feaf195171a7.zip
FreeBSD-src-d1fd3fc4f6fb9e29c01f5cd5c716feaf195171a7.tar.gz
Remove 'alog'. G'bye Jamil.
Diffstat (limited to 'sys/sys/dataacq.h')
-rw-r--r--sys/sys/dataacq.h34
1 files changed, 0 insertions, 34 deletions
diff --git a/sys/sys/dataacq.h b/sys/sys/dataacq.h
deleted file mode 100644
index c5fe345..0000000
--- a/sys/sys/dataacq.h
+++ /dev/null
@@ -1,34 +0,0 @@
-/* Header for general data acquisition definitions.
- */
-
-#ifndef _SYS_DATAACQ_H_
-#define _SYS_DATAACQ_H_
-
-#include <sys/ioccom.h>
-
-/* Period in microseconds between analog I/O samples.
- */
-#define AD_MICRO_PERIOD_SET _IOW('A', 1, long)
-#define AD_MICRO_PERIOD_GET _IOR('A', 2, long)
-
-/* Gain list support. Initially all gains are 1. If the board
- * supports no gains at all then AD_NGAINS_GET will return a 0.
- *
- * AD_NGAINS_GET: Return the number of gains the board supports
- *
- * AD_SUPPORTED_GAINS: Get the supported gains.
- * The driver will copy out "ngains" doubles,
- * where "ngains" is obtained with AD_NGAINS_GET.
- *
- * AD_GAINS_SET: Set the gain list. The driver will copy in "ngains" ints.
- *
- * AD_GAINS_GET: Get the gain list. The driver will copy out "ngains" ints.
- */
-
-#define AD_NGAINS_GET _IOR('A', 3, int)
-#define AD_NCHANS_GET _IOR('A', 4, int)
-#define AD_SUPPORTED_GAINS _IO('A', 5)
-#define AD_GAINS_SET _IO('A', 6)
-#define AD_GAINS_GET _IO('A', 7)
-
-#endif /* !_SYS_DATAACQ_H_ */
OpenPOWER on IntegriCloud