c237af5943602ad759444ade3bb277899215cd95
[pycomedi.git] / pycomedi / subdevice.pxd
1 # Copyright
2
3 "Expose `Subdevice` internals at the C level for other Cython modules"
4
5 from device cimport Device as _Device
6 from command cimport Command as _Command
7
8
9 cdef class Subdevice (object):
10     cdef public _Device device
11     cdef public int index
12
13     cpdef dio_bitfield(self, unsigned int bits=*, write_mask=*, base_channel=*)
14
15 cdef class StreamingSubdevice (Subdevice):
16     cdef public _Command cmd
17     cdef public list _command_test_errors