Beispiel #1
0
def get_daqmx_update_version():
   return utils.get_scalar(c_system.DAQmxGetSysNIDAQUpdateVersion, ctypes.c_uint32)
Beispiel #2
0
def get_daqmx_minor_version():
   return utils.get_scalar(c_system.DAQmxGetSysNIDAQMinorVersion, ctypes.c_uint32)
Beispiel #3
0
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)
Beispiel #4
0
def get_physical_chan_double_attribute(devName, attrId):
   return utils.get_scalar(c_daqmx.DAQmxGetPhysicalChanAttribute, ctypes.c_double, devName, ctypes.c_int32(attrId))
Beispiel #5
0
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)
Beispiel #6
0
def get_device_double_attribute(devName, attrId):
   return utils.get_scalar(c_daqmx.DAQmxGetDeviceAttribute, ctypes.c_double, devName, ctypes.c_int32(attrId))