Пример #1
0
def get_daqmx_update_version():
   return utils.get_scalar(c_system.DAQmxGetSysNIDAQUpdateVersion, ctypes.c_uint32)
Пример #2
0
def get_daqmx_minor_version():
   return utils.get_scalar(c_system.DAQmxGetSysNIDAQMinorVersion, ctypes.c_uint32)
Пример #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)
Пример #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))
Пример #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)
Пример #6
0
def get_device_double_attribute(devName, attrId):
   return utils.get_scalar(c_daqmx.DAQmxGetDeviceAttribute, ctypes.c_double, devName, ctypes.c_int32(attrId))