3 implements comedi_data_*() functions
5 COMEDI - Linux Control and Measurement Device Interface
6 Copyright (C) 2000 David A. Schleef <ds@schleef.org>
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24 #include "../comedi.h"
25 #include "../comedilib.h"
26 #include "../comedidev.h" /* for comedi_udelay() */
28 #include <linux/string.h>
30 int comedi_data_write(comedi_t * dev, unsigned int subdev, unsigned int chan,
31 unsigned int range, unsigned int aref, lsampl_t data)
35 memset(&insn, 0, sizeof(insn));
36 insn.insn = INSN_WRITE;
40 insn.chanspec = CR_PACK(chan, range, aref);
42 return comedi_do_insn(dev, &insn);
45 int comedi_data_read(comedi_t * dev, unsigned int subdev, unsigned int chan,
46 unsigned int range, unsigned int aref, lsampl_t * data)
50 memset(&insn, 0, sizeof(insn));
51 insn.insn = INSN_READ;
55 insn.chanspec = CR_PACK(chan, range, aref);
57 return comedi_do_insn(dev, &insn);
60 int comedi_data_read_hint(comedi_t * dev, unsigned int subdev,
61 unsigned int chan, unsigned int range, unsigned int aref)
66 memset(&insn, 0, sizeof(insn));
67 insn.insn = INSN_READ;
69 insn.data = &dummy_data;
71 insn.chanspec = CR_PACK(chan, range, aref);
73 return comedi_do_insn(dev, &insn);
76 int comedi_data_read_delayed(comedi_t * dev, unsigned int subdev,
77 unsigned int chan, unsigned int range, unsigned int aref,
78 lsampl_t * data, unsigned int nano_sec)
82 retval = comedi_data_read_hint(dev, subdev, chan, range, aref);
86 comedi_udelay((nano_sec + 999) / 1000);
88 return comedi_data_read(dev, subdev, chan, range, aref, data);