def write_to_teds_from_file(
self, file_path="",
basic_teds_options=WriteBasicTEDSOptions.DO_NOT_WRITE):
"""
Writes data from a virtual TEDS file to the TEDS sensor.
Args:
file_path (Optional[str]): Specifies the filename of a
virtual TEDS file that contains the bitstream to write.
basic_teds_options (Optional[nidaqmx.constants.WriteBasicTEDSOptions]):
Specifies how to handle basic TEDS data in the
bitstream.
"""
cfunc = lib_importer.windll.DAQmxWriteToTEDSFromFile
if cfunc.argtypes is None:
with cfunc.arglock:
if cfunc.argtypes is None:
cfunc.argtypes = [
ctypes_byte_str, ctypes_byte_str, ctypes.c_int]
error_code = cfunc(
self._name, file_path, basic_teds_options.value)
check_for_error(error_code)
评论列表
文章目录