Example #1
0
File: daqmx.py Project: epage/DAQpy
def get_daqmx_update_version():
   return utils.get_scalar(c_system.DAQmxGetSysNIDAQUpdateVersion, ctypes.c_uint32)
Example #2
0
File: daqmx.py Project: epage/DAQpy
def get_daqmx_minor_version():
   return utils.get_scalar(c_system.DAQmxGetSysNIDAQMinorVersion, ctypes.c_uint32)
Example #3
0
File: daqmx.py Project: epage/DAQpy
def get_physical_chan_bool_attribute(devName, attrId):
   value = utils.get_scalar(c_daqmx.DAQmxGetPhysicalChanAttribute, ctypes.c_uint32, ctypes.c_char_p(devName), ctypes.c_int32(attrId))
   return bool(value)
Example #4
0
File: daqmx.py Project: epage/DAQpy
def get_physical_chan_double_attribute(devName, attrId):
   return utils.get_scalar(c_daqmx.DAQmxGetPhysicalChanAttribute, ctypes.c_double, devName, ctypes.c_int32(attrId))
Example #5
0
File: daqmx.py Project: epage/DAQpy
def get_device_bool_attribute(devName, attrId):
   value = utils.get_scalar(c_daqmx.DAQmxGetDeviceAttribute, ctypes.c_uint32, ctypes.c_char_p(devName), ctypes.c_int32(attrId))
   return bool(value)
Example #6
0
File: daqmx.py Project: epage/DAQpy
def get_device_double_attribute(devName, attrId):
   return utils.get_scalar(c_daqmx.DAQmxGetDeviceAttribute, ctypes.c_double, devName, ctypes.c_int32(attrId))