removed some redundant comments
authorFrank Mori Hess <fmhess@speakeasy.net>
Tue, 5 Mar 2002 20:53:26 +0000 (20:53 +0000)
committerFrank Mori Hess <fmhess@speakeasy.net>
Tue, 5 Mar 2002 20:53:26 +0000 (20:53 +0000)
comedi/drivers/das16.c
comedi/drivers/das800.c

index 0f183d03ba71528eecf58dbd6b845fd18e918766..e6fb4b6d8ed7f2195b2bb4fbd28af6326283e3d1 100644 (file)
@@ -66,22 +66,6 @@ triggered conversions.
 
 Testing and debugging help provided by Daniel Koch.
 
-Options:
-       [0] - base io address
-       [1] - irq (optional)
-       [2] - dma (optional)
-       [3] - master clock speed in MHz (optional, 1 or 10, ignored if board
-               can probe clock speed, defaults to 1 otherwise)
-       [4] - analog input range lowest in microvolts (optional, only useful if your
-               board does not have software programmable gain)
-       [5] - analog input range highest in microvolts (optional, only useful if your
-               board does not have software programmable gain)
-       [6] - analog output range lowest in microvolts (optional)
-       [7] - analog output range highest in microvolts (optional)
-
-Both an irq line and dma channel are required for timed or externally
-triggered conversions.
-
 Keithley Manuals:
        2309.PDF (das16)
        4923.PDF (das1200, 1400, 1600)
index 3b5e695965d2a1db43b9692be44617ec12dfa5f5..bff206ebf8b8a4c8a1c76299e67c3a0cffda2a35 100644 (file)
@@ -35,25 +35,21 @@ Status: works, cio-das802/16 untested - email me if you have tested it
 Configuration options:
   [0] - I/O port base address
   [1] - IRQ (optional, required for timed or externally triggered conversions)
-*/
-/*
 
-This driver supports the Keithley boards:
-das-800
-das-801
-das-802
+Notes:
+       IRQ can be omitted, although the cmd interface will not work without it.
 
-and Measurement Computing (Computer Boards) models:
-cio-das800
-cio-das801
-cio-das802
-cio-das802/16
+       All entries in the channel/gain list must use the same gain and be
+       consecutive channels counting upwards in channel number (these are
+       hardware limitations.)
 
-Options:
-       [0] - base io address
-       [1] - irq
+       I've never tested the gain setting stuff since I only have a
+       DAS-800 board with fixed gain.
 
-irq can be omitted, although the cmd interface will not work without it.
+       The cio-das802/16 does not have a fifo-empty status bit!  Therefore
+       only fifo-half-full transfers are possible with this card.
+*/
+/*
 
 cmd triggers supported:
        start_src:      TRIG_NOW | TRIG_EXT
@@ -62,16 +58,6 @@ cmd triggers supported:
        convert_src:    TRIG_TIMER | TRIG_EXT
        stop_src:       TRIG_NONE | TRIG_COUNT
 
-NOTES:
-       All entries in the channel/gain list must use the same gain and be
-       consecutive channels counting upwards in channel number (these are
-       hardware limitations.)
-
-       I've never tested the gain setting stuff since I only have a
-       DAS-800 board with fixed gain.
-
-       The cio-das802/16 does not have a fifo-empty status bit!  Therefore
-       only fifo-half-full transfers are possible with this card.
 
 */