Status: New
Owner: ----
Labels: Type-Defect Priority-Medium
New issue 28 by
chris.le...@gmail.com: add call for DAQmxResetDevice
http://code.google.com/p/pylibnidaqmx/issues/detail?id=28
I propose adding the call to DAQmxResetDevice to the Device class in
libnidaqmx.py
class Device(str):
"""
Exposes NI-DACmx device to Python.
"""
def reset(self):
"""
Stops and deletes all tasks on a device and rests outputs to their
defaults
calls int32 DAQmxResetDevice (const char deviceName[]);
"""
return CALL('ResetDevice',self)