From: Frank Mori Hess Date: Tue, 31 Jul 2007 14:27:21 +0000 (+0000) Subject: Took comedi_dio_bitfield out of _COMEDILIB_DEPRECATED for release, X-Git-Tag: v0_8_0~5 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=2d7d5f9bf35b943bc77834ac5d3fefe622dfc5a2;p=comedilib.git Took comedi_dio_bitfield out of _COMEDILIB_DEPRECATED for release, until bindings are updated. --- diff --git a/include/comedilib.h b/include/comedilib.h index f58292b..b6b1ab2 100644 --- a/include/comedilib.h +++ b/include/comedilib.h @@ -149,6 +149,10 @@ int comedi_dio_write(comedi_t *it,unsigned int subd,unsigned int chan, unsigned int bit); int comedi_dio_bitfield2(comedi_t *it,unsigned int subd, unsigned int write_mask, unsigned int *bits, unsigned int base_channel); +/* 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, + unsigned int write_mask, unsigned int *bits); /* slowly varying stuff */ int comedi_sv_init(comedi_sv_t *it,comedi_t *dev,unsigned int subd,unsigned int chan); @@ -188,8 +192,6 @@ int comedi_timed_1chan(comedi_t *it,unsigned int subdev,unsigned int chan, unsigned int n_samples,double *data); int comedi_get_rangetype(comedi_t *it,unsigned int subdevice, unsigned int chan); -int comedi_dio_bitfield(comedi_t *it,unsigned int subd, - unsigned int write_mask, unsigned int *bits); #endif