Mostly-complete Cython implementation.
authorW. Trevor King <wking@drexel.edu>
Tue, 19 Apr 2011 13:17:37 +0000 (09:17 -0400)
committerW. Trevor King <wking@drexel.edu>
Tue, 19 Apr 2011 13:17:46 +0000 (09:17 -0400)
commit1643eda29a036492b2506c1ed1981e0c13fdda73
treefba7a2ddddaec3f51cf4539075b9b1b44664b83d
parent1302cd7d02bc7de750035edc09cdf6a97c496d7f
Mostly-complete Cython implementation.

I need some work on Cython upstream to entirely remove the requirement
on the SWIG-wrapped comedi module.
30 files changed:
.gitignore
README
doc/software_timed_analog_IO.txt
doc/software_timed_digital_IO.txt
doc/synchronized_analog_IO.txt
pycomedi/__init__.py
pycomedi/_comedi_h.pxd [new file with mode: 0644]
pycomedi/_comedilib_h.pxd [new file with mode: 0644]
pycomedi/_error.pyx [new file with mode: 0644]
pycomedi/calibration.pxd [new file with mode: 0644]
pycomedi/calibration.pyx [new file with mode: 0644]
pycomedi/channel.pyx [new file with mode: 0644]
pycomedi/chanspec.pyx [new file with mode: 0644]
pycomedi/classes.py [deleted file]
pycomedi/command.pxd [new file with mode: 0644]
pycomedi/command.pyx [new file with mode: 0644]
pycomedi/constant.pxd [new file with mode: 0644]
pycomedi/constant.pyx [moved from pycomedi/constants.py with 70% similarity]
pycomedi/device.pxd [new file with mode: 0644]
pycomedi/device.pyx [new file with mode: 0644]
pycomedi/instruction.pxd [new file with mode: 0644]
pycomedi/instruction.pyx [new file with mode: 0644]
pycomedi/library.pyx [new file with mode: 0644]
pycomedi/range.pxd [new file with mode: 0644]
pycomedi/range.pyx [new file with mode: 0644]
pycomedi/subdevice.pxd [new file with mode: 0644]
pycomedi/subdevice.pyx [new file with mode: 0644]
pycomedi/utility.py
setup.py
test.sh [new file with mode: 0755]