diff --git a/CHANGELOG.md b/CHANGELOG.md index 09ce7a3cc..0fc6bdc30 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -34,6 +34,7 @@ All notable changes to this project will be documented in this file. * ### Major Changes * Removed support for Python 3.9. + * (IN PROGRESS behind "WAVEFORM_SUPPORT" feature toggle) Added support for reading and writing Waveform data through gRPC using [NI gRPC Device Server](https://github.com/ni/grpc-device). * ### Known Issues * ... @@ -47,7 +48,7 @@ All notable changes to this project will be documented in this file. * [639: first_samp_timestamp_val property does not work because LibraryInterpreter is missing a method](https://github.com/ni/nidaqmx-python/issues/639) * ### Major Changes - * (IN PROGRESS behind "WAVEFORM_SUPPORT" feature toggle) Added support for reading and writing Waveform data. + * (IN PROGRESS behind "WAVEFORM_SUPPORT" feature toggle) Added support for reading and writing Waveform data. * Simplify `numpy` and `click` version constraints. * `nidaqmx` supports a wider range of Python versions than `numpy` and `click`, so testing `nidaqmx` against its oldest supported Python version (currently 3.9) requires downgrading diff --git a/generated/nidaqmx/_base_interpreter.py b/generated/nidaqmx/_base_interpreter.py index 46ee79a81..ca82198a2 100644 --- a/generated/nidaqmx/_base_interpreter.py +++ b/generated/nidaqmx/_base_interpreter.py @@ -1879,7 +1879,7 @@ def read_analog_waveforms( waveform_attribute_mode: WaveformAttributeMode ) -> int: raise NotImplementedError - + @abc.abstractmethod def read_digital_waveform( self, @@ -1935,7 +1935,7 @@ def write_analog_waveforms( timeout: float ) -> int: raise NotImplementedError - + @abc.abstractmethod def write_digital_waveform( self, @@ -1945,7 +1945,7 @@ def write_digital_waveform( timeout: float, ) -> int: raise NotImplementedError - + def write_digital_waveforms( self, task_handle: object, diff --git a/generated/nidaqmx/_grpc_interpreter.py b/generated/nidaqmx/_grpc_interpreter.py index 165378c26..9c2ff081a 100644 --- a/generated/nidaqmx/_grpc_interpreter.py +++ b/generated/nidaqmx/_grpc_interpreter.py @@ -18,9 +18,17 @@ from nidaqmx._base_interpreter import BaseEventHandler, BaseInterpreter from nidaqmx._stubs import nidaqmx_pb2 as grpc_types from nidaqmx._stubs import nidaqmx_pb2_grpc as nidaqmx_grpc +from ni.protobuf.types.waveform_conversion import ( + digital_waveform_from_protobuf, + digital_waveform_to_protobuf, + float64_analog_waveform_from_protobuf, + float64_analog_waveform_to_protobuf +) from nidaqmx.constants import WaveformAttributeMode from nidaqmx.error_codes import DAQmxErrors from nidaqmx._grpc_time import convert_time_to_timestamp, convert_timestamp_to_time +from nidaqmx._waveform_utils import get_num_samps_per_chan +from session_pb2 import Session _logger = logging.getLogger(__name__) @@ -3616,7 +3624,13 @@ def read_analog_waveform( waveform: AnalogWaveform[numpy.float64], waveform_attribute_mode: WaveformAttributeMode ) -> int: - raise NotImplementedError + return self.read_analog_waveforms( + task_handle, + number_of_samples_per_channel, + timeout, + [waveform], + waveform_attribute_mode + ) def read_analog_waveforms( self, @@ -3626,7 +3640,30 @@ def read_analog_waveforms( waveforms: Sequence[AnalogWaveform[numpy.float64]], waveform_attribute_mode: WaveformAttributeMode ) -> int: - raise NotImplementedError + assert isinstance(task_handle, Session) + response = self._invoke( + self._client.ReadAnalogWaveforms, + grpc_types.ReadAnalogWaveformsRequest( + task=task_handle, + num_samps_per_chan=number_of_samples_per_channel, + timeout=timeout, + waveform_attribute_mode_raw=waveform_attribute_mode.value + )) + + if len(response.waveforms) != len(waveforms): + raise ValueError(f"Expected {len(waveforms)} waveforms but received {len(response.waveforms)} from server") + + for i, grpc_waveform in enumerate(response.waveforms): + temp_waveform = float64_analog_waveform_from_protobuf(grpc_waveform) + waveforms[i].load_data(temp_waveform.scaled_data) + + waveforms[i].scale_mode = temp_waveform.scale_mode + waveforms[i].timing = temp_waveform.timing + waveforms[i].extended_properties.clear() + waveforms[i].extended_properties.update(temp_waveform.extended_properties) + + self._check_for_error_from_response(response.status, samps_per_chan_read=response.samps_per_chan_read) + return response.samps_per_chan_read def read_digital_waveform( self, @@ -3636,7 +3673,15 @@ def read_digital_waveform( waveform: DigitalWaveform[Any], waveform_attribute_mode: WaveformAttributeMode ) -> int: - raise NotImplementedError + return self.read_digital_waveforms( + task_handle, + 1, # channel_count + number_of_samples_per_channel, + waveform.signal_count, # number_of_signals_per_sample + timeout, + [waveform], + waveform_attribute_mode + ) def read_digital_waveforms( self, @@ -3648,7 +3693,32 @@ def read_digital_waveforms( waveforms: Sequence[DigitalWaveform[Any]], waveform_attribute_mode: WaveformAttributeMode, ) -> int: - raise NotImplementedError + assert isinstance(task_handle, Session) + response = self._invoke( + self._client.ReadDigitalWaveforms, + grpc_types.ReadDigitalWaveformsRequest( + task=task_handle, + num_samps_per_chan=number_of_samples_per_channel, + timeout=timeout, + waveform_attribute_mode_raw=waveform_attribute_mode.value + )) + + if len(response.waveforms) != len(waveforms): + raise ValueError(f"Expected {len(waveforms)} waveforms but received {len(response.waveforms)} from server") + + for i, grpc_waveform in enumerate(response.waveforms): + temp_waveform = digital_waveform_from_protobuf(grpc_waveform) + data = temp_waveform.data + if data.dtype != waveforms[i].dtype: + data = data.view(waveforms[i].dtype) + waveforms[i].load_data(data) + + waveforms[i].timing = temp_waveform.timing + waveforms[i].extended_properties.clear() + waveforms[i].extended_properties.update(temp_waveform.extended_properties) + + self._check_for_error_from_response(response.status, samps_per_chan_read=response.samps_per_chan_read) + return response.samps_per_chan_read def read_new_digital_waveforms( self, @@ -3659,7 +3729,20 @@ def read_new_digital_waveforms( timeout: float, waveform_attribute_mode: WaveformAttributeMode, ) -> Sequence[DigitalWaveform[numpy.uint8]]: - raise NotImplementedError + assert isinstance(task_handle, Session) + response = self._invoke( + self._client.ReadDigitalWaveforms, + grpc_types.ReadDigitalWaveformsRequest( + task=task_handle, + num_samps_per_chan=number_of_samples_per_channel, + timeout=timeout, + waveform_attribute_mode_raw=waveform_attribute_mode.value + )) + + waveforms = [digital_waveform_from_protobuf(grpc_waveform) for grpc_waveform in response.waveforms] + + self._check_for_error_from_response(response.status, samps_per_chan_read=response.samps_per_chan_read) + return waveforms def write_analog_waveform( self, @@ -3668,7 +3751,7 @@ def write_analog_waveform( auto_start: bool, timeout: float ) -> int: - raise NotImplementedError + return self.write_analog_waveforms(task_handle, [waveform], auto_start, timeout) def write_analog_waveforms( self, @@ -3677,7 +3760,22 @@ def write_analog_waveforms( auto_start: bool, timeout: float ) -> int: - raise NotImplementedError + assert isinstance(task_handle, Session) + num_samps_per_chan = get_num_samps_per_chan(waveforms) + + grpc_waveforms = [float64_analog_waveform_to_protobuf(waveform) for waveform in waveforms] + + response = self._invoke( + self._client.WriteAnalogWaveforms, + grpc_types.WriteAnalogWaveformsRequest( + task=task_handle, + auto_start=auto_start, + timeout=timeout, + waveforms=grpc_waveforms + )) + + self._check_for_error_from_response(response.status, samps_per_chan_written=response.samps_per_chan_written) + return response.samps_per_chan_written def write_digital_waveform( self, @@ -3686,16 +3784,31 @@ def write_digital_waveform( auto_start: bool, timeout: float, ) -> int: - raise NotImplementedError + return self.write_digital_waveforms(task_handle, [waveform], auto_start, timeout) def write_digital_waveforms( self, task_handle: object, - waveform: Sequence[DigitalWaveform[Any]], + waveforms: Sequence[DigitalWaveform[Any]], auto_start: bool, timeout: float, ) -> int: - raise NotImplementedError + assert isinstance(task_handle, Session) + num_samps_per_chan = get_num_samps_per_chan(waveforms) + + grpc_waveforms = [digital_waveform_to_protobuf(waveform) for waveform in waveforms] + + response = self._invoke( + self._client.WriteDigitalWaveforms, + grpc_types.WriteDigitalWaveformsRequest( + task=task_handle, + auto_start=auto_start, + timeout=timeout, + waveforms=grpc_waveforms + )) + + self._check_for_error_from_response(response.status, samps_per_chan_written=response.samps_per_chan_written) + return response.samps_per_chan_written def _assign_numpy_array(numpy_array, grpc_array): """ diff --git a/generated/nidaqmx/_library_interpreter.py b/generated/nidaqmx/_library_interpreter.py index 343bb9ff8..9da9928c0 100644 --- a/generated/nidaqmx/_library_interpreter.py +++ b/generated/nidaqmx/_library_interpreter.py @@ -20,6 +20,7 @@ from nidaqmx.error_codes import DAQmxErrors, DAQmxWarnings from nidaqmx.errors import DaqError, DaqFunctionNotSupportedError, DaqReadError, DaqWarning, DaqWriteError from nidaqmx._lib_time import AbsoluteTime +from nidaqmx._waveform_utils import get_num_samps_per_chan from nitypes.waveform.typing import ExtendedPropertyValue from nitypes.waveform import AnalogWaveform, DigitalWaveform, SampleIntervalMode, Timing, ExtendedPropertyDictionary @@ -7011,15 +7012,7 @@ def write_analog_waveforms( timeout: float ) -> int: """Write analog waveforms.""" - assert len(waveforms) > 0 - num_samps_per_chan = waveforms[0].sample_count - - for waveform in waveforms: - if waveform.sample_count != num_samps_per_chan: - raise DaqError( - "The waveforms must all have the same sample count.", - DAQmxErrors.UNKNOWN - ) + num_samps_per_chan = get_num_samps_per_chan(waveforms) write_arrays = [self._get_analog_write_array(waveform) for waveform in waveforms] @@ -7130,15 +7123,7 @@ def write_digital_waveforms( ) -> int: """Write digital waveforms.""" channel_count = len(waveforms) - assert channel_count > 0 - sample_count = waveforms[0].sample_count - - for waveform in waveforms: - if waveform.sample_count != sample_count: - raise DaqError( - "The waveforms must all have the same sample count.", - DAQmxErrors.UNKNOWN - ) + sample_count = get_num_samps_per_chan(waveforms) bytes_per_chan_array = numpy.array([wf.signal_count for wf in waveforms], dtype=numpy.uint32) diff --git a/generated/nidaqmx/_stubs/nidaqmx_pb2.py b/generated/nidaqmx/_stubs/nidaqmx_pb2.py index 5faa8df65..b1c4a63d0 100644 --- a/generated/nidaqmx/_stubs/nidaqmx_pb2.py +++ b/generated/nidaqmx/_stubs/nidaqmx_pb2.py @@ -13,10 +13,11 @@ import session_pb2 as session__pb2 from nidaqmx._stubs import data_moniker_pb2 as data__moniker__pb2 +from ni.protobuf.types import waveform_pb2 as ni_dot_protobuf_dot_types_dot_waveform__pb2 from google.protobuf import timestamp_pb2 as google_dot_protobuf_dot_timestamp__pb2 -DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\rnidaqmx.proto\x12\x0cnidaqmx_grpc\x1a\rsession.proto\x1a\x12\x64\x61ta_moniker.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"}\n\x1d\x41nalogPowerUpChannelsAndState\x12\x15\n\rchannel_names\x18\x01 \x01(\t\x12\r\n\x05state\x18\x02 \x01(\x01\x12\x36\n\x0c\x63hannel_type\x18\x03 \x01(\x0e\x32 .nidaqmx_grpc.PowerUpChannelType\"_\n\x1bWatchdogExpChannelsAndState\x12\r\n\x05lines\x18\x01 \x01(\t\x12\x31\n\texp_state\x18\x02 \x01(\x0e\x32\x1e.nidaqmx_grpc.DigitalLineState\"`\n\x1c\x44igitalPowerUpTypeAndChannel\x12\x14\n\x0c\x63hannel_name\x18\x01 \x01(\t\x12*\n\x05state\x18\x02 \x01(\x0e\x32\x1b.nidaqmx_grpc.PowerUpStates\"c\n\x1e\x44igitalPowerUpChannelsAndState\x12\x15\n\rchannel_names\x18\x01 \x01(\t\x12*\n\x05state\x18\x02 \x01(\x0e\x32\x1b.nidaqmx_grpc.PowerUpStates\"j\n%DigitalPullUpPullDownChannelsAndState\x12\x15\n\rchannel_names\x18\x01 \x01(\t\x12*\n\x05state\x18\x02 \x01(\x0e\x32\x1b.nidaqmx_grpc.ResistorState\"k\n\x1b\x41nalogPowerUpChannelAndType\x12\x14\n\x0c\x63hannel_name\x18\x01 \x01(\t\x12\x36\n\x0c\x63hannel_type\x18\x02 \x01(\x0e\x32 .nidaqmx_grpc.PowerUpChannelType\"1\n\x1c\x41\x64\x64\x43\x44\x41QSyncConnectionRequest\x12\x11\n\tport_list\x18\x01 \x01(\t\"/\n\x1d\x41\x64\x64\x43\x44\x41QSyncConnectionResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"Z\n\x1b\x41\x64\x64GlobalChansToTaskRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x15\n\rchannel_names\x18\x02 \x01(\t\".\n\x1c\x41\x64\x64GlobalChansToTaskResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"p\n\x17\x41\x64\x64NetworkDeviceRequest\x12\x12\n\nip_address\x18\x01 \x01(\t\x12\x13\n\x0b\x64\x65vice_name\x18\x02 \x01(\t\x12\x1b\n\x13\x61ttempt_reservation\x18\x03 \x01(\x08\x12\x0f\n\x07timeout\x18\x04 \x01(\x01\"C\n\x18\x41\x64\x64NetworkDeviceResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x17\n\x0f\x64\x65vice_name_out\x18\x02 \x01(\t\"_\n-AreConfiguredCDAQSyncPortsDisconnectedRequest\x12\x1d\n\x15\x63hassis_devices_ports\x18\x01 \x01(\t\x12\x0f\n\x07timeout\x18\x02 \x01(\x01\"b\n.AreConfiguredCDAQSyncPortsDisconnectedResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12 \n\x18\x64isconnected_ports_exist\x18\x02 \x01(\x08\"Y\n\'AutoConfigureCDAQSyncConnectionsRequest\x12\x1d\n\x15\x63hassis_devices_ports\x18\x01 \x01(\t\x12\x0f\n\x07timeout\x18\x02 \x01(\x01\":\n(AutoConfigureCDAQSyncConnectionsResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x9b\x01\n CalculateReversePolyCoeffRequest\x12\x16\n\x0e\x66orward_coeffs\x18\x01 \x03(\x01\x12\x11\n\tmin_val_x\x18\x02 \x01(\x01\x12\x11\n\tmax_val_x\x18\x03 \x01(\x01\x12\x1d\n\x15num_points_to_compute\x18\x04 \x01(\x05\x12\x1a\n\x12reverse_poly_order\x18\x05 \x01(\x05\"K\n!CalculateReversePolyCoeffResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x16\n\x0ereverse_coeffs\x18\x02 \x03(\x01\"\xee\x01\n\x19\x43\x66gAnlgEdgeRefTrigRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x16\n\x0etrigger_source\x18\x02 \x01(\t\x12-\n\rtrigger_slope\x18\x03 \x01(\x0e\x32\x14.nidaqmx_grpc.Slope1H\x00\x12\x1b\n\x11trigger_slope_raw\x18\x04 \x01(\x05H\x00\x12\x15\n\rtrigger_level\x18\x05 \x01(\x01\x12\x1a\n\x12pretrigger_samples\x18\x06 \x01(\rB\x14\n\x12trigger_slope_enum\",\n\x1a\x43\x66gAnlgEdgeRefTrigResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xd4\x01\n\x1b\x43\x66gAnlgEdgeStartTrigRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x16\n\x0etrigger_source\x18\x02 \x01(\t\x12-\n\rtrigger_slope\x18\x03 \x01(\x0e\x32\x14.nidaqmx_grpc.Slope1H\x00\x12\x1b\n\x11trigger_slope_raw\x18\x04 \x01(\x05H\x00\x12\x15\n\rtrigger_level\x18\x05 \x01(\x01\x42\x14\n\x12trigger_slope_enum\".\n\x1c\x43\x66gAnlgEdgeStartTrigResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xcb\x01\n\x1e\x43\x66gAnlgMultiEdgeRefTrigRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x17\n\x0ftrigger_sources\x18\x02 \x01(\t\x12\x31\n\x13trigger_slope_array\x18\x03 \x03(\x0e\x32\x14.nidaqmx_grpc.Slope1\x12\x1b\n\x13trigger_level_array\x18\x04 \x03(\x01\x12\x1a\n\x12pretrigger_samples\x18\x05 \x01(\r\"1\n\x1f\x43\x66gAnlgMultiEdgeRefTrigResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xb1\x01\n CfgAnlgMultiEdgeStartTrigRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x17\n\x0ftrigger_sources\x18\x02 \x01(\t\x12\x31\n\x13trigger_slope_array\x18\x03 \x03(\x0e\x32\x14.nidaqmx_grpc.Slope1\x12\x1b\n\x13trigger_level_array\x18\x04 \x03(\x01\"3\n!CfgAnlgMultiEdgeStartTrigResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x92\x02\n\x1b\x43\x66gAnlgWindowRefTrigRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x16\n\x0etrigger_source\x18\x02 \x01(\t\x12=\n\x0ctrigger_when\x18\x03 \x01(\x0e\x32%.nidaqmx_grpc.WindowTriggerCondition1H\x00\x12\x1a\n\x10trigger_when_raw\x18\x04 \x01(\x05H\x00\x12\x12\n\nwindow_top\x18\x05 \x01(\x01\x12\x15\n\rwindow_bottom\x18\x06 \x01(\x01\x12\x1a\n\x12pretrigger_samples\x18\x07 \x01(\rB\x13\n\x11trigger_when_enum\".\n\x1c\x43\x66gAnlgWindowRefTrigResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xf8\x01\n\x1d\x43\x66gAnlgWindowStartTrigRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x16\n\x0etrigger_source\x18\x02 \x01(\t\x12=\n\x0ctrigger_when\x18\x03 \x01(\x0e\x32%.nidaqmx_grpc.WindowTriggerCondition1H\x00\x12\x1a\n\x10trigger_when_raw\x18\x04 \x01(\x05H\x00\x12\x12\n\nwindow_top\x18\x05 \x01(\x01\x12\x15\n\rwindow_bottom\x18\x06 \x01(\x01\x42\x13\n\x11trigger_when_enum\"0\n\x1e\x43\x66gAnlgWindowStartTrigResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xef\x04\n+CfgBurstHandshakingTimingExportClockRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x34\n\x0bsample_mode\x18\x02 \x01(\x0e\x32\x1d.nidaqmx_grpc.AcquisitionTypeH\x00\x12\x19\n\x0fsample_mode_raw\x18\x03 \x01(\x05H\x00\x12\x16\n\x0esamps_per_chan\x18\x04 \x01(\x04\x12\x17\n\x0fsample_clk_rate\x18\x05 \x01(\x01\x12\x1c\n\x14sample_clk_outp_term\x18\x06 \x01(\t\x12<\n\x19sample_clk_pulse_polarity\x18\x07 \x01(\x0e\x32\x17.nidaqmx_grpc.Polarity2H\x01\x12\'\n\x1dsample_clk_pulse_polarity_raw\x18\x08 \x01(\x05H\x01\x12*\n\npause_when\x18\t \x01(\x0e\x32\x14.nidaqmx_grpc.Level1H\x02\x12\x18\n\x0epause_when_raw\x18\n \x01(\x05H\x02\x12;\n\x18ready_event_active_level\x18\x0b \x01(\x0e\x32\x17.nidaqmx_grpc.Polarity2H\x03\x12&\n\x1cready_event_active_level_raw\x18\x0c \x01(\x05H\x03\x42\x12\n\x10sample_mode_enumB \n\x1esample_clk_pulse_polarity_enumB\x11\n\x0fpause_when_enumB\x1f\n\x1dready_event_active_level_enum\">\n,CfgBurstHandshakingTimingExportClockResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xdc\x04\n+CfgBurstHandshakingTimingImportClockRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x34\n\x0bsample_mode\x18\x02 \x01(\x0e\x32\x1d.nidaqmx_grpc.AcquisitionTypeH\x00\x12\x19\n\x0fsample_mode_raw\x18\x03 \x01(\x05H\x00\x12\x16\n\x0esamps_per_chan\x18\x04 \x01(\x04\x12\x17\n\x0fsample_clk_rate\x18\x05 \x01(\x01\x12\x16\n\x0esample_clk_src\x18\x06 \x01(\t\x12\x35\n\x16sample_clk_active_edge\x18\x07 \x01(\x0e\x32\x13.nidaqmx_grpc.Edge1H\x01\x12$\n\x1asample_clk_active_edge_raw\x18\x08 \x01(\x05H\x01\x12*\n\npause_when\x18\t \x01(\x0e\x32\x14.nidaqmx_grpc.Level1H\x02\x12\x18\n\x0epause_when_raw\x18\n \x01(\x05H\x02\x12;\n\x18ready_event_active_level\x18\x0b \x01(\x0e\x32\x17.nidaqmx_grpc.Polarity2H\x03\x12&\n\x1cready_event_active_level_raw\x18\x0c \x01(\x05H\x03\x42\x12\n\x10sample_mode_enumB\x1d\n\x1bsample_clk_active_edge_enumB\x11\n\x0fpause_when_enumB\x1f\n\x1dready_event_active_level_enum\">\n,CfgBurstHandshakingTimingImportClockResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xf9\x01\n\x1f\x43\x66gChangeDetectionTimingRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10rising_edge_chan\x18\x02 \x01(\t\x12\x19\n\x11\x66\x61lling_edge_chan\x18\x03 \x01(\t\x12\x34\n\x0bsample_mode\x18\x04 \x01(\x0e\x32\x1d.nidaqmx_grpc.AcquisitionTypeH\x00\x12\x19\n\x0fsample_mode_raw\x18\x05 \x01(\x05H\x00\x12\x16\n\x0esamps_per_chan\x18\x06 \x01(\x04\x42\x12\n\x10sample_mode_enum\"2\n CfgChangeDetectionTimingResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xd2\x01\n\x18\x43\x66gDigEdgeRefTrigRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x16\n\x0etrigger_source\x18\x02 \x01(\t\x12+\n\x0ctrigger_edge\x18\x03 \x01(\x0e\x32\x13.nidaqmx_grpc.Edge1H\x00\x12\x1a\n\x10trigger_edge_raw\x18\x04 \x01(\x05H\x00\x12\x1a\n\x12pretrigger_samples\x18\x05 \x01(\rB\x13\n\x11trigger_edge_enum\"+\n\x19\x43\x66gDigEdgeRefTrigResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xb8\x01\n\x1a\x43\x66gDigEdgeStartTrigRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x16\n\x0etrigger_source\x18\x02 \x01(\t\x12+\n\x0ctrigger_edge\x18\x03 \x01(\x0e\x32\x13.nidaqmx_grpc.Edge1H\x00\x12\x1a\n\x10trigger_edge_raw\x18\x04 \x01(\x05H\x00\x42\x13\n\x11trigger_edge_enum\"-\n\x1b\x43\x66gDigEdgeStartTrigResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x81\x02\n\x1b\x43\x66gDigPatternRefTrigRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x16\n\x0etrigger_source\x18\x02 \x01(\t\x12\x17\n\x0ftrigger_pattern\x18\x03 \x01(\t\x12>\n\x0ctrigger_when\x18\x04 \x01(\x0e\x32&.nidaqmx_grpc.DigitalPatternCondition1H\x00\x12\x1a\n\x10trigger_when_raw\x18\x05 \x01(\x05H\x00\x12\x1a\n\x12pretrigger_samples\x18\x06 \x01(\rB\x13\n\x11trigger_when_enum\".\n\x1c\x43\x66gDigPatternRefTrigResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xe7\x01\n\x1d\x43\x66gDigPatternStartTrigRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x16\n\x0etrigger_source\x18\x02 \x01(\t\x12\x17\n\x0ftrigger_pattern\x18\x03 \x01(\t\x12>\n\x0ctrigger_when\x18\x04 \x01(\x0e\x32&.nidaqmx_grpc.DigitalPatternCondition1H\x00\x12\x1a\n\x10trigger_when_raw\x18\x05 \x01(\x05H\x00\x42\x13\n\x11trigger_when_enum\"0\n\x1e\x43\x66gDigPatternStartTrigResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xc0\x01\n\x1b\x43\x66gHandshakingTimingRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x34\n\x0bsample_mode\x18\x02 \x01(\x0e\x32\x1d.nidaqmx_grpc.AcquisitionTypeH\x00\x12\x19\n\x0fsample_mode_raw\x18\x03 \x01(\x05H\x00\x12\x16\n\x0esamps_per_chan\x18\x04 \x01(\x04\x42\x12\n\x10sample_mode_enum\".\n\x1c\x43\x66gHandshakingTimingResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xbd\x01\n\x18\x43\x66gImplicitTimingRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x34\n\x0bsample_mode\x18\x02 \x01(\x0e\x32\x1d.nidaqmx_grpc.AcquisitionTypeH\x00\x12\x19\n\x0fsample_mode_raw\x18\x03 \x01(\x05H\x00\x12\x16\n\x0esamps_per_chan\x18\x04 \x01(\x04\x42\x12\n\x10sample_mode_enum\"+\n\x19\x43\x66gImplicitTimingResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"Y\n\x15\x43\x66gInputBufferRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\r\"(\n\x16\x43\x66gInputBufferResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"Z\n\x16\x43\x66gOutputBufferRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\r\")\n\x17\x43\x66gOutputBufferResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xbe\x02\n CfgPipelinedSampClkTimingRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0e\n\x06source\x18\x02 \x01(\t\x12\x0c\n\x04rate\x18\x03 \x01(\x01\x12*\n\x0b\x61\x63tive_edge\x18\x04 \x01(\x0e\x32\x13.nidaqmx_grpc.Edge1H\x00\x12\x19\n\x0f\x61\x63tive_edge_raw\x18\x05 \x01(\x05H\x00\x12\x34\n\x0bsample_mode\x18\x06 \x01(\x0e\x32\x1d.nidaqmx_grpc.AcquisitionTypeH\x01\x12\x19\n\x0fsample_mode_raw\x18\x07 \x01(\x05H\x01\x12\x16\n\x0esamps_per_chan\x18\x08 \x01(\x04\x42\x12\n\x10\x61\x63tive_edge_enumB\x12\n\x10sample_mode_enum\"3\n!CfgPipelinedSampClkTimingResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xb5\x02\n\x17\x43\x66gSampClkTimingRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0e\n\x06source\x18\x02 \x01(\t\x12\x0c\n\x04rate\x18\x03 \x01(\x01\x12*\n\x0b\x61\x63tive_edge\x18\x04 \x01(\x0e\x32\x13.nidaqmx_grpc.Edge1H\x00\x12\x19\n\x0f\x61\x63tive_edge_raw\x18\x05 \x01(\x05H\x00\x12\x34\n\x0bsample_mode\x18\x06 \x01(\x0e\x32\x1d.nidaqmx_grpc.AcquisitionTypeH\x01\x12\x19\n\x0fsample_mode_raw\x18\x07 \x01(\x05H\x01\x12\x16\n\x0esamps_per_chan\x18\x08 \x01(\x04\x42\x12\n\x10\x61\x63tive_edge_enumB\x12\n\x10sample_mode_enum\"*\n\x18\x43\x66gSampClkTimingResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xc3\x01\n\x17\x43\x66gTimeStartTrigRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12(\n\x04when\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12-\n\ttimescale\x18\x03 \x01(\x0e\x32\x18.nidaqmx_grpc.Timescale2H\x00\x12\x17\n\rtimescale_raw\x18\x04 \x01(\x05H\x00\x42\x10\n\x0etimescale_enum\"*\n\x18\x43\x66gTimeStartTrigResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xb8\x01\n\x1f\x43\x66gWatchdogAOExpirStatesRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x15\n\rchannel_names\x18\x02 \x01(\t\x12\x19\n\x11\x65xpir_state_array\x18\x03 \x03(\x01\x12=\n\x11output_type_array\x18\x04 \x03(\x0e\x32\".nidaqmx_grpc.WatchdogAOOutputType\"2\n CfgWatchdogAOExpirStatesResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x9d\x01\n\x1f\x43\x66gWatchdogCOExpirStatesRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x15\n\rchannel_names\x18\x02 \x01(\t\x12=\n\x11\x65xpir_state_array\x18\x03 \x03(\x0e\x32\".nidaqmx_grpc.WatchdogCOExpirState\"2\n CfgWatchdogCOExpirStatesResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x99\x01\n\x1f\x43\x66gWatchdogDOExpirStatesRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x15\n\rchannel_names\x18\x02 \x01(\t\x12\x39\n\x11\x65xpir_state_array\x18\x03 \x03(\x0e\x32\x1e.nidaqmx_grpc.DigitalLineState\"2\n CfgWatchdogDOExpirStatesResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\",\n\x10\x43learTEDSRequest\x12\x18\n\x10physical_channel\x18\x01 \x01(\t\"#\n\x11\x43learTEDSResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"8\n\x10\x43learTaskRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\"#\n\x11\x43learTaskResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xaa\x02\n\x17\x43onfigureLoggingRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x11\n\tfile_path\x18\x02 \x01(\t\x12\x31\n\x0clogging_mode\x18\x03 \x01(\x0e\x32\x19.nidaqmx_grpc.LoggingModeH\x00\x12\x1a\n\x10logging_mode_raw\x18\x04 \x01(\x05H\x00\x12\x12\n\ngroup_name\x18\x05 \x01(\t\x12\x33\n\toperation\x18\x06 \x01(\x0e\x32\x1e.nidaqmx_grpc.LoggingOperationH\x01\x12\x17\n\roperation_raw\x18\x07 \x01(\x05H\x01\x42\x13\n\x11logging_mode_enumB\x10\n\x0eoperation_enum\"*\n\x18\x43onfigureLoggingResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"C\n\x14\x43onfigureTEDSRequest\x12\x18\n\x10physical_channel\x18\x01 \x01(\t\x12\x11\n\tfile_path\x18\x02 \x01(\t\"\'\n\x15\x43onfigureTEDSResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xbf\x01\n\x13\x43onnectTermsRequest\x12\x17\n\x0fsource_terminal\x18\x01 \x01(\t\x12\x1c\n\x14\x64\x65stination_terminal\x18\x02 \x01(\t\x12\x38\n\x10signal_modifiers\x18\x03 \x01(\x0e\x32\x1c.nidaqmx_grpc.InvertPolarityH\x00\x12\x1e\n\x14signal_modifiers_raw\x18\x04 \x01(\x05H\x00\x42\x17\n\x15signal_modifiers_enum\"&\n\x14\x43onnectTermsResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x9e\x01\n\x1a\x43ontrolWatchdogTaskRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x35\n\x06\x61\x63tion\x18\x02 \x01(\x0e\x32#.nidaqmx_grpc.WatchdogControlActionH\x00\x12\x14\n\naction_raw\x18\x03 \x01(\x05H\x00\x42\r\n\x0b\x61\x63tion_enum\"-\n\x1b\x43ontrolWatchdogTaskResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xde\x05\n&CreateAIAccel4WireDCVoltageChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12@\n\x0fterminal_config\x18\x04 \x01(\x0e\x32%.nidaqmx_grpc.InputTermCfgWithDefaultH\x00\x12\x1d\n\x13terminal_config_raw\x18\x05 \x01(\x05H\x00\x12\x0f\n\x07min_val\x18\x06 \x01(\x01\x12\x0f\n\x07max_val\x18\x07 \x01(\x01\x12*\n\x05units\x18\x08 \x01(\x0e\x32\x19.nidaqmx_grpc.AccelUnits2H\x01\x12\x13\n\tunits_raw\x18\t \x01(\x05H\x01\x12\x13\n\x0bsensitivity\x18\n \x01(\x01\x12\x41\n\x11sensitivity_units\x18\x0b \x01(\x0e\x32$.nidaqmx_grpc.AccelSensitivityUnits1H\x02\x12\x1f\n\x15sensitivity_units_raw\x18\x0c \x01(\x05H\x02\x12>\n\x14voltage_excit_source\x18\r \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x03\x12\"\n\x18voltage_excit_source_raw\x18\x0e \x01(\x05H\x03\x12\x19\n\x11voltage_excit_val\x18\x0f \x01(\x01\x12\x1d\n\x15use_excit_for_scaling\x18\x10 \x01(\x08\x12\x19\n\x11\x63ustom_scale_name\x18\x11 \x01(\tB\x16\n\x14terminal_config_enumB\x0c\n\nunits_enumB\x18\n\x16sensitivity_units_enumB\x1b\n\x19voltage_excit_source_enum\"9\n\'CreateAIAccel4WireDCVoltageChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xb1\x05\n\x18\x43reateAIAccelChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12@\n\x0fterminal_config\x18\x04 \x01(\x0e\x32%.nidaqmx_grpc.InputTermCfgWithDefaultH\x00\x12\x1d\n\x13terminal_config_raw\x18\x05 \x01(\x05H\x00\x12\x0f\n\x07min_val\x18\x06 \x01(\x01\x12\x0f\n\x07max_val\x18\x07 \x01(\x01\x12*\n\x05units\x18\x08 \x01(\x0e\x32\x19.nidaqmx_grpc.AccelUnits2H\x01\x12\x13\n\tunits_raw\x18\t \x01(\x05H\x01\x12\x13\n\x0bsensitivity\x18\n \x01(\x01\x12\x41\n\x11sensitivity_units\x18\x0b \x01(\x0e\x32$.nidaqmx_grpc.AccelSensitivityUnits1H\x02\x12\x1f\n\x15sensitivity_units_raw\x18\x0c \x01(\x05H\x02\x12>\n\x14\x63urrent_excit_source\x18\r \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x03\x12\"\n\x18\x63urrent_excit_source_raw\x18\x0e \x01(\x05H\x03\x12\x19\n\x11\x63urrent_excit_val\x18\x0f \x01(\x01\x12\x19\n\x11\x63ustom_scale_name\x18\x10 \x01(\tB\x16\n\x14terminal_config_enumB\x0c\n\nunits_enumB\x18\n\x16sensitivity_units_enumB\x1b\n\x19\x63urrent_excit_source_enum\"+\n\x19\x43reateAIAccelChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xa0\x04\n\x1e\x43reateAIAccelChargeChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12@\n\x0fterminal_config\x18\x04 \x01(\x0e\x32%.nidaqmx_grpc.InputTermCfgWithDefaultH\x00\x12\x1d\n\x13terminal_config_raw\x18\x05 \x01(\x05H\x00\x12\x0f\n\x07min_val\x18\x06 \x01(\x01\x12\x0f\n\x07max_val\x18\x07 \x01(\x01\x12*\n\x05units\x18\x08 \x01(\x0e\x32\x19.nidaqmx_grpc.AccelUnits2H\x01\x12\x13\n\tunits_raw\x18\t \x01(\x05H\x01\x12\x13\n\x0bsensitivity\x18\n \x01(\x01\x12\x46\n\x11sensitivity_units\x18\x0b \x01(\x0e\x32).nidaqmx_grpc.AccelChargeSensitivityUnitsH\x02\x12\x1f\n\x15sensitivity_units_raw\x18\x0c \x01(\x05H\x02\x12\x19\n\x11\x63ustom_scale_name\x18\r \x01(\tB\x16\n\x14terminal_config_enumB\x0c\n\nunits_enumB\x18\n\x16sensitivity_units_enum\"1\n\x1f\x43reateAIAccelChargeChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xb9\x04\n\x19\x43reateAIBridgeChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12*\n\x05units\x18\x06 \x01(\x0e\x32\x19.nidaqmx_grpc.BridgeUnitsH\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12;\n\rbridge_config\x18\x08 \x01(\x0e\x32\".nidaqmx_grpc.BridgeConfiguration1H\x01\x12\x1b\n\x11\x62ridge_config_raw\x18\t \x01(\x05H\x01\x12>\n\x14voltage_excit_source\x18\n \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x02\x12\"\n\x18voltage_excit_source_raw\x18\x0b \x01(\x05H\x02\x12\x19\n\x11voltage_excit_val\x18\x0c \x01(\x01\x12!\n\x19nominal_bridge_resistance\x18\r \x01(\x01\x12\x19\n\x11\x63ustom_scale_name\x18\x0e \x01(\tB\x0c\n\nunits_enumB\x14\n\x12\x62ridge_config_enumB\x1b\n\x19voltage_excit_source_enum\",\n\x1a\x43reateAIBridgeChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x83\x03\n\x19\x43reateAIChargeChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12@\n\x0fterminal_config\x18\x04 \x01(\x0e\x32%.nidaqmx_grpc.InputTermCfgWithDefaultH\x00\x12\x1d\n\x13terminal_config_raw\x18\x05 \x01(\x05H\x00\x12\x0f\n\x07min_val\x18\x06 \x01(\x01\x12\x0f\n\x07max_val\x18\x07 \x01(\x01\x12*\n\x05units\x18\x08 \x01(\x0e\x32\x19.nidaqmx_grpc.ChargeUnitsH\x01\x12\x13\n\tunits_raw\x18\t \x01(\x05H\x01\x12\x19\n\x11\x63ustom_scale_name\x18\n \x01(\tB\x16\n\x14terminal_config_enumB\x0c\n\nunits_enum\",\n\x1a\x43reateAIChargeChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xb8\x04\n\x1a\x43reateAICurrentChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12@\n\x0fterminal_config\x18\x04 \x01(\x0e\x32%.nidaqmx_grpc.InputTermCfgWithDefaultH\x00\x12\x1d\n\x13terminal_config_raw\x18\x05 \x01(\x05H\x00\x12\x0f\n\x07min_val\x18\x06 \x01(\x01\x12\x0f\n\x07max_val\x18\x07 \x01(\x01\x12,\n\x05units\x18\x08 \x01(\x0e\x32\x1b.nidaqmx_grpc.CurrentUnits2H\x01\x12\x13\n\tunits_raw\x18\t \x01(\x05H\x01\x12S\n\x12shunt_resistor_loc\x18\n \x01(\x0e\x32\x35.nidaqmx_grpc.CurrentShuntResistorLocationWithDefaultH\x02\x12 \n\x16shunt_resistor_loc_raw\x18\x0b \x01(\x05H\x02\x12\x1e\n\x16\x65xt_shunt_resistor_val\x18\x0c \x01(\x01\x12\x19\n\x11\x63ustom_scale_name\x18\r \x01(\tB\x16\n\x14terminal_config_enumB\x0c\n\nunits_enumB\x19\n\x17shunt_resistor_loc_enum\"-\n\x1b\x43reateAICurrentChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xbb\x04\n\x1d\x43reateAICurrentRMSChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12@\n\x0fterminal_config\x18\x04 \x01(\x0e\x32%.nidaqmx_grpc.InputTermCfgWithDefaultH\x00\x12\x1d\n\x13terminal_config_raw\x18\x05 \x01(\x05H\x00\x12\x0f\n\x07min_val\x18\x06 \x01(\x01\x12\x0f\n\x07max_val\x18\x07 \x01(\x01\x12,\n\x05units\x18\x08 \x01(\x0e\x32\x1b.nidaqmx_grpc.CurrentUnits2H\x01\x12\x13\n\tunits_raw\x18\t \x01(\x05H\x01\x12S\n\x12shunt_resistor_loc\x18\n \x01(\x0e\x32\x35.nidaqmx_grpc.CurrentShuntResistorLocationWithDefaultH\x02\x12 \n\x16shunt_resistor_loc_raw\x18\x0b \x01(\x05H\x02\x12\x1e\n\x16\x65xt_shunt_resistor_val\x18\x0c \x01(\x01\x12\x19\n\x11\x63ustom_scale_name\x18\r \x01(\tB\x16\n\x14terminal_config_enumB\x0c\n\nunits_enumB\x19\n\x17shunt_resistor_loc_enum\"0\n\x1e\x43reateAICurrentRMSChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xe3\x06\n(CreateAIForceBridgePolynomialChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12)\n\x05units\x18\x06 \x01(\x0e\x32\x18.nidaqmx_grpc.ForceUnitsH\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12;\n\rbridge_config\x18\x08 \x01(\x0e\x32\".nidaqmx_grpc.BridgeConfiguration1H\x01\x12\x1b\n\x11\x62ridge_config_raw\x18\t \x01(\x05H\x01\x12>\n\x14voltage_excit_source\x18\n \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x02\x12\"\n\x18voltage_excit_source_raw\x18\x0b \x01(\x05H\x02\x12\x19\n\x11voltage_excit_val\x18\x0c \x01(\x01\x12!\n\x19nominal_bridge_resistance\x18\r \x01(\x01\x12\x16\n\x0e\x66orward_coeffs\x18\x0e \x03(\x01\x12\x16\n\x0ereverse_coeffs\x18\x0f \x03(\x01\x12?\n\x10\x65lectrical_units\x18\x10 \x01(\x0e\x32#.nidaqmx_grpc.BridgeElectricalUnitsH\x03\x12\x1e\n\x14\x65lectrical_units_raw\x18\x11 \x01(\x05H\x03\x12;\n\x0ephysical_units\x18\x12 \x01(\x0e\x32!.nidaqmx_grpc.BridgePhysicalUnitsH\x04\x12\x1c\n\x12physical_units_raw\x18\x13 \x01(\x05H\x04\x12\x19\n\x11\x63ustom_scale_name\x18\x14 \x01(\tB\x0c\n\nunits_enumB\x14\n\x12\x62ridge_config_enumB\x1b\n\x19voltage_excit_source_enumB\x17\n\x15\x65lectrical_units_enumB\x15\n\x13physical_units_enum\";\n)CreateAIForceBridgePolynomialChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xde\x06\n#CreateAIForceBridgeTableChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12)\n\x05units\x18\x06 \x01(\x0e\x32\x18.nidaqmx_grpc.ForceUnitsH\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12;\n\rbridge_config\x18\x08 \x01(\x0e\x32\".nidaqmx_grpc.BridgeConfiguration1H\x01\x12\x1b\n\x11\x62ridge_config_raw\x18\t \x01(\x05H\x01\x12>\n\x14voltage_excit_source\x18\n \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x02\x12\"\n\x18voltage_excit_source_raw\x18\x0b \x01(\x05H\x02\x12\x19\n\x11voltage_excit_val\x18\x0c \x01(\x01\x12!\n\x19nominal_bridge_resistance\x18\r \x01(\x01\x12\x17\n\x0f\x65lectrical_vals\x18\x0e \x03(\x01\x12?\n\x10\x65lectrical_units\x18\x0f \x01(\x0e\x32#.nidaqmx_grpc.BridgeElectricalUnitsH\x03\x12\x1e\n\x14\x65lectrical_units_raw\x18\x10 \x01(\x05H\x03\x12\x15\n\rphysical_vals\x18\x11 \x03(\x01\x12;\n\x0ephysical_units\x18\x12 \x01(\x0e\x32!.nidaqmx_grpc.BridgePhysicalUnitsH\x04\x12\x1c\n\x12physical_units_raw\x18\x13 \x01(\x05H\x04\x12\x19\n\x11\x63ustom_scale_name\x18\x14 \x01(\tB\x0c\n\nunits_enumB\x14\n\x12\x62ridge_config_enumB\x1b\n\x19voltage_excit_source_enumB\x17\n\x15\x65lectrical_units_enumB\x15\n\x13physical_units_enum\"6\n$CreateAIForceBridgeTableChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xaa\x07\n)CreateAIForceBridgeTwoPointLinChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12)\n\x05units\x18\x06 \x01(\x0e\x32\x18.nidaqmx_grpc.ForceUnitsH\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12;\n\rbridge_config\x18\x08 \x01(\x0e\x32\".nidaqmx_grpc.BridgeConfiguration1H\x01\x12\x1b\n\x11\x62ridge_config_raw\x18\t \x01(\x05H\x01\x12>\n\x14voltage_excit_source\x18\n \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x02\x12\"\n\x18voltage_excit_source_raw\x18\x0b \x01(\x05H\x02\x12\x19\n\x11voltage_excit_val\x18\x0c \x01(\x01\x12!\n\x19nominal_bridge_resistance\x18\r \x01(\x01\x12\x1c\n\x14\x66irst_electrical_val\x18\x0e \x01(\x01\x12\x1d\n\x15second_electrical_val\x18\x0f \x01(\x01\x12?\n\x10\x65lectrical_units\x18\x10 \x01(\x0e\x32#.nidaqmx_grpc.BridgeElectricalUnitsH\x03\x12\x1e\n\x14\x65lectrical_units_raw\x18\x11 \x01(\x05H\x03\x12\x1a\n\x12\x66irst_physical_val\x18\x12 \x01(\x01\x12\x1b\n\x13second_physical_val\x18\x13 \x01(\x01\x12;\n\x0ephysical_units\x18\x14 \x01(\x0e\x32!.nidaqmx_grpc.BridgePhysicalUnitsH\x04\x12\x1c\n\x12physical_units_raw\x18\x15 \x01(\x05H\x04\x12\x19\n\x11\x63ustom_scale_name\x18\x16 \x01(\tB\x0c\n\nunits_enumB\x14\n\x12\x62ridge_config_enumB\x1b\n\x19voltage_excit_source_enumB\x17\n\x15\x65lectrical_units_enumB\x15\n\x13physical_units_enum\"<\n*CreateAIForceBridgeTwoPointLinChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xc1\x05\n\x1c\x43reateAIForceIEPEChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12@\n\x0fterminal_config\x18\x04 \x01(\x0e\x32%.nidaqmx_grpc.InputTermCfgWithDefaultH\x00\x12\x1d\n\x13terminal_config_raw\x18\x05 \x01(\x05H\x00\x12\x0f\n\x07min_val\x18\x06 \x01(\x01\x12\x0f\n\x07max_val\x18\x07 \x01(\x01\x12-\n\x05units\x18\x08 \x01(\x0e\x32\x1c.nidaqmx_grpc.ForceIEPEUnitsH\x01\x12\x13\n\tunits_raw\x18\t \x01(\x05H\x01\x12\x13\n\x0bsensitivity\x18\n \x01(\x01\x12J\n\x11sensitivity_units\x18\x0b \x01(\x0e\x32-.nidaqmx_grpc.ForceIEPESensorSensitivityUnitsH\x02\x12\x1f\n\x15sensitivity_units_raw\x18\x0c \x01(\x05H\x02\x12>\n\x14\x63urrent_excit_source\x18\r \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x03\x12\"\n\x18\x63urrent_excit_source_raw\x18\x0e \x01(\x05H\x03\x12\x19\n\x11\x63urrent_excit_val\x18\x0f \x01(\x01\x12\x19\n\x11\x63ustom_scale_name\x18\x10 \x01(\tB\x16\n\x14terminal_config_enumB\x0c\n\nunits_enumB\x18\n\x16sensitivity_units_enumB\x1b\n\x19\x63urrent_excit_source_enum\"/\n\x1d\x43reateAIForceIEPEChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xbf\x02\n\x1e\x43reateAIFreqVoltageChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12-\n\x05units\x18\x06 \x01(\x0e\x32\x1c.nidaqmx_grpc.FrequencyUnitsH\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12\x17\n\x0fthreshold_level\x18\x08 \x01(\x01\x12\x12\n\nhysteresis\x18\t \x01(\x01\x12\x19\n\x11\x63ustom_scale_name\x18\n \x01(\tB\x0c\n\nunits_enum\"1\n\x1f\x43reateAIFreqVoltageChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xbf\x04\n\x1d\x43reateAIMicrophoneChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12@\n\x0fterminal_config\x18\x04 \x01(\x0e\x32%.nidaqmx_grpc.InputTermCfgWithDefaultH\x00\x12\x1d\n\x13terminal_config_raw\x18\x05 \x01(\x05H\x00\x12\x32\n\x05units\x18\x06 \x01(\x0e\x32!.nidaqmx_grpc.SoundPressureUnits1H\x01\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x01\x12\x17\n\x0fmic_sensitivity\x18\x08 \x01(\x01\x12\x1b\n\x13max_snd_press_level\x18\t \x01(\x01\x12>\n\x14\x63urrent_excit_source\x18\n \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x02\x12\"\n\x18\x63urrent_excit_source_raw\x18\x0b \x01(\x05H\x02\x12\x19\n\x11\x63urrent_excit_val\x18\x0c \x01(\x01\x12\x19\n\x11\x63ustom_scale_name\x18\r \x01(\tB\x16\n\x14terminal_config_enumB\x0c\n\nunits_enumB\x1b\n\x19\x63urrent_excit_source_enum\"0\n\x1e\x43reateAIMicrophoneChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xba\x03\n\'CreateAIPosEddyCurrProxProbeChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12+\n\x05units\x18\x06 \x01(\x0e\x32\x1a.nidaqmx_grpc.LengthUnits2H\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12\x13\n\x0bsensitivity\x18\x08 \x01(\x01\x12O\n\x11sensitivity_units\x18\t \x01(\x0e\x32\x32.nidaqmx_grpc.EddyCurrentProxProbeSensitivityUnitsH\x01\x12\x1f\n\x15sensitivity_units_raw\x18\n \x01(\x05H\x01\x12\x19\n\x11\x63ustom_scale_name\x18\x0b \x01(\tB\x0c\n\nunits_enumB\x18\n\x16sensitivity_units_enum\":\n(CreateAIPosEddyCurrProxProbeChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xd0\x05\n\x1a\x43reateAIPosLVDTChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12+\n\x05units\x18\x06 \x01(\x0e\x32\x1a.nidaqmx_grpc.LengthUnits2H\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12\x13\n\x0bsensitivity\x18\x08 \x01(\x01\x12@\n\x11sensitivity_units\x18\t \x01(\x0e\x32#.nidaqmx_grpc.LVDTSensitivityUnits1H\x01\x12\x1f\n\x15sensitivity_units_raw\x18\n \x01(\x05H\x01\x12>\n\x14voltage_excit_source\x18\x0b \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x02\x12\"\n\x18voltage_excit_source_raw\x18\x0c \x01(\x05H\x02\x12\x19\n\x11voltage_excit_val\x18\r \x01(\x01\x12\x1a\n\x12voltage_excit_freq\x18\x0e \x01(\x01\x12;\n\x12\x61\x63_excit_wire_mode\x18\x0f \x01(\x0e\x32\x1d.nidaqmx_grpc.ACExcitWireModeH\x03\x12 \n\x16\x61\x63_excit_wire_mode_raw\x18\x10 \x01(\x05H\x03\x12\x19\n\x11\x63ustom_scale_name\x18\x11 \x01(\tB\x0c\n\nunits_enumB\x18\n\x16sensitivity_units_enumB\x1b\n\x19voltage_excit_source_enumB\x19\n\x17\x61\x63_excit_wire_mode_enum\"-\n\x1b\x43reateAIPosLVDTChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xcf\x05\n\x1a\x43reateAIPosRVDTChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12*\n\x05units\x18\x06 \x01(\x0e\x32\x19.nidaqmx_grpc.AngleUnits1H\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12\x13\n\x0bsensitivity\x18\x08 \x01(\x01\x12@\n\x11sensitivity_units\x18\t \x01(\x0e\x32#.nidaqmx_grpc.RVDTSensitivityUnits1H\x01\x12\x1f\n\x15sensitivity_units_raw\x18\n \x01(\x05H\x01\x12>\n\x14voltage_excit_source\x18\x0b \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x02\x12\"\n\x18voltage_excit_source_raw\x18\x0c \x01(\x05H\x02\x12\x19\n\x11voltage_excit_val\x18\r \x01(\x01\x12\x1a\n\x12voltage_excit_freq\x18\x0e \x01(\x01\x12;\n\x12\x61\x63_excit_wire_mode\x18\x0f \x01(\x0e\x32\x1d.nidaqmx_grpc.ACExcitWireModeH\x03\x12 \n\x16\x61\x63_excit_wire_mode_raw\x18\x10 \x01(\x05H\x03\x12\x19\n\x11\x63ustom_scale_name\x18\x11 \x01(\tB\x0c\n\nunits_enumB\x18\n\x16sensitivity_units_enumB\x1b\n\x19voltage_excit_source_enumB\x19\n\x17\x61\x63_excit_wire_mode_enum\"-\n\x1b\x43reateAIPosRVDTChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xc8\x01\n\x18\x43reateAIPowerChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x18\n\x10voltage_setpoint\x18\x04 \x01(\x01\x12\x18\n\x10\x63urrent_setpoint\x18\x05 \x01(\x01\x12\x15\n\routput_enable\x18\x06 \x01(\x08\"+\n\x19\x43reateAIPowerChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xe9\x06\n+CreateAIPressureBridgePolynomialChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12,\n\x05units\x18\x06 \x01(\x0e\x32\x1b.nidaqmx_grpc.PressureUnitsH\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12;\n\rbridge_config\x18\x08 \x01(\x0e\x32\".nidaqmx_grpc.BridgeConfiguration1H\x01\x12\x1b\n\x11\x62ridge_config_raw\x18\t \x01(\x05H\x01\x12>\n\x14voltage_excit_source\x18\n \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x02\x12\"\n\x18voltage_excit_source_raw\x18\x0b \x01(\x05H\x02\x12\x19\n\x11voltage_excit_val\x18\x0c \x01(\x01\x12!\n\x19nominal_bridge_resistance\x18\r \x01(\x01\x12\x16\n\x0e\x66orward_coeffs\x18\x0e \x03(\x01\x12\x16\n\x0ereverse_coeffs\x18\x0f \x03(\x01\x12?\n\x10\x65lectrical_units\x18\x10 \x01(\x0e\x32#.nidaqmx_grpc.BridgeElectricalUnitsH\x03\x12\x1e\n\x14\x65lectrical_units_raw\x18\x11 \x01(\x05H\x03\x12;\n\x0ephysical_units\x18\x12 \x01(\x0e\x32!.nidaqmx_grpc.BridgePhysicalUnitsH\x04\x12\x1c\n\x12physical_units_raw\x18\x13 \x01(\x05H\x04\x12\x19\n\x11\x63ustom_scale_name\x18\x14 \x01(\tB\x0c\n\nunits_enumB\x14\n\x12\x62ridge_config_enumB\x1b\n\x19voltage_excit_source_enumB\x17\n\x15\x65lectrical_units_enumB\x15\n\x13physical_units_enum\">\n,CreateAIPressureBridgePolynomialChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xe4\x06\n&CreateAIPressureBridgeTableChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12,\n\x05units\x18\x06 \x01(\x0e\x32\x1b.nidaqmx_grpc.PressureUnitsH\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12;\n\rbridge_config\x18\x08 \x01(\x0e\x32\".nidaqmx_grpc.BridgeConfiguration1H\x01\x12\x1b\n\x11\x62ridge_config_raw\x18\t \x01(\x05H\x01\x12>\n\x14voltage_excit_source\x18\n \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x02\x12\"\n\x18voltage_excit_source_raw\x18\x0b \x01(\x05H\x02\x12\x19\n\x11voltage_excit_val\x18\x0c \x01(\x01\x12!\n\x19nominal_bridge_resistance\x18\r \x01(\x01\x12\x17\n\x0f\x65lectrical_vals\x18\x0e \x03(\x01\x12?\n\x10\x65lectrical_units\x18\x0f \x01(\x0e\x32#.nidaqmx_grpc.BridgeElectricalUnitsH\x03\x12\x1e\n\x14\x65lectrical_units_raw\x18\x10 \x01(\x05H\x03\x12\x15\n\rphysical_vals\x18\x11 \x03(\x01\x12;\n\x0ephysical_units\x18\x12 \x01(\x0e\x32!.nidaqmx_grpc.BridgePhysicalUnitsH\x04\x12\x1c\n\x12physical_units_raw\x18\x13 \x01(\x05H\x04\x12\x19\n\x11\x63ustom_scale_name\x18\x14 \x01(\tB\x0c\n\nunits_enumB\x14\n\x12\x62ridge_config_enumB\x1b\n\x19voltage_excit_source_enumB\x17\n\x15\x65lectrical_units_enumB\x15\n\x13physical_units_enum\"9\n\'CreateAIPressureBridgeTableChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xb0\x07\n,CreateAIPressureBridgeTwoPointLinChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12,\n\x05units\x18\x06 \x01(\x0e\x32\x1b.nidaqmx_grpc.PressureUnitsH\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12;\n\rbridge_config\x18\x08 \x01(\x0e\x32\".nidaqmx_grpc.BridgeConfiguration1H\x01\x12\x1b\n\x11\x62ridge_config_raw\x18\t \x01(\x05H\x01\x12>\n\x14voltage_excit_source\x18\n \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x02\x12\"\n\x18voltage_excit_source_raw\x18\x0b \x01(\x05H\x02\x12\x19\n\x11voltage_excit_val\x18\x0c \x01(\x01\x12!\n\x19nominal_bridge_resistance\x18\r \x01(\x01\x12\x1c\n\x14\x66irst_electrical_val\x18\x0e \x01(\x01\x12\x1d\n\x15second_electrical_val\x18\x0f \x01(\x01\x12?\n\x10\x65lectrical_units\x18\x10 \x01(\x0e\x32#.nidaqmx_grpc.BridgeElectricalUnitsH\x03\x12\x1e\n\x14\x65lectrical_units_raw\x18\x11 \x01(\x05H\x03\x12\x1a\n\x12\x66irst_physical_val\x18\x12 \x01(\x01\x12\x1b\n\x13second_physical_val\x18\x13 \x01(\x01\x12;\n\x0ephysical_units\x18\x14 \x01(\x0e\x32!.nidaqmx_grpc.BridgePhysicalUnitsH\x04\x12\x1c\n\x12physical_units_raw\x18\x15 \x01(\x05H\x04\x12\x19\n\x11\x63ustom_scale_name\x18\x16 \x01(\tB\x0c\n\nunits_enumB\x14\n\x12\x62ridge_config_enumB\x1b\n\x19voltage_excit_source_enumB\x17\n\x15\x65lectrical_units_enumB\x15\n\x13physical_units_enum\"?\n-CreateAIPressureBridgeTwoPointLinChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xed\x04\n\x16\x43reateAIRTDChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12/\n\x05units\x18\x06 \x01(\x0e\x32\x1e.nidaqmx_grpc.TemperatureUnitsH\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12*\n\x08rtd_type\x18\x08 \x01(\x0e\x32\x16.nidaqmx_grpc.RTDType1H\x01\x12\x16\n\x0crtd_type_raw\x18\t \x01(\x05H\x01\x12\x42\n\x11resistance_config\x18\n \x01(\x0e\x32%.nidaqmx_grpc.ResistanceConfigurationH\x02\x12\x1f\n\x15resistance_config_raw\x18\x0b \x01(\x05H\x02\x12>\n\x14\x63urrent_excit_source\x18\x0c \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x03\x12\"\n\x18\x63urrent_excit_source_raw\x18\r \x01(\x05H\x03\x12\x19\n\x11\x63urrent_excit_val\x18\x0e \x01(\x01\x12\n\n\x02r0\x18\x0f \x01(\x01\x42\x0c\n\nunits_enumB\x0f\n\rrtd_type_enumB\x18\n\x16resistance_config_enumB\x1b\n\x19\x63urrent_excit_source_enum\")\n\x17\x43reateAIRTDChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xae\x04\n\x1d\x43reateAIResistanceChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12/\n\x05units\x18\x06 \x01(\x0e\x32\x1e.nidaqmx_grpc.ResistanceUnits2H\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12\x42\n\x11resistance_config\x18\x08 \x01(\x0e\x32%.nidaqmx_grpc.ResistanceConfigurationH\x01\x12\x1f\n\x15resistance_config_raw\x18\t \x01(\x05H\x01\x12>\n\x14\x63urrent_excit_source\x18\n \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x02\x12\"\n\x18\x63urrent_excit_source_raw\x18\x0b \x01(\x05H\x02\x12\x19\n\x11\x63urrent_excit_val\x18\x0c \x01(\x01\x12\x19\n\x11\x63ustom_scale_name\x18\r \x01(\tB\x0c\n\nunits_enumB\x18\n\x16resistance_config_enumB\x1b\n\x19\x63urrent_excit_source_enum\"0\n\x1e\x43reateAIResistanceChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xf7\x05\n$CreateAIRosetteStrainGageChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12;\n\x0crosette_type\x18\x06 \x01(\x0e\x32#.nidaqmx_grpc.StrainGageRosetteTypeH\x00\x12\x1a\n\x10rosette_type_raw\x18\x07 \x01(\x05H\x00\x12\x18\n\x10gage_orientation\x18\x08 \x01(\x01\x12J\n\x12rosette_meas_types\x18\t \x03(\x0e\x32..nidaqmx_grpc.StrainGageRosetteMeasurementType\x12<\n\rstrain_config\x18\n \x01(\x0e\x32#.nidaqmx_grpc.StrainGageBridgeType1H\x01\x12\x1b\n\x11strain_config_raw\x18\x0b \x01(\x05H\x01\x12>\n\x14voltage_excit_source\x18\x0c \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x02\x12\"\n\x18voltage_excit_source_raw\x18\r \x01(\x05H\x02\x12\x19\n\x11voltage_excit_val\x18\x0e \x01(\x01\x12\x13\n\x0bgage_factor\x18\x0f \x01(\x01\x12\x1f\n\x17nominal_gage_resistance\x18\x10 \x01(\x01\x12\x15\n\rpoisson_ratio\x18\x11 \x01(\x01\x12\x1c\n\x14lead_wire_resistance\x18\x12 \x01(\x01\x42\x13\n\x11rosette_type_enumB\x14\n\x12strain_config_enumB\x1b\n\x19voltage_excit_source_enum\"7\n%CreateAIRosetteStrainGageChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xa7\x05\n\x1d\x43reateAIStrainGageChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12+\n\x05units\x18\x06 \x01(\x0e\x32\x1a.nidaqmx_grpc.StrainUnits1H\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12<\n\rstrain_config\x18\x08 \x01(\x0e\x32#.nidaqmx_grpc.StrainGageBridgeType1H\x01\x12\x1b\n\x11strain_config_raw\x18\t \x01(\x05H\x01\x12>\n\x14voltage_excit_source\x18\n \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x02\x12\"\n\x18voltage_excit_source_raw\x18\x0b \x01(\x05H\x02\x12\x19\n\x11voltage_excit_val\x18\x0c \x01(\x01\x12\x13\n\x0bgage_factor\x18\r \x01(\x01\x12\x1e\n\x16initial_bridge_voltage\x18\x0e \x01(\x01\x12\x1f\n\x17nominal_gage_resistance\x18\x0f \x01(\x01\x12\x15\n\rpoisson_ratio\x18\x10 \x01(\x01\x12\x1c\n\x14lead_wire_resistance\x18\x11 \x01(\x01\x12\x19\n\x11\x63ustom_scale_name\x18\x12 \x01(\tB\x0c\n\nunits_enumB\x14\n\x12strain_config_enumB\x1b\n\x19voltage_excit_source_enum\"0\n\x1e\x43reateAIStrainGageChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xdd\x01\n$CreateAITempBuiltInSensorChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12/\n\x05units\x18\x04 \x01(\x0e\x32\x1e.nidaqmx_grpc.TemperatureUnitsH\x00\x12\x13\n\tunits_raw\x18\x05 \x01(\x05H\x00\x42\x0c\n\nunits_enum\"7\n%CreateAITempBuiltInSensorChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xf1\x03\n\x1a\x43reateAIThrmcplChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12/\n\x05units\x18\x06 \x01(\x0e\x32\x1e.nidaqmx_grpc.TemperatureUnitsH\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12<\n\x11thermocouple_type\x18\x08 \x01(\x0e\x32\x1f.nidaqmx_grpc.ThermocoupleType1H\x01\x12\x1f\n\x15thermocouple_type_raw\x18\t \x01(\x05H\x01\x12.\n\ncjc_source\x18\n \x01(\x0e\x32\x18.nidaqmx_grpc.CJCSource1H\x02\x12\x18\n\x0e\x63jc_source_raw\x18\x0b \x01(\x05H\x02\x12\x0f\n\x07\x63jc_val\x18\x0c \x01(\x01\x12\x13\n\x0b\x63jc_channel\x18\r \x01(\tB\x0c\n\nunits_enumB\x18\n\x16thermocouple_type_enumB\x11\n\x0f\x63jc_source_enum\"-\n\x1b\x43reateAIThrmcplChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xb4\x04\n\x1d\x43reateAIThrmstrChanIexRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12/\n\x05units\x18\x06 \x01(\x0e\x32\x1e.nidaqmx_grpc.TemperatureUnitsH\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12\x42\n\x11resistance_config\x18\x08 \x01(\x0e\x32%.nidaqmx_grpc.ResistanceConfigurationH\x01\x12\x1f\n\x15resistance_config_raw\x18\t \x01(\x05H\x01\x12>\n\x14\x63urrent_excit_source\x18\n \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x02\x12\"\n\x18\x63urrent_excit_source_raw\x18\x0b \x01(\x05H\x02\x12\x19\n\x11\x63urrent_excit_val\x18\x0c \x01(\x01\x12\t\n\x01\x61\x18\r \x01(\x01\x12\t\n\x01\x62\x18\x0e \x01(\x01\x12\t\n\x01\x63\x18\x0f \x01(\x01\x42\x0c\n\nunits_enumB\x18\n\x16resistance_config_enumB\x1b\n\x19\x63urrent_excit_source_enum\"0\n\x1e\x43reateAIThrmstrChanIexResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xc0\x04\n\x1d\x43reateAIThrmstrChanVexRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12/\n\x05units\x18\x06 \x01(\x0e\x32\x1e.nidaqmx_grpc.TemperatureUnitsH\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12\x42\n\x11resistance_config\x18\x08 \x01(\x0e\x32%.nidaqmx_grpc.ResistanceConfigurationH\x01\x12\x1f\n\x15resistance_config_raw\x18\t \x01(\x05H\x01\x12>\n\x14voltage_excit_source\x18\n \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x02\x12\"\n\x18voltage_excit_source_raw\x18\x0b \x01(\x05H\x02\x12\x19\n\x11voltage_excit_val\x18\x0c \x01(\x01\x12\t\n\x01\x61\x18\r \x01(\x01\x12\t\n\x01\x62\x18\x0e \x01(\x01\x12\t\n\x01\x63\x18\x0f \x01(\x01\x12\n\n\x02r1\x18\x10 \x01(\x01\x42\x0c\n\nunits_enumB\x18\n\x16resistance_config_enumB\x1b\n\x19voltage_excit_source_enum\"0\n\x1e\x43reateAIThrmstrChanVexResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xe5\x06\n)CreateAITorqueBridgePolynomialChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12*\n\x05units\x18\x06 \x01(\x0e\x32\x19.nidaqmx_grpc.TorqueUnitsH\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12;\n\rbridge_config\x18\x08 \x01(\x0e\x32\".nidaqmx_grpc.BridgeConfiguration1H\x01\x12\x1b\n\x11\x62ridge_config_raw\x18\t \x01(\x05H\x01\x12>\n\x14voltage_excit_source\x18\n \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x02\x12\"\n\x18voltage_excit_source_raw\x18\x0b \x01(\x05H\x02\x12\x19\n\x11voltage_excit_val\x18\x0c \x01(\x01\x12!\n\x19nominal_bridge_resistance\x18\r \x01(\x01\x12\x16\n\x0e\x66orward_coeffs\x18\x0e \x03(\x01\x12\x16\n\x0ereverse_coeffs\x18\x0f \x03(\x01\x12?\n\x10\x65lectrical_units\x18\x10 \x01(\x0e\x32#.nidaqmx_grpc.BridgeElectricalUnitsH\x03\x12\x1e\n\x14\x65lectrical_units_raw\x18\x11 \x01(\x05H\x03\x12;\n\x0ephysical_units\x18\x12 \x01(\x0e\x32!.nidaqmx_grpc.BridgePhysicalUnitsH\x04\x12\x1c\n\x12physical_units_raw\x18\x13 \x01(\x05H\x04\x12\x19\n\x11\x63ustom_scale_name\x18\x14 \x01(\tB\x0c\n\nunits_enumB\x14\n\x12\x62ridge_config_enumB\x1b\n\x19voltage_excit_source_enumB\x17\n\x15\x65lectrical_units_enumB\x15\n\x13physical_units_enum\"<\n*CreateAITorqueBridgePolynomialChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xe0\x06\n$CreateAITorqueBridgeTableChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12*\n\x05units\x18\x06 \x01(\x0e\x32\x19.nidaqmx_grpc.TorqueUnitsH\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12;\n\rbridge_config\x18\x08 \x01(\x0e\x32\".nidaqmx_grpc.BridgeConfiguration1H\x01\x12\x1b\n\x11\x62ridge_config_raw\x18\t \x01(\x05H\x01\x12>\n\x14voltage_excit_source\x18\n \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x02\x12\"\n\x18voltage_excit_source_raw\x18\x0b \x01(\x05H\x02\x12\x19\n\x11voltage_excit_val\x18\x0c \x01(\x01\x12!\n\x19nominal_bridge_resistance\x18\r \x01(\x01\x12\x17\n\x0f\x65lectrical_vals\x18\x0e \x03(\x01\x12?\n\x10\x65lectrical_units\x18\x0f \x01(\x0e\x32#.nidaqmx_grpc.BridgeElectricalUnitsH\x03\x12\x1e\n\x14\x65lectrical_units_raw\x18\x10 \x01(\x05H\x03\x12\x15\n\rphysical_vals\x18\x11 \x03(\x01\x12;\n\x0ephysical_units\x18\x12 \x01(\x0e\x32!.nidaqmx_grpc.BridgePhysicalUnitsH\x04\x12\x1c\n\x12physical_units_raw\x18\x13 \x01(\x05H\x04\x12\x19\n\x11\x63ustom_scale_name\x18\x14 \x01(\tB\x0c\n\nunits_enumB\x14\n\x12\x62ridge_config_enumB\x1b\n\x19voltage_excit_source_enumB\x17\n\x15\x65lectrical_units_enumB\x15\n\x13physical_units_enum\"7\n%CreateAITorqueBridgeTableChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xac\x07\n*CreateAITorqueBridgeTwoPointLinChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12*\n\x05units\x18\x06 \x01(\x0e\x32\x19.nidaqmx_grpc.TorqueUnitsH\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12;\n\rbridge_config\x18\x08 \x01(\x0e\x32\".nidaqmx_grpc.BridgeConfiguration1H\x01\x12\x1b\n\x11\x62ridge_config_raw\x18\t \x01(\x05H\x01\x12>\n\x14voltage_excit_source\x18\n \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x02\x12\"\n\x18voltage_excit_source_raw\x18\x0b \x01(\x05H\x02\x12\x19\n\x11voltage_excit_val\x18\x0c \x01(\x01\x12!\n\x19nominal_bridge_resistance\x18\r \x01(\x01\x12\x1c\n\x14\x66irst_electrical_val\x18\x0e \x01(\x01\x12\x1d\n\x15second_electrical_val\x18\x0f \x01(\x01\x12?\n\x10\x65lectrical_units\x18\x10 \x01(\x0e\x32#.nidaqmx_grpc.BridgeElectricalUnitsH\x03\x12\x1e\n\x14\x65lectrical_units_raw\x18\x11 \x01(\x05H\x03\x12\x1a\n\x12\x66irst_physical_val\x18\x12 \x01(\x01\x12\x1b\n\x13second_physical_val\x18\x13 \x01(\x01\x12;\n\x0ephysical_units\x18\x14 \x01(\x0e\x32!.nidaqmx_grpc.BridgePhysicalUnitsH\x04\x12\x1c\n\x12physical_units_raw\x18\x15 \x01(\x05H\x04\x12\x19\n\x11\x63ustom_scale_name\x18\x16 \x01(\tB\x0c\n\nunits_enumB\x14\n\x12\x62ridge_config_enumB\x1b\n\x19voltage_excit_source_enumB\x17\n\x15\x65lectrical_units_enumB\x15\n\x13physical_units_enum\"=\n+CreateAITorqueBridgeTwoPointLinChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xc6\x05\n\x1f\x43reateAIVelocityIEPEChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12@\n\x0fterminal_config\x18\x04 \x01(\x0e\x32%.nidaqmx_grpc.InputTermCfgWithDefaultH\x00\x12\x1d\n\x13terminal_config_raw\x18\x05 \x01(\x05H\x00\x12\x0f\n\x07min_val\x18\x06 \x01(\x01\x12\x0f\n\x07max_val\x18\x07 \x01(\x01\x12,\n\x05units\x18\x08 \x01(\x0e\x32\x1b.nidaqmx_grpc.VelocityUnitsH\x01\x12\x13\n\tunits_raw\x18\t \x01(\x05H\x01\x12\x13\n\x0bsensitivity\x18\n \x01(\x01\x12M\n\x11sensitivity_units\x18\x0b \x01(\x0e\x32\x30.nidaqmx_grpc.VelocityIEPESensorSensitivityUnitsH\x02\x12\x1f\n\x15sensitivity_units_raw\x18\x0c \x01(\x05H\x02\x12>\n\x14\x63urrent_excit_source\x18\r \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x03\x12\"\n\x18\x63urrent_excit_source_raw\x18\x0e \x01(\x05H\x03\x12\x19\n\x11\x63urrent_excit_val\x18\x0f \x01(\x01\x12\x19\n\x11\x63ustom_scale_name\x18\x10 \x01(\tB\x16\n\x14terminal_config_enumB\x0c\n\nunits_enumB\x18\n\x16sensitivity_units_enumB\x1b\n\x19\x63urrent_excit_source_enum\"2\n CreateAIVelocityIEPEChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x86\x03\n\x1a\x43reateAIVoltageChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12@\n\x0fterminal_config\x18\x04 \x01(\x0e\x32%.nidaqmx_grpc.InputTermCfgWithDefaultH\x00\x12\x1d\n\x13terminal_config_raw\x18\x05 \x01(\x05H\x00\x12\x0f\n\x07min_val\x18\x06 \x01(\x01\x12\x0f\n\x07max_val\x18\x07 \x01(\x01\x12,\n\x05units\x18\x08 \x01(\x0e\x32\x1b.nidaqmx_grpc.VoltageUnits2H\x01\x12\x13\n\tunits_raw\x18\t \x01(\x05H\x01\x12\x19\n\x11\x63ustom_scale_name\x18\n \x01(\tB\x16\n\x14terminal_config_enumB\x0c\n\nunits_enum\"-\n\x1b\x43reateAIVoltageChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xba\x05\n#CreateAIVoltageChanWithExcitRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12@\n\x0fterminal_config\x18\x04 \x01(\x0e\x32%.nidaqmx_grpc.InputTermCfgWithDefaultH\x00\x12\x1d\n\x13terminal_config_raw\x18\x05 \x01(\x05H\x00\x12\x0f\n\x07min_val\x18\x06 \x01(\x01\x12\x0f\n\x07max_val\x18\x07 \x01(\x01\x12,\n\x05units\x18\x08 \x01(\x0e\x32\x1b.nidaqmx_grpc.VoltageUnits2H\x01\x12\x13\n\tunits_raw\x18\t \x01(\x05H\x01\x12;\n\rbridge_config\x18\n \x01(\x0e\x32\".nidaqmx_grpc.BridgeConfiguration1H\x02\x12\x1b\n\x11\x62ridge_config_raw\x18\x0b \x01(\x05H\x02\x12>\n\x14voltage_excit_source\x18\x0c \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x03\x12\"\n\x18voltage_excit_source_raw\x18\r \x01(\x05H\x03\x12\x19\n\x11voltage_excit_val\x18\x0e \x01(\x01\x12\x1d\n\x15use_excit_for_scaling\x18\x0f \x01(\x08\x12\x19\n\x11\x63ustom_scale_name\x18\x10 \x01(\tB\x16\n\x14terminal_config_enumB\x0c\n\nunits_enumB\x14\n\x12\x62ridge_config_enumB\x1b\n\x19voltage_excit_source_enum\"6\n$CreateAIVoltageChanWithExcitResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x89\x03\n\x1d\x43reateAIVoltageRMSChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12@\n\x0fterminal_config\x18\x04 \x01(\x0e\x32%.nidaqmx_grpc.InputTermCfgWithDefaultH\x00\x12\x1d\n\x13terminal_config_raw\x18\x05 \x01(\x05H\x00\x12\x0f\n\x07min_val\x18\x06 \x01(\x01\x12\x0f\n\x07max_val\x18\x07 \x01(\x01\x12,\n\x05units\x18\x08 \x01(\x0e\x32\x1b.nidaqmx_grpc.VoltageUnits2H\x01\x12\x13\n\tunits_raw\x18\t \x01(\x05H\x01\x12\x19\n\x11\x63ustom_scale_name\x18\n \x01(\tB\x16\n\x14terminal_config_enumB\x0c\n\nunits_enum\"0\n\x1e\x43reateAIVoltageRMSChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x8d\x02\n\x1a\x43reateAOCurrentChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12,\n\x05units\x18\x06 \x01(\x0e\x32\x1b.nidaqmx_grpc.CurrentUnits2H\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12\x19\n\x11\x63ustom_scale_name\x18\x08 \x01(\tB\x0c\n\nunits_enum\"-\n\x1b\x43reateAOCurrentChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xfc\x01\n\x1a\x43reateAOFuncGenChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12)\n\x04type\x18\x04 \x01(\x0e\x32\x19.nidaqmx_grpc.FuncGenTypeH\x00\x12\x12\n\x08type_raw\x18\x05 \x01(\x05H\x00\x12\x0c\n\x04\x66req\x18\x06 \x01(\x01\x12\x11\n\tamplitude\x18\x07 \x01(\x01\x12\x0e\n\x06offset\x18\x08 \x01(\x01\x42\x0b\n\ttype_enum\"-\n\x1b\x43reateAOFuncGenChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x8d\x02\n\x1a\x43reateAOVoltageChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12,\n\x05units\x18\x06 \x01(\x0e\x32\x1b.nidaqmx_grpc.VoltageUnits2H\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12\x19\n\x11\x63ustom_scale_name\x18\x08 \x01(\tB\x0c\n\nunits_enum\"-\n\x1b\x43reateAOVoltageChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x87\x04\n\x1d\x43reateCIAngEncoderChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07\x63ounter\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x33\n\rdecoding_type\x18\x04 \x01(\x0e\x32\x1a.nidaqmx_grpc.EncoderType2H\x00\x12\x1b\n\x11\x64\x65\x63oding_type_raw\x18\x05 \x01(\x05H\x00\x12\x13\n\x0bzidx_enable\x18\x06 \x01(\x08\x12\x10\n\x08zidx_val\x18\x07 \x01(\x01\x12\x37\n\nzidx_phase\x18\x08 \x01(\x0e\x32!.nidaqmx_grpc.EncoderZIndexPhase1H\x01\x12\x18\n\x0ezidx_phase_raw\x18\t \x01(\x05H\x01\x12*\n\x05units\x18\n \x01(\x0e\x32\x19.nidaqmx_grpc.AngleUnits2H\x02\x12\x13\n\tunits_raw\x18\x0b \x01(\x05H\x02\x12\x16\n\x0epulses_per_rev\x18\x0c \x01(\r\x12\x15\n\rinitial_angle\x18\r \x01(\x01\x12\x19\n\x11\x63ustom_scale_name\x18\x0e \x01(\tB\x14\n\x12\x64\x65\x63oding_type_enumB\x11\n\x0fzidx_phase_enumB\x0c\n\nunits_enum\"0\n\x1e\x43reateCIAngEncoderChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x8f\x03\n\x1e\x43reateCIAngVelocityChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07\x63ounter\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12\x33\n\rdecoding_type\x18\x06 \x01(\x0e\x32\x1a.nidaqmx_grpc.EncoderType2H\x00\x12\x1b\n\x11\x64\x65\x63oding_type_raw\x18\x07 \x01(\x05H\x00\x12\x33\n\x05units\x18\x08 \x01(\x0e\x32\".nidaqmx_grpc.AngularVelocityUnitsH\x01\x12\x13\n\tunits_raw\x18\t \x01(\x05H\x01\x12\x16\n\x0epulses_per_rev\x18\n \x01(\r\x12\x19\n\x11\x63ustom_scale_name\x18\x0b \x01(\tB\x14\n\x12\x64\x65\x63oding_type_enumB\x0c\n\nunits_enum\"1\n\x1f\x43reateCIAngVelocityChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xc7\x02\n\x1d\x43reateCICountEdgesChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07\x63ounter\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12#\n\x04\x65\x64ge\x18\x04 \x01(\x0e\x32\x13.nidaqmx_grpc.Edge1H\x00\x12\x12\n\x08\x65\x64ge_raw\x18\x05 \x01(\x05H\x00\x12\x15\n\rinitial_count\x18\x06 \x01(\r\x12\x38\n\x0f\x63ount_direction\x18\x07 \x01(\x0e\x32\x1d.nidaqmx_grpc.CountDirection1H\x01\x12\x1d\n\x13\x63ount_direction_raw\x18\x08 \x01(\x05H\x01\x42\x0b\n\tedge_enumB\x16\n\x14\x63ount_direction_enum\"0\n\x1e\x43reateCICountEdgesChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xfd\x01\n\x1c\x43reateCIDutyCycleChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07\x63ounter\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x10\n\x08min_freq\x18\x04 \x01(\x01\x12\x10\n\x08max_freq\x18\x05 \x01(\x01\x12#\n\x04\x65\x64ge\x18\x06 \x01(\x0e\x32\x13.nidaqmx_grpc.Edge1H\x00\x12\x12\n\x08\x65\x64ge_raw\x18\x07 \x01(\x05H\x00\x12\x19\n\x11\x63ustom_scale_name\x18\x08 \x01(\tB\x0b\n\tedge_enum\"/\n\x1d\x43reateCIDutyCycleChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xd9\x03\n\x17\x43reateCIFreqChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07\x63ounter\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12.\n\x05units\x18\x06 \x01(\x0e\x32\x1d.nidaqmx_grpc.FrequencyUnits3H\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12#\n\x04\x65\x64ge\x18\x08 \x01(\x0e\x32\x13.nidaqmx_grpc.Edge1H\x01\x12\x12\n\x08\x65\x64ge_raw\x18\t \x01(\x05H\x01\x12;\n\x0bmeas_method\x18\n \x01(\x0e\x32$.nidaqmx_grpc.CounterFrequencyMethodH\x02\x12\x19\n\x0fmeas_method_raw\x18\x0b \x01(\x05H\x02\x12\x11\n\tmeas_time\x18\x0c \x01(\x01\x12\x0f\n\x07\x64ivisor\x18\r \x01(\r\x12\x19\n\x11\x63ustom_scale_name\x18\x0e \x01(\tB\x0c\n\nunits_enumB\x0b\n\tedge_enumB\x12\n\x10meas_method_enum\"*\n\x18\x43reateCIFreqChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xc7\x02\n\x1f\x43reateCIGPSTimestampChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07\x63ounter\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12(\n\x05units\x18\x04 \x01(\x0e\x32\x17.nidaqmx_grpc.TimeUnitsH\x00\x12\x13\n\tunits_raw\x18\x05 \x01(\x05H\x00\x12\x33\n\x0bsync_method\x18\x06 \x01(\x0e\x32\x1c.nidaqmx_grpc.GpsSignalType1H\x01\x12\x19\n\x0fsync_method_raw\x18\x07 \x01(\x05H\x01\x12\x19\n\x11\x63ustom_scale_name\x18\x08 \x01(\tB\x0c\n\nunits_enumB\x12\n\x10sync_method_enum\"2\n CreateCIGPSTimestampChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x86\x04\n\x1d\x43reateCILinEncoderChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07\x63ounter\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x33\n\rdecoding_type\x18\x04 \x01(\x0e\x32\x1a.nidaqmx_grpc.EncoderType2H\x00\x12\x1b\n\x11\x64\x65\x63oding_type_raw\x18\x05 \x01(\x05H\x00\x12\x13\n\x0bzidx_enable\x18\x06 \x01(\x08\x12\x10\n\x08zidx_val\x18\x07 \x01(\x01\x12\x37\n\nzidx_phase\x18\x08 \x01(\x0e\x32!.nidaqmx_grpc.EncoderZIndexPhase1H\x01\x12\x18\n\x0ezidx_phase_raw\x18\t \x01(\x05H\x01\x12+\n\x05units\x18\n \x01(\x0e\x32\x1a.nidaqmx_grpc.LengthUnits3H\x02\x12\x13\n\tunits_raw\x18\x0b \x01(\x05H\x02\x12\x16\n\x0e\x64ist_per_pulse\x18\x0c \x01(\x01\x12\x13\n\x0binitial_pos\x18\r \x01(\x01\x12\x19\n\x11\x63ustom_scale_name\x18\x0e \x01(\tB\x14\n\x12\x64\x65\x63oding_type_enumB\x11\n\x0fzidx_phase_enumB\x0c\n\nunits_enum\"0\n\x1e\x43reateCILinEncoderChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x88\x03\n\x1e\x43reateCILinVelocityChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07\x63ounter\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12\x33\n\rdecoding_type\x18\x06 \x01(\x0e\x32\x1a.nidaqmx_grpc.EncoderType2H\x00\x12\x1b\n\x11\x64\x65\x63oding_type_raw\x18\x07 \x01(\x05H\x00\x12,\n\x05units\x18\x08 \x01(\x0e\x32\x1b.nidaqmx_grpc.VelocityUnitsH\x01\x12\x13\n\tunits_raw\x18\t \x01(\x05H\x01\x12\x16\n\x0e\x64ist_per_pulse\x18\n \x01(\x01\x12\x19\n\x11\x63ustom_scale_name\x18\x0b \x01(\tB\x14\n\x12\x64\x65\x63oding_type_enumB\x0c\n\nunits_enum\"1\n\x1f\x43reateCILinVelocityChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xd6\x03\n\x19\x43reateCIPeriodChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07\x63ounter\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12)\n\x05units\x18\x06 \x01(\x0e\x32\x18.nidaqmx_grpc.TimeUnits3H\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12#\n\x04\x65\x64ge\x18\x08 \x01(\x0e\x32\x13.nidaqmx_grpc.Edge1H\x01\x12\x12\n\x08\x65\x64ge_raw\x18\t \x01(\x05H\x01\x12;\n\x0bmeas_method\x18\n \x01(\x0e\x32$.nidaqmx_grpc.CounterFrequencyMethodH\x02\x12\x19\n\x0fmeas_method_raw\x18\x0b \x01(\x05H\x02\x12\x11\n\tmeas_time\x18\x0c \x01(\x01\x12\x0f\n\x07\x64ivisor\x18\r \x01(\r\x12\x19\n\x11\x63ustom_scale_name\x18\x0e \x01(\tB\x0c\n\nunits_enumB\x0b\n\tedge_enumB\x12\n\x10meas_method_enum\",\n\x1a\x43reateCIPeriodChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xed\x01\n\x1c\x43reateCIPulseChanFreqRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07\x63ounter\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12.\n\x05units\x18\x06 \x01(\x0e\x32\x1d.nidaqmx_grpc.FrequencyUnits2H\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x42\x0c\n\nunits_enum\"/\n\x1d\x43reateCIPulseChanFreqResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xb4\x01\n\x1d\x43reateCIPulseChanTicksRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07\x63ounter\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x17\n\x0fsource_terminal\x18\x04 \x01(\t\x12\x0f\n\x07min_val\x18\x05 \x01(\x01\x12\x0f\n\x07max_val\x18\x06 \x01(\x01\"0\n\x1e\x43reateCIPulseChanTicksResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xf0\x01\n\x1c\x43reateCIPulseChanTimeRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07\x63ounter\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12\x31\n\x05units\x18\x06 \x01(\x0e\x32 .nidaqmx_grpc.DigitalWidthUnits3H\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x42\x0c\n\nunits_enum\"/\n\x1d\x43reateCIPulseChanTimeResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xe5\x02\n\x1d\x43reateCIPulseWidthChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07\x63ounter\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12)\n\x05units\x18\x06 \x01(\x0e\x32\x18.nidaqmx_grpc.TimeUnits3H\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12,\n\rstarting_edge\x18\x08 \x01(\x0e\x32\x13.nidaqmx_grpc.Edge1H\x01\x12\x1b\n\x11starting_edge_raw\x18\t \x01(\x05H\x01\x12\x19\n\x11\x63ustom_scale_name\x18\n \x01(\tB\x0c\n\nunits_enumB\x14\n\x12starting_edge_enum\"0\n\x1e\x43reateCIPulseWidthChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x84\x02\n\x1d\x43reateCISemiPeriodChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07\x63ounter\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12)\n\x05units\x18\x06 \x01(\x0e\x32\x18.nidaqmx_grpc.TimeUnits3H\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12\x19\n\x11\x63ustom_scale_name\x18\x08 \x01(\tB\x0c\n\nunits_enum\"0\n\x1e\x43reateCISemiPeriodChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xb7\x03\n\x1d\x43reateCITwoEdgeSepChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07\x63ounter\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12)\n\x05units\x18\x06 \x01(\x0e\x32\x18.nidaqmx_grpc.TimeUnits3H\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12)\n\nfirst_edge\x18\x08 \x01(\x0e\x32\x13.nidaqmx_grpc.Edge1H\x01\x12\x18\n\x0e\x66irst_edge_raw\x18\t \x01(\x05H\x01\x12*\n\x0bsecond_edge\x18\n \x01(\x0e\x32\x13.nidaqmx_grpc.Edge1H\x02\x12\x19\n\x0fsecond_edge_raw\x18\x0b \x01(\x05H\x02\x12\x19\n\x11\x63ustom_scale_name\x18\x0c \x01(\tB\x0c\n\nunits_enumB\x11\n\x0f\x66irst_edge_enumB\x12\n\x10second_edge_enum\"0\n\x1e\x43reateCITwoEdgeSepChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xdd\x02\n\x1c\x43reateCOPulseChanFreqRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07\x63ounter\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12.\n\x05units\x18\x04 \x01(\x0e\x32\x1d.nidaqmx_grpc.FrequencyUnits2H\x00\x12\x13\n\tunits_raw\x18\x05 \x01(\x05H\x00\x12*\n\nidle_state\x18\x06 \x01(\x0e\x32\x14.nidaqmx_grpc.Level1H\x01\x12\x18\n\x0eidle_state_raw\x18\x07 \x01(\x05H\x01\x12\x15\n\rinitial_delay\x18\x08 \x01(\x01\x12\x0c\n\x04\x66req\x18\t \x01(\x01\x12\x12\n\nduty_cycle\x18\n \x01(\x01\x42\x0c\n\nunits_enumB\x11\n\x0fidle_state_enum\"/\n\x1d\x43reateCOPulseChanFreqResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xa9\x02\n\x1d\x43reateCOPulseChanTicksRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07\x63ounter\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x17\n\x0fsource_terminal\x18\x04 \x01(\t\x12*\n\nidle_state\x18\x05 \x01(\x0e\x32\x14.nidaqmx_grpc.Level1H\x00\x12\x18\n\x0eidle_state_raw\x18\x06 \x01(\x05H\x00\x12\x15\n\rinitial_delay\x18\x07 \x01(\x05\x12\x11\n\tlow_ticks\x18\x08 \x01(\x05\x12\x12\n\nhigh_ticks\x18\t \x01(\x05\x42\x11\n\x0fidle_state_enum\"0\n\x1e\x43reateCOPulseChanTicksResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xe3\x02\n\x1c\x43reateCOPulseChanTimeRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07\x63ounter\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x31\n\x05units\x18\x04 \x01(\x0e\x32 .nidaqmx_grpc.DigitalWidthUnits3H\x00\x12\x13\n\tunits_raw\x18\x05 \x01(\x05H\x00\x12*\n\nidle_state\x18\x06 \x01(\x0e\x32\x14.nidaqmx_grpc.Level1H\x01\x12\x18\n\x0eidle_state_raw\x18\x07 \x01(\x05H\x01\x12\x15\n\rinitial_delay\x18\x08 \x01(\x01\x12\x10\n\x08low_time\x18\t \x01(\x01\x12\x11\n\thigh_time\x18\n \x01(\x01\x42\x0c\n\nunits_enumB\x11\n\x0fidle_state_enum\"/\n\x1d\x43reateCOPulseChanTimeResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xd3\x01\n\x13\x43reateDIChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\r\n\x05lines\x18\x02 \x01(\t\x12\x1f\n\x17name_to_assign_to_lines\x18\x03 \x01(\t\x12\x33\n\rline_grouping\x18\x04 \x01(\x0e\x32\x1a.nidaqmx_grpc.LineGroupingH\x00\x12\x1b\n\x11line_grouping_raw\x18\x05 \x01(\x05H\x00\x42\x14\n\x12line_grouping_enum\"&\n\x14\x43reateDIChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xd3\x01\n\x13\x43reateDOChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\r\n\x05lines\x18\x02 \x01(\t\x12\x1f\n\x17name_to_assign_to_lines\x18\x03 \x01(\t\x12\x33\n\rline_grouping\x18\x04 \x01(\x0e\x32\x1a.nidaqmx_grpc.LineGroupingH\x00\x12\x1b\n\x11line_grouping_raw\x18\x05 \x01(\x05H\x00\x42\x14\n\x12line_grouping_enum\"&\n\x14\x43reateDOChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xd2\x01\n\x15\x43reateLinScaleRequest\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\r\n\x05slope\x18\x02 \x01(\x01\x12\x13\n\x0by_intercept\x18\x03 \x01(\x01\x12\x38\n\x10pre_scaled_units\x18\x04 \x01(\x0e\x32\x1c.nidaqmx_grpc.UnitsPreScaledH\x00\x12\x1e\n\x14pre_scaled_units_raw\x18\x05 \x01(\x05H\x00\x12\x14\n\x0cscaled_units\x18\x06 \x01(\tB\x17\n\x15pre_scaled_units_enum\"(\n\x16\x43reateLinScaleResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x84\x02\n\x15\x43reateMapScaleRequest\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x15\n\rprescaled_min\x18\x02 \x01(\x01\x12\x15\n\rprescaled_max\x18\x03 \x01(\x01\x12\x12\n\nscaled_min\x18\x04 \x01(\x01\x12\x12\n\nscaled_max\x18\x05 \x01(\x01\x12\x38\n\x10pre_scaled_units\x18\x06 \x01(\x0e\x32\x1c.nidaqmx_grpc.UnitsPreScaledH\x00\x12\x1e\n\x14pre_scaled_units_raw\x18\x07 \x01(\x05H\x00\x12\x14\n\x0cscaled_units\x18\x08 \x01(\tB\x17\n\x15pre_scaled_units_enum\"(\n\x16\x43reateMapScaleResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xe5\x01\n\x1c\x43reatePolynomialScaleRequest\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x16\n\x0e\x66orward_coeffs\x18\x02 \x03(\x01\x12\x16\n\x0ereverse_coeffs\x18\x03 \x03(\x01\x12\x38\n\x10pre_scaled_units\x18\x04 \x01(\x0e\x32\x1c.nidaqmx_grpc.UnitsPreScaledH\x00\x12\x1e\n\x14pre_scaled_units_raw\x18\x05 \x01(\x05H\x00\x12\x14\n\x0cscaled_units\x18\x06 \x01(\tB\x17\n\x15pre_scaled_units_enum\"/\n\x1d\x43reatePolynomialScaleResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xa2\x04\n\x1c\x43reateTEDSAIAccelChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12@\n\x0fterminal_config\x18\x04 \x01(\x0e\x32%.nidaqmx_grpc.InputTermCfgWithDefaultH\x00\x12\x1d\n\x13terminal_config_raw\x18\x05 \x01(\x05H\x00\x12\x0f\n\x07min_val\x18\x06 \x01(\x01\x12\x0f\n\x07max_val\x18\x07 \x01(\x01\x12*\n\x05units\x18\x08 \x01(\x0e\x32\x19.nidaqmx_grpc.AccelUnits2H\x01\x12\x13\n\tunits_raw\x18\t \x01(\x05H\x01\x12>\n\x14\x63urrent_excit_source\x18\n \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x02\x12\"\n\x18\x63urrent_excit_source_raw\x18\x0b \x01(\x05H\x02\x12\x19\n\x11\x63urrent_excit_val\x18\x0c \x01(\x01\x12\x19\n\x11\x63ustom_scale_name\x18\r \x01(\tB\x16\n\x14terminal_config_enumB\x0c\n\nunits_enumB\x1b\n\x19\x63urrent_excit_source_enum\"/\n\x1d\x43reateTEDSAIAccelChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xa8\x03\n\x1d\x43reateTEDSAIBridgeChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12(\n\x05units\x18\x06 \x01(\x0e\x32\x17.nidaqmx_grpc.TEDSUnitsH\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12>\n\x14voltage_excit_source\x18\x08 \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x01\x12\"\n\x18voltage_excit_source_raw\x18\t \x01(\x05H\x01\x12\x19\n\x11voltage_excit_val\x18\n \x01(\x01\x12\x19\n\x11\x63ustom_scale_name\x18\x0b \x01(\tB\x0c\n\nunits_enumB\x1b\n\x19voltage_excit_source_enum\"0\n\x1e\x43reateTEDSAIBridgeChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xb8\x04\n\x1e\x43reateTEDSAICurrentChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12@\n\x0fterminal_config\x18\x04 \x01(\x0e\x32%.nidaqmx_grpc.InputTermCfgWithDefaultH\x00\x12\x1d\n\x13terminal_config_raw\x18\x05 \x01(\x05H\x00\x12\x0f\n\x07min_val\x18\x06 \x01(\x01\x12\x0f\n\x07max_val\x18\x07 \x01(\x01\x12(\n\x05units\x18\x08 \x01(\x0e\x32\x17.nidaqmx_grpc.TEDSUnitsH\x01\x12\x13\n\tunits_raw\x18\t \x01(\x05H\x01\x12S\n\x12shunt_resistor_loc\x18\n \x01(\x0e\x32\x35.nidaqmx_grpc.CurrentShuntResistorLocationWithDefaultH\x02\x12 \n\x16shunt_resistor_loc_raw\x18\x0b \x01(\x05H\x02\x12\x1e\n\x16\x65xt_shunt_resistor_val\x18\x0c \x01(\x01\x12\x19\n\x11\x63ustom_scale_name\x18\r \x01(\tB\x16\n\x14terminal_config_enumB\x0c\n\nunits_enumB\x19\n\x17shunt_resistor_loc_enum\"1\n\x1f\x43reateTEDSAICurrentChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xae\x03\n\"CreateTEDSAIForceBridgeChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12)\n\x05units\x18\x06 \x01(\x0e\x32\x18.nidaqmx_grpc.ForceUnitsH\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12>\n\x14voltage_excit_source\x18\x08 \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x01\x12\"\n\x18voltage_excit_source_raw\x18\t \x01(\x05H\x01\x12\x19\n\x11voltage_excit_val\x18\n \x01(\x01\x12\x19\n\x11\x63ustom_scale_name\x18\x0b \x01(\tB\x0c\n\nunits_enumB\x1b\n\x19voltage_excit_source_enum\"5\n#CreateTEDSAIForceBridgeChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xa9\x04\n CreateTEDSAIForceIEPEChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12@\n\x0fterminal_config\x18\x04 \x01(\x0e\x32%.nidaqmx_grpc.InputTermCfgWithDefaultH\x00\x12\x1d\n\x13terminal_config_raw\x18\x05 \x01(\x05H\x00\x12\x0f\n\x07min_val\x18\x06 \x01(\x01\x12\x0f\n\x07max_val\x18\x07 \x01(\x01\x12-\n\x05units\x18\x08 \x01(\x0e\x32\x1c.nidaqmx_grpc.ForceIEPEUnitsH\x01\x12\x13\n\tunits_raw\x18\t \x01(\x05H\x01\x12>\n\x14\x63urrent_excit_source\x18\n \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x02\x12\"\n\x18\x63urrent_excit_source_raw\x18\x0b \x01(\x05H\x02\x12\x19\n\x11\x63urrent_excit_val\x18\x0c \x01(\x01\x12\x19\n\x11\x63ustom_scale_name\x18\r \x01(\tB\x16\n\x14terminal_config_enumB\x0c\n\nunits_enumB\x1b\n\x19\x63urrent_excit_source_enum\"3\n!CreateTEDSAIForceIEPEChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xaa\x04\n!CreateTEDSAIMicrophoneChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12@\n\x0fterminal_config\x18\x04 \x01(\x0e\x32%.nidaqmx_grpc.InputTermCfgWithDefaultH\x00\x12\x1d\n\x13terminal_config_raw\x18\x05 \x01(\x05H\x00\x12\x32\n\x05units\x18\x06 \x01(\x0e\x32!.nidaqmx_grpc.SoundPressureUnits1H\x01\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x01\x12\x1b\n\x13max_snd_press_level\x18\x08 \x01(\x01\x12>\n\x14\x63urrent_excit_source\x18\t \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x02\x12\"\n\x18\x63urrent_excit_source_raw\x18\n \x01(\x05H\x02\x12\x19\n\x11\x63urrent_excit_val\x18\x0b \x01(\x01\x12\x19\n\x11\x63ustom_scale_name\x18\x0c \x01(\tB\x16\n\x14terminal_config_enumB\x0c\n\nunits_enumB\x1b\n\x19\x63urrent_excit_source_enum\"4\n\"CreateTEDSAIMicrophoneChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xc2\x04\n\x1e\x43reateTEDSAIPosLVDTChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12+\n\x05units\x18\x06 \x01(\x0e\x32\x1a.nidaqmx_grpc.LengthUnits2H\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12>\n\x14voltage_excit_source\x18\x08 \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x01\x12\"\n\x18voltage_excit_source_raw\x18\t \x01(\x05H\x01\x12\x19\n\x11voltage_excit_val\x18\n \x01(\x01\x12\x1a\n\x12voltage_excit_freq\x18\x0b \x01(\x01\x12;\n\x12\x61\x63_excit_wire_mode\x18\x0c \x01(\x0e\x32\x1d.nidaqmx_grpc.ACExcitWireModeH\x02\x12 \n\x16\x61\x63_excit_wire_mode_raw\x18\r \x01(\x05H\x02\x12\x19\n\x11\x63ustom_scale_name\x18\x0e \x01(\tB\x0c\n\nunits_enumB\x1b\n\x19voltage_excit_source_enumB\x19\n\x17\x61\x63_excit_wire_mode_enum\"1\n\x1f\x43reateTEDSAIPosLVDTChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xc1\x04\n\x1e\x43reateTEDSAIPosRVDTChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12*\n\x05units\x18\x06 \x01(\x0e\x32\x19.nidaqmx_grpc.AngleUnits1H\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12>\n\x14voltage_excit_source\x18\x08 \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x01\x12\"\n\x18voltage_excit_source_raw\x18\t \x01(\x05H\x01\x12\x19\n\x11voltage_excit_val\x18\n \x01(\x01\x12\x1a\n\x12voltage_excit_freq\x18\x0b \x01(\x01\x12;\n\x12\x61\x63_excit_wire_mode\x18\x0c \x01(\x0e\x32\x1d.nidaqmx_grpc.ACExcitWireModeH\x02\x12 \n\x16\x61\x63_excit_wire_mode_raw\x18\r \x01(\x05H\x02\x12\x19\n\x11\x63ustom_scale_name\x18\x0e \x01(\tB\x0c\n\nunits_enumB\x1b\n\x19voltage_excit_source_enumB\x19\n\x17\x61\x63_excit_wire_mode_enum\"1\n\x1f\x43reateTEDSAIPosRVDTChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xb4\x03\n%CreateTEDSAIPressureBridgeChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12,\n\x05units\x18\x06 \x01(\x0e\x32\x1b.nidaqmx_grpc.PressureUnitsH\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12>\n\x14voltage_excit_source\x18\x08 \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x01\x12\"\n\x18voltage_excit_source_raw\x18\t \x01(\x05H\x01\x12\x19\n\x11voltage_excit_val\x18\n \x01(\x01\x12\x19\n\x11\x63ustom_scale_name\x18\x0b \x01(\tB\x0c\n\nunits_enumB\x1b\n\x19voltage_excit_source_enum\"8\n&CreateTEDSAIPressureBridgeChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x90\x04\n\x1a\x43reateTEDSAIRTDChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12/\n\x05units\x18\x06 \x01(\x0e\x32\x1e.nidaqmx_grpc.TemperatureUnitsH\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12\x42\n\x11resistance_config\x18\x08 \x01(\x0e\x32%.nidaqmx_grpc.ResistanceConfigurationH\x01\x12\x1f\n\x15resistance_config_raw\x18\t \x01(\x05H\x01\x12>\n\x14\x63urrent_excit_source\x18\n \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x02\x12\"\n\x18\x63urrent_excit_source_raw\x18\x0b \x01(\x05H\x02\x12\x19\n\x11\x63urrent_excit_val\x18\x0c \x01(\x01\x42\x0c\n\nunits_enumB\x18\n\x16resistance_config_enumB\x1b\n\x19\x63urrent_excit_source_enum\"-\n\x1b\x43reateTEDSAIRTDChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xab\x04\n!CreateTEDSAIResistanceChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12(\n\x05units\x18\x06 \x01(\x0e\x32\x17.nidaqmx_grpc.TEDSUnitsH\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12\x42\n\x11resistance_config\x18\x08 \x01(\x0e\x32%.nidaqmx_grpc.ResistanceConfigurationH\x01\x12\x1f\n\x15resistance_config_raw\x18\t \x01(\x05H\x01\x12>\n\x14\x63urrent_excit_source\x18\n \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x02\x12\"\n\x18\x63urrent_excit_source_raw\x18\x0b \x01(\x05H\x02\x12\x19\n\x11\x63urrent_excit_val\x18\x0c \x01(\x01\x12\x19\n\x11\x63ustom_scale_name\x18\r \x01(\tB\x0c\n\nunits_enumB\x18\n\x16resistance_config_enumB\x1b\n\x19\x63urrent_excit_source_enum\"4\n\"CreateTEDSAIResistanceChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xed\x03\n!CreateTEDSAIStrainGageChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12+\n\x05units\x18\x06 \x01(\x0e\x32\x1a.nidaqmx_grpc.StrainUnits1H\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12>\n\x14voltage_excit_source\x18\x08 \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x01\x12\"\n\x18voltage_excit_source_raw\x18\t \x01(\x05H\x01\x12\x19\n\x11voltage_excit_val\x18\n \x01(\x01\x12\x1e\n\x16initial_bridge_voltage\x18\x0b \x01(\x01\x12\x1c\n\x14lead_wire_resistance\x18\x0c \x01(\x01\x12\x19\n\x11\x63ustom_scale_name\x18\r \x01(\tB\x0c\n\nunits_enumB\x1b\n\x19voltage_excit_source_enum\"4\n\"CreateTEDSAIStrainGageChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xfc\x02\n\x1e\x43reateTEDSAIThrmcplChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12/\n\x05units\x18\x06 \x01(\x0e\x32\x1e.nidaqmx_grpc.TemperatureUnitsH\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12.\n\ncjc_source\x18\x08 \x01(\x0e\x32\x18.nidaqmx_grpc.CJCSource1H\x01\x12\x18\n\x0e\x63jc_source_raw\x18\t \x01(\x05H\x01\x12\x0f\n\x07\x63jc_val\x18\n \x01(\x01\x12\x13\n\x0b\x63jc_channel\x18\x0b \x01(\tB\x0c\n\nunits_enumB\x11\n\x0f\x63jc_source_enum\"1\n\x1f\x43reateTEDSAIThrmcplChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x97\x04\n!CreateTEDSAIThrmstrChanIexRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12/\n\x05units\x18\x06 \x01(\x0e\x32\x1e.nidaqmx_grpc.TemperatureUnitsH\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12\x42\n\x11resistance_config\x18\x08 \x01(\x0e\x32%.nidaqmx_grpc.ResistanceConfigurationH\x01\x12\x1f\n\x15resistance_config_raw\x18\t \x01(\x05H\x01\x12>\n\x14\x63urrent_excit_source\x18\n \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x02\x12\"\n\x18\x63urrent_excit_source_raw\x18\x0b \x01(\x05H\x02\x12\x19\n\x11\x63urrent_excit_val\x18\x0c \x01(\x01\x42\x0c\n\nunits_enumB\x18\n\x16resistance_config_enumB\x1b\n\x19\x63urrent_excit_source_enum\"4\n\"CreateTEDSAIThrmstrChanIexResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xa3\x04\n!CreateTEDSAIThrmstrChanVexRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12/\n\x05units\x18\x06 \x01(\x0e\x32\x1e.nidaqmx_grpc.TemperatureUnitsH\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12\x42\n\x11resistance_config\x18\x08 \x01(\x0e\x32%.nidaqmx_grpc.ResistanceConfigurationH\x01\x12\x1f\n\x15resistance_config_raw\x18\t \x01(\x05H\x01\x12>\n\x14voltage_excit_source\x18\n \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x02\x12\"\n\x18voltage_excit_source_raw\x18\x0b \x01(\x05H\x02\x12\x19\n\x11voltage_excit_val\x18\x0c \x01(\x01\x12\n\n\x02r1\x18\r \x01(\x01\x42\x0c\n\nunits_enumB\x18\n\x16resistance_config_enumB\x1b\n\x19voltage_excit_source_enum\"4\n\"CreateTEDSAIThrmstrChanVexResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xb0\x03\n#CreateTEDSAITorqueBridgeChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12*\n\x05units\x18\x06 \x01(\x0e\x32\x19.nidaqmx_grpc.TorqueUnitsH\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12>\n\x14voltage_excit_source\x18\x08 \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x01\x12\"\n\x18voltage_excit_source_raw\x18\t \x01(\x05H\x01\x12\x19\n\x11voltage_excit_val\x18\n \x01(\x01\x12\x19\n\x11\x63ustom_scale_name\x18\x0b \x01(\tB\x0c\n\nunits_enumB\x1b\n\x19voltage_excit_source_enum\"6\n$CreateTEDSAITorqueBridgeChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x86\x03\n\x1e\x43reateTEDSAIVoltageChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12@\n\x0fterminal_config\x18\x04 \x01(\x0e\x32%.nidaqmx_grpc.InputTermCfgWithDefaultH\x00\x12\x1d\n\x13terminal_config_raw\x18\x05 \x01(\x05H\x00\x12\x0f\n\x07min_val\x18\x06 \x01(\x01\x12\x0f\n\x07max_val\x18\x07 \x01(\x01\x12(\n\x05units\x18\x08 \x01(\x0e\x32\x17.nidaqmx_grpc.TEDSUnitsH\x01\x12\x13\n\tunits_raw\x18\t \x01(\x05H\x01\x12\x19\n\x11\x63ustom_scale_name\x18\n \x01(\tB\x16\n\x14terminal_config_enumB\x0c\n\nunits_enum\"1\n\x1f\x43reateTEDSAIVoltageChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xab\x04\n\'CreateTEDSAIVoltageChanWithExcitRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12@\n\x0fterminal_config\x18\x04 \x01(\x0e\x32%.nidaqmx_grpc.InputTermCfgWithDefaultH\x00\x12\x1d\n\x13terminal_config_raw\x18\x05 \x01(\x05H\x00\x12\x0f\n\x07min_val\x18\x06 \x01(\x01\x12\x0f\n\x07max_val\x18\x07 \x01(\x01\x12(\n\x05units\x18\x08 \x01(\x0e\x32\x17.nidaqmx_grpc.TEDSUnitsH\x01\x12\x13\n\tunits_raw\x18\t \x01(\x05H\x01\x12>\n\x14voltage_excit_source\x18\n \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x02\x12\"\n\x18voltage_excit_source_raw\x18\x0b \x01(\x05H\x02\x12\x19\n\x11voltage_excit_val\x18\x0c \x01(\x01\x12\x19\n\x11\x63ustom_scale_name\x18\r \x01(\tB\x16\n\x14terminal_config_enumB\x0c\n\nunits_enumB\x1b\n\x19voltage_excit_source_enum\":\n(CreateTEDSAIVoltageChanWithExcitResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xdd\x01\n\x17\x43reateTableScaleRequest\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x16\n\x0eprescaled_vals\x18\x02 \x03(\x01\x12\x13\n\x0bscaled_vals\x18\x03 \x03(\x01\x12\x38\n\x10pre_scaled_units\x18\x04 \x01(\x0e\x32\x1c.nidaqmx_grpc.UnitsPreScaledH\x00\x12\x1e\n\x14pre_scaled_units_raw\x18\x05 \x01(\x05H\x00\x12\x14\n\x0cscaled_units\x18\x06 \x01(\tB\x17\n\x15pre_scaled_units_enum\"*\n\x18\x43reateTableScaleResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"x\n\x11\x43reateTaskRequest\x12\x14\n\x0csession_name\x18\x01 \x01(\t\x12M\n\x17initialization_behavior\x18\x02 \x01(\x0e\x32,.nidevice_grpc.SessionInitializationBehavior\"k\n\x12\x43reateTaskResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12$\n\x04task\x18\x02 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1f\n\x17new_session_initialized\x18\x03 \x01(\x08\"\xea\x01\n\x1e\x43reateWatchdogTimerTaskRequest\x12\x13\n\x0b\x64\x65vice_name\x18\x01 \x01(\t\x12\x14\n\x0csession_name\x18\x02 \x01(\t\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12=\n\nexp_states\x18\x04 \x03(\x0b\x32).nidaqmx_grpc.WatchdogExpChannelsAndState\x12M\n\x17initialization_behavior\x18\x05 \x01(\x0e\x32,.nidevice_grpc.SessionInitializationBehavior\"x\n\x1f\x43reateWatchdogTimerTaskResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12$\n\x04task\x18\x02 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1f\n\x17new_session_initialized\x18\x03 \x01(\x08\"\xad\x01\n CreateWatchdogTimerTaskExRequest\x12\x13\n\x0b\x64\x65vice_name\x18\x01 \x01(\t\x12\x14\n\x0csession_name\x18\x02 \x01(\t\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12M\n\x17initialization_behavior\x18\x04 \x01(\x0e\x32,.nidevice_grpc.SessionInitializationBehavior\"z\n!CreateWatchdogTimerTaskExResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12$\n\x04task\x18\x02 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1f\n\x17new_session_initialized\x18\x03 \x01(\x08\"1\n\x1a\x44\x65leteNetworkDeviceRequest\x12\x13\n\x0b\x64\x65vice_name\x18\x01 \x01(\t\"-\n\x1b\x44\x65leteNetworkDeviceResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"4\n\x1c\x44\x65leteSavedGlobalChanRequest\x12\x14\n\x0c\x63hannel_name\x18\x01 \x01(\t\"/\n\x1d\x44\x65leteSavedGlobalChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"-\n\x17\x44\x65leteSavedScaleRequest\x12\x12\n\nscale_name\x18\x01 \x01(\t\"*\n\x18\x44\x65leteSavedScaleResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"+\n\x16\x44\x65leteSavedTaskRequest\x12\x11\n\ttask_name\x18\x01 \x01(\t\")\n\x17\x44\x65leteSavedTaskResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"/\n\x18\x44\x65viceSupportsCalRequest\x12\x13\n\x0b\x64\x65vice_name\x18\x01 \x01(\t\"B\n\x19\x44\x65viceSupportsCalResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x15\n\rcal_supported\x18\x02 \x01(\x08\"=\n\x15\x44isableRefTrigRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\"(\n\x16\x44isableRefTrigResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"?\n\x17\x44isableStartTrigRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\"*\n\x18\x44isableStartTrigResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"O\n\x16\x44isconnectTermsRequest\x12\x17\n\x0fsource_terminal\x18\x01 \x01(\t\x12\x1c\n\x14\x64\x65stination_terminal\x18\x02 \x01(\t\")\n\x17\x44isconnectTermsResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xaa\x01\n\x13\x45xportSignalRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12)\n\tsignal_id\x18\x02 \x01(\x0e\x32\x14.nidaqmx_grpc.SignalH\x00\x12\x17\n\rsignal_id_raw\x18\x03 \x01(\x05H\x00\x12\x17\n\x0foutput_terminal\x18\x04 \x01(\tB\x10\n\x0esignal_id_enum\"&\n\x14\x45xportSignalResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"X\n\x1aGetAIChanCalCalDateRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x14\n\x0c\x63hannel_name\x18\x02 \x01(\t\"u\n\x1bGetAIChanCalCalDateResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x0c\n\x04year\x18\x02 \x01(\r\x12\r\n\x05month\x18\x03 \x01(\r\x12\x0b\n\x03\x64\x61y\x18\x04 \x01(\r\x12\x0c\n\x04hour\x18\x05 \x01(\r\x12\x0e\n\x06minute\x18\x06 \x01(\r\"X\n\x1aGetAIChanCalExpDateRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x14\n\x0c\x63hannel_name\x18\x02 \x01(\t\"u\n\x1bGetAIChanCalExpDateResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x0c\n\x04year\x18\x02 \x01(\r\x12\r\n\x05month\x18\x03 \x01(\r\x12\x0b\n\x03\x64\x61y\x18\x04 \x01(\r\x12\x0c\n\x04hour\x18\x05 \x01(\r\x12\x0e\n\x06minute\x18\x06 \x01(\r\"q\n\x1dGetAnalogPowerUpStatesRequest\x12\x13\n\x0b\x64\x65vice_name\x18\x01 \x01(\t\x12;\n\x08\x63hannels\x18\x02 \x03(\x0b\x32).nidaqmx_grpc.AnalogPowerUpChannelAndType\"I\n\x1eGetAnalogPowerUpStatesResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x17\n\x0fpower_up_states\x18\x02 \x03(\x01\"X\n+GetAnalogPowerUpStatesWithOutputTypeRequest\x12\x15\n\rchannel_names\x18\x01 \x01(\t\x12\x12\n\narray_size\x18\x02 \x01(\r\"\xb1\x01\n,GetAnalogPowerUpStatesWithOutputTypeResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x13\n\x0bstate_array\x18\x02 \x03(\x01\x12<\n\x12\x63hannel_type_array\x18\x03 \x03(\x0e\x32 .nidaqmx_grpc.PowerUpChannelType\x12\x1e\n\x16\x63hannel_type_array_raw\x18\x04 \x03(\x05\"J\n\"GetArmStartTrigTimestampValRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\"_\n#GetArmStartTrigTimestampValResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"F\n\x1eGetArmStartTrigTrigWhenRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\"[\n\x1fGetArmStartTrigTrigWhenResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"-\n+GetAutoConfiguredCDAQSyncConnectionsRequest\"Q\n,GetAutoConfiguredCDAQSyncConnectionsResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x11\n\tport_list\x18\x02 \x01(\t\"\xac\x01\n\x1fGetBufferAttributeUInt32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x38\n\tattribute\x18\x02 \x01(\x0e\x32#.nidaqmx_grpc.BufferUInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"A\n GetBufferAttributeUInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\r\"\xa1\x01\n\x1eGetCalInfoAttributeBoolRequest\x12\x13\n\x0b\x64\x65vice_name\x18\x01 \x01(\t\x12?\n\tattribute\x18\x02 \x01(\x0e\x32*.nidaqmx_grpc.CalibrationInfoBoolAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"@\n\x1fGetCalInfoAttributeBoolResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x08\"\xa5\x01\n GetCalInfoAttributeDoubleRequest\x12\x13\n\x0b\x64\x65vice_name\x18\x01 \x01(\t\x12\x41\n\tattribute\x18\x02 \x01(\x0e\x32,.nidaqmx_grpc.CalibrationInfoDoubleAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"B\n!GetCalInfoAttributeDoubleResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x01\"\xa5\x01\n GetCalInfoAttributeStringRequest\x12\x13\n\x0b\x64\x65vice_name\x18\x01 \x01(\t\x12\x41\n\tattribute\x18\x02 \x01(\x0e\x32,.nidaqmx_grpc.CalibrationInfoStringAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"B\n!GetCalInfoAttributeStringResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\t\"\xa5\x01\n GetCalInfoAttributeUInt32Request\x12\x13\n\x0b\x64\x65vice_name\x18\x01 \x01(\t\x12\x41\n\tattribute\x18\x02 \x01(\x0e\x32,.nidaqmx_grpc.CalibrationInfoUInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"B\n!GetCalInfoAttributeUInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\r\"\xb8\x01\n\x1bGetChanAttributeBoolRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07\x63hannel\x18\x02 \x01(\t\x12\x37\n\tattribute\x18\x03 \x01(\x0e\x32\".nidaqmx_grpc.ChannelBoolAttributeH\x00\x12\x17\n\rattribute_raw\x18\x04 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"=\n\x1cGetChanAttributeBoolResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x08\"\xbc\x01\n\x1dGetChanAttributeDoubleRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07\x63hannel\x18\x02 \x01(\t\x12\x39\n\tattribute\x18\x03 \x01(\x0e\x32$.nidaqmx_grpc.ChannelDoubleAttributeH\x00\x12\x17\n\rattribute_raw\x18\x04 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"?\n\x1eGetChanAttributeDoubleResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x01\"\xc6\x01\n\"GetChanAttributeDoubleArrayRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07\x63hannel\x18\x02 \x01(\t\x12>\n\tattribute\x18\x03 \x01(\x0e\x32).nidaqmx_grpc.ChannelDoubleArrayAttributeH\x00\x12\x17\n\rattribute_raw\x18\x04 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"D\n#GetChanAttributeDoubleArrayResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x03(\x01\"\xba\x01\n\x1cGetChanAttributeInt32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07\x63hannel\x18\x02 \x01(\t\x12\x38\n\tattribute\x18\x03 \x01(\x0e\x32#.nidaqmx_grpc.ChannelInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x04 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"|\n\x1dGetChanAttributeInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x38\n\x05value\x18\x02 \x01(\x0e\x32).nidaqmx_grpc.ChannelInt32AttributeValues\x12\x11\n\tvalue_raw\x18\x03 \x01(\x05\"\xbc\x01\n\x1dGetChanAttributeStringRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07\x63hannel\x18\x02 \x01(\t\x12\x39\n\tattribute\x18\x03 \x01(\x0e\x32$.nidaqmx_grpc.ChannelStringAttributeH\x00\x12\x17\n\rattribute_raw\x18\x04 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"?\n\x1eGetChanAttributeStringResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\t\"\xbc\x01\n\x1dGetChanAttributeUInt32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07\x63hannel\x18\x02 \x01(\t\x12\x39\n\tattribute\x18\x03 \x01(\x0e\x32$.nidaqmx_grpc.ChannelUInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x04 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"?\n\x1eGetChanAttributeUInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\r\"\x97\x01\n\x1dGetDeviceAttributeBoolRequest\x12\x13\n\x0b\x64\x65vice_name\x18\x01 \x01(\t\x12\x36\n\tattribute\x18\x02 \x01(\x0e\x32!.nidaqmx_grpc.DeviceBoolAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"?\n\x1eGetDeviceAttributeBoolResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x08\"\x9b\x01\n\x1fGetDeviceAttributeDoubleRequest\x12\x13\n\x0b\x64\x65vice_name\x18\x01 \x01(\t\x12\x38\n\tattribute\x18\x02 \x01(\x0e\x32#.nidaqmx_grpc.DeviceDoubleAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"A\n GetDeviceAttributeDoubleResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x01\"\xa5\x01\n$GetDeviceAttributeDoubleArrayRequest\x12\x13\n\x0b\x64\x65vice_name\x18\x01 \x01(\t\x12=\n\tattribute\x18\x02 \x01(\x0e\x32(.nidaqmx_grpc.DeviceDoubleArrayAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"F\n%GetDeviceAttributeDoubleArrayResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x03(\x01\"\x99\x01\n\x1eGetDeviceAttributeInt32Request\x12\x13\n\x0b\x64\x65vice_name\x18\x01 \x01(\t\x12\x37\n\tattribute\x18\x02 \x01(\x0e\x32\".nidaqmx_grpc.DeviceInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"}\n\x1fGetDeviceAttributeInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x37\n\x05value\x18\x02 \x01(\x0e\x32(.nidaqmx_grpc.DeviceInt32AttributeValues\x12\x11\n\tvalue_raw\x18\x03 \x01(\x05\"\xa3\x01\n#GetDeviceAttributeInt32ArrayRequest\x12\x13\n\x0b\x64\x65vice_name\x18\x01 \x01(\t\x12<\n\tattribute\x18\x02 \x01(\x0e\x32\'.nidaqmx_grpc.DeviceInt32ArrayAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"\x82\x01\n$GetDeviceAttributeInt32ArrayResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x37\n\x05value\x18\x02 \x03(\x0e\x32(.nidaqmx_grpc.DeviceInt32AttributeValues\x12\x11\n\tvalue_raw\x18\x03 \x03(\x05\"\x9b\x01\n\x1fGetDeviceAttributeStringRequest\x12\x13\n\x0b\x64\x65vice_name\x18\x01 \x01(\t\x12\x38\n\tattribute\x18\x02 \x01(\x0e\x32#.nidaqmx_grpc.DeviceStringAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"A\n GetDeviceAttributeStringResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\t\"\x9b\x01\n\x1fGetDeviceAttributeUInt32Request\x12\x13\n\x0b\x64\x65vice_name\x18\x01 \x01(\t\x12\x38\n\tattribute\x18\x02 \x01(\x0e\x32#.nidaqmx_grpc.DeviceUInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"A\n GetDeviceAttributeUInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\r\"\xa5\x01\n$GetDeviceAttributeUInt32ArrayRequest\x12\x13\n\x0b\x64\x65vice_name\x18\x01 \x01(\t\x12=\n\tattribute\x18\x02 \x01(\x0e\x32(.nidaqmx_grpc.DeviceUInt32ArrayAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"F\n%GetDeviceAttributeUInt32ArrayResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x03(\r\"?\n(GetDigitalLogicFamilyPowerUpStateRequest\x12\x13\n\x0b\x64\x65vice_name\x18\x01 \x01(\t\"Q\n)GetDigitalLogicFamilyPowerUpStateResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x14\n\x0clogic_family\x18\x02 \x01(\x05\"K\n\x1eGetDigitalPowerUpStatesRequest\x12\x13\n\x0b\x64\x65vice_name\x18\x01 \x01(\t\x12\x14\n\x0c\x63hannel_name\x18\x02 \x03(\t\"g\n\x1fGetDigitalPowerUpStatesResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x34\n\x0fpower_up_states\x18\x02 \x03(\x0e\x32\x1b.nidaqmx_grpc.PowerUpStates\"R\n%GetDigitalPullUpPullDownStatesRequest\x12\x13\n\x0b\x64\x65vice_name\x18\x01 \x01(\t\x12\x14\n\x0c\x63hannel_name\x18\x02 \x03(\t\"w\n&GetDigitalPullUpPullDownStatesResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12=\n\x18pull_up_pull_down_states\x18\x02 \x03(\x0e\x32\x1b.nidaqmx_grpc.ResistorState\"%\n#GetDisconnectedCDAQSyncPortsRequest\"I\n$GetDisconnectedCDAQSyncPortsResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x11\n\tport_list\x18\x02 \x01(\t\"+\n\x15GetErrorStringRequest\x12\x12\n\nerror_code\x18\x01 \x01(\x05\">\n\x16GetErrorStringResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x14\n\x0c\x65rror_string\x18\x02 \x01(\t\"\xb6\x01\n%GetExportedSignalAttributeBoolRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12<\n\tattribute\x18\x02 \x01(\x0e\x32\'.nidaqmx_grpc.ExportSignalBoolAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"G\n&GetExportedSignalAttributeBoolResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x08\"\xba\x01\n\'GetExportedSignalAttributeDoubleRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12>\n\tattribute\x18\x02 \x01(\x0e\x32).nidaqmx_grpc.ExportSignalDoubleAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"I\n(GetExportedSignalAttributeDoubleResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x01\"\xb8\x01\n&GetExportedSignalAttributeInt32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12=\n\tattribute\x18\x02 \x01(\x0e\x32(.nidaqmx_grpc.ExportSignalInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"\x8b\x01\n\'GetExportedSignalAttributeInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12=\n\x05value\x18\x02 \x01(\x0e\x32..nidaqmx_grpc.ExportSignalInt32AttributeValues\x12\x11\n\tvalue_raw\x18\x03 \x01(\x05\"\xba\x01\n\'GetExportedSignalAttributeStringRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12>\n\tattribute\x18\x02 \x01(\x0e\x32).nidaqmx_grpc.ExportSignalStringAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"I\n(GetExportedSignalAttributeStringResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\t\"\xba\x01\n\'GetExportedSignalAttributeUInt32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12>\n\tattribute\x18\x02 \x01(\x0e\x32).nidaqmx_grpc.ExportSignalUInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"I\n(GetExportedSignalAttributeUInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\r\"6\n\x1fGetExtCalLastDateAndTimeRequest\x12\x13\n\x0b\x64\x65vice_name\x18\x01 \x01(\t\"z\n GetExtCalLastDateAndTimeResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x0c\n\x04year\x18\x02 \x01(\r\x12\r\n\x05month\x18\x03 \x01(\r\x12\x0b\n\x03\x64\x61y\x18\x04 \x01(\r\x12\x0c\n\x04hour\x18\x05 \x01(\r\x12\x0e\n\x06minute\x18\x06 \x01(\r\"B\n\x1aGetFirstSampClkWhenRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\"W\n\x1bGetFirstSampClkWhenResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"G\n\x1fGetFirstSampTimestampValRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\"\\\n GetFirstSampTimestampValResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"O\n\x18GetNthTaskChannelRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\r\n\x05index\x18\x02 \x01(\r\";\n\x19GetNthTaskChannelResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x0e\n\x06\x62uffer\x18\x02 \x01(\t\"N\n\x17GetNthTaskDeviceRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\r\n\x05index\x18\x02 \x01(\r\":\n\x18GetNthTaskDeviceResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x0e\n\x06\x62uffer\x18\x02 \x01(\t\"S\n\x1cGetNthTaskReadChannelRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\r\n\x05index\x18\x02 \x01(\r\"?\n\x1dGetNthTaskReadChannelResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x0e\n\x06\x62uffer\x18\x02 \x01(\t\"\xa4\x01\n$GetPersistedChanAttributeBoolRequest\x12\x0f\n\x07\x63hannel\x18\x01 \x01(\t\x12@\n\tattribute\x18\x02 \x01(\x0e\x32+.nidaqmx_grpc.PersistedChannelBoolAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"F\n%GetPersistedChanAttributeBoolResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x08\"\xa8\x01\n&GetPersistedChanAttributeStringRequest\x12\x0f\n\x07\x63hannel\x18\x01 \x01(\t\x12\x42\n\tattribute\x18\x02 \x01(\x0e\x32-.nidaqmx_grpc.PersistedChannelStringAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"H\n\'GetPersistedChanAttributeStringResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\t\"\xa6\x01\n%GetPersistedScaleAttributeBoolRequest\x12\x12\n\nscale_name\x18\x01 \x01(\t\x12>\n\tattribute\x18\x02 \x01(\x0e\x32).nidaqmx_grpc.PersistedScaleBoolAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"G\n&GetPersistedScaleAttributeBoolResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x08\"\xaa\x01\n\'GetPersistedScaleAttributeStringRequest\x12\x12\n\nscale_name\x18\x01 \x01(\t\x12@\n\tattribute\x18\x02 \x01(\x0e\x32+.nidaqmx_grpc.PersistedScaleStringAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"I\n(GetPersistedScaleAttributeStringResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\t\"\xa3\x01\n$GetPersistedTaskAttributeBoolRequest\x12\x11\n\ttask_name\x18\x01 \x01(\t\x12=\n\tattribute\x18\x02 \x01(\x0e\x32(.nidaqmx_grpc.PersistedTaskBoolAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"F\n%GetPersistedTaskAttributeBoolResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x08\"\xa7\x01\n&GetPersistedTaskAttributeStringRequest\x12\x11\n\ttask_name\x18\x01 \x01(\t\x12?\n\tattribute\x18\x02 \x01(\x0e\x32*.nidaqmx_grpc.PersistedTaskStringAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"H\n\'GetPersistedTaskAttributeStringResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\t\"\xab\x01\n#GetPhysicalChanAttributeBoolRequest\x12\x18\n\x10physical_channel\x18\x01 \x01(\t\x12?\n\tattribute\x18\x02 \x01(\x0e\x32*.nidaqmx_grpc.PhysicalChannelBoolAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"E\n$GetPhysicalChanAttributeBoolResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x08\"\xad\x01\n$GetPhysicalChanAttributeBytesRequest\x12\x18\n\x10physical_channel\x18\x01 \x01(\t\x12@\n\tattribute\x18\x02 \x01(\x0e\x32+.nidaqmx_grpc.PhysicalChannelBytesAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"F\n%GetPhysicalChanAttributeBytesResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x0c\"\xaf\x01\n%GetPhysicalChanAttributeDoubleRequest\x12\x18\n\x10physical_channel\x18\x01 \x01(\t\x12\x41\n\tattribute\x18\x02 \x01(\x0e\x32,.nidaqmx_grpc.PhysicalChannelDoubleAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"G\n&GetPhysicalChanAttributeDoubleResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x01\"\xb9\x01\n*GetPhysicalChanAttributeDoubleArrayRequest\x12\x18\n\x10physical_channel\x18\x01 \x01(\t\x12\x46\n\tattribute\x18\x02 \x01(\x0e\x32\x31.nidaqmx_grpc.PhysicalChannelDoubleArrayAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"L\n+GetPhysicalChanAttributeDoubleArrayResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x03(\x01\"\xad\x01\n$GetPhysicalChanAttributeInt32Request\x12\x18\n\x10physical_channel\x18\x01 \x01(\t\x12@\n\tattribute\x18\x02 \x01(\x0e\x32+.nidaqmx_grpc.PhysicalChannelInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"\x8c\x01\n%GetPhysicalChanAttributeInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12@\n\x05value\x18\x02 \x01(\x0e\x32\x31.nidaqmx_grpc.PhysicalChannelInt32AttributeValues\x12\x11\n\tvalue_raw\x18\x03 \x01(\x05\"\xb7\x01\n)GetPhysicalChanAttributeInt32ArrayRequest\x12\x18\n\x10physical_channel\x18\x01 \x01(\t\x12\x45\n\tattribute\x18\x02 \x01(\x0e\x32\x30.nidaqmx_grpc.PhysicalChannelInt32ArrayAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"\x91\x01\n*GetPhysicalChanAttributeInt32ArrayResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12@\n\x05value\x18\x02 \x03(\x0e\x32\x31.nidaqmx_grpc.PhysicalChannelInt32AttributeValues\x12\x11\n\tvalue_raw\x18\x03 \x03(\x05\"\xaf\x01\n%GetPhysicalChanAttributeStringRequest\x12\x18\n\x10physical_channel\x18\x01 \x01(\t\x12\x41\n\tattribute\x18\x02 \x01(\x0e\x32,.nidaqmx_grpc.PhysicalChannelStringAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"G\n&GetPhysicalChanAttributeStringResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\t\"\xaf\x01\n%GetPhysicalChanAttributeUInt32Request\x12\x18\n\x10physical_channel\x18\x01 \x01(\t\x12\x41\n\tattribute\x18\x02 \x01(\x0e\x32,.nidaqmx_grpc.PhysicalChannelUInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"G\n&GetPhysicalChanAttributeUInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\r\"\xb9\x01\n*GetPhysicalChanAttributeUInt32ArrayRequest\x12\x18\n\x10physical_channel\x18\x01 \x01(\t\x12\x46\n\tattribute\x18\x02 \x01(\x0e\x32\x31.nidaqmx_grpc.PhysicalChannelUInt32ArrayAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"L\n+GetPhysicalChanAttributeUInt32ArrayResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x03(\r\"\xa4\x01\n\x1bGetReadAttributeBoolRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x34\n\tattribute\x18\x02 \x01(\x0e\x32\x1f.nidaqmx_grpc.ReadBoolAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"=\n\x1cGetReadAttributeBoolResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x08\"\xa8\x01\n\x1dGetReadAttributeDoubleRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x36\n\tattribute\x18\x02 \x01(\x0e\x32!.nidaqmx_grpc.ReadDoubleAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"?\n\x1eGetReadAttributeDoubleResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x01\"\xa6\x01\n\x1cGetReadAttributeInt32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x35\n\tattribute\x18\x02 \x01(\x0e\x32 .nidaqmx_grpc.ReadInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"y\n\x1dGetReadAttributeInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x35\n\x05value\x18\x02 \x01(\x0e\x32&.nidaqmx_grpc.ReadInt32AttributeValues\x12\x11\n\tvalue_raw\x18\x03 \x01(\x05\"\xa8\x01\n\x1dGetReadAttributeStringRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x36\n\tattribute\x18\x02 \x01(\x0e\x32!.nidaqmx_grpc.ReadStringAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"?\n\x1eGetReadAttributeStringResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\t\"\xa8\x01\n\x1dGetReadAttributeUInt32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x36\n\tattribute\x18\x02 \x01(\x0e\x32!.nidaqmx_grpc.ReadUInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"?\n\x1eGetReadAttributeUInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\r\"\xa8\x01\n\x1dGetReadAttributeUInt64Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x36\n\tattribute\x18\x02 \x01(\x0e\x32!.nidaqmx_grpc.ReadUInt64AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"?\n\x1eGetReadAttributeUInt64Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x04\"\xac\x01\n\x1fGetRealTimeAttributeBoolRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x38\n\tattribute\x18\x02 \x01(\x0e\x32#.nidaqmx_grpc.RealTimeBoolAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"A\n GetRealTimeAttributeBoolResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x08\"\xae\x01\n GetRealTimeAttributeInt32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x39\n\tattribute\x18\x02 \x01(\x0e\x32$.nidaqmx_grpc.RealTimeInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"\x81\x01\n!GetRealTimeAttributeInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x39\n\x05value\x18\x02 \x01(\x0e\x32*.nidaqmx_grpc.RealTimeInt32AttributeValues\x12\x11\n\tvalue_raw\x18\x03 \x01(\x05\"\xb0\x01\n!GetRealTimeAttributeUInt32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12:\n\tattribute\x18\x02 \x01(\x0e\x32%.nidaqmx_grpc.RealTimeUInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"C\n\"GetRealTimeAttributeUInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\r\"E\n\x1dGetRefTrigTimestampValRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\"Z\n\x1eGetRefTrigTimestampValResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"\x98\x01\n\x1eGetScaleAttributeDoubleRequest\x12\x12\n\nscale_name\x18\x01 \x01(\t\x12\x37\n\tattribute\x18\x02 \x01(\x0e\x32\".nidaqmx_grpc.ScaleDoubleAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"@\n\x1fGetScaleAttributeDoubleResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x01\"\xa2\x01\n#GetScaleAttributeDoubleArrayRequest\x12\x12\n\nscale_name\x18\x01 \x01(\t\x12<\n\tattribute\x18\x02 \x01(\x0e\x32\'.nidaqmx_grpc.ScaleDoubleArrayAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"E\n$GetScaleAttributeDoubleArrayResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x03(\x01\"\x96\x01\n\x1dGetScaleAttributeInt32Request\x12\x12\n\nscale_name\x18\x01 \x01(\t\x12\x36\n\tattribute\x18\x02 \x01(\x0e\x32!.nidaqmx_grpc.ScaleInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"{\n\x1eGetScaleAttributeInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x36\n\x05value\x18\x02 \x01(\x0e\x32\'.nidaqmx_grpc.ScaleInt32AttributeValues\x12\x11\n\tvalue_raw\x18\x03 \x01(\x05\"\x98\x01\n\x1eGetScaleAttributeStringRequest\x12\x12\n\nscale_name\x18\x01 \x01(\t\x12\x37\n\tattribute\x18\x02 \x01(\x0e\x32\".nidaqmx_grpc.ScaleStringAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"@\n\x1fGetScaleAttributeStringResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\t\"7\n GetSelfCalLastDateAndTimeRequest\x12\x13\n\x0b\x64\x65vice_name\x18\x01 \x01(\t\"{\n!GetSelfCalLastDateAndTimeResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x0c\n\x04year\x18\x02 \x01(\r\x12\r\n\x05month\x18\x03 \x01(\r\x12\x0b\n\x03\x64\x61y\x18\x04 \x01(\r\x12\x0c\n\x04hour\x18\x05 \x01(\r\x12\x0e\n\x06minute\x18\x06 \x01(\r\"G\n\x1fGetStartTrigTimestampValRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\"\\\n GetStartTrigTimestampValResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"C\n\x1bGetStartTrigTrigWhenRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\"X\n\x1cGetStartTrigTrigWhenResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"C\n\x1bGetSyncPulseTimeWhenRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\"X\n\x1cGetSyncPulseTimeWhenResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"\x8a\x01\n#GetSystemInfoAttributeStringRequest\x12\x38\n\tattribute\x18\x01 \x01(\x0e\x32#.nidaqmx_grpc.SystemStringAttributeH\x00\x12\x17\n\rattribute_raw\x18\x02 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"E\n$GetSystemInfoAttributeStringResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\t\"\x8a\x01\n#GetSystemInfoAttributeUInt32Request\x12\x38\n\tattribute\x18\x01 \x01(\x0e\x32#.nidaqmx_grpc.SystemUInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x02 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"E\n$GetSystemInfoAttributeUInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\r\"\xa4\x01\n\x1bGetTaskAttributeBoolRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x34\n\tattribute\x18\x02 \x01(\x0e\x32\x1f.nidaqmx_grpc.TaskBoolAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"=\n\x1cGetTaskAttributeBoolResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x08\"\xa8\x01\n\x1dGetTaskAttributeStringRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x36\n\tattribute\x18\x02 \x01(\x0e\x32!.nidaqmx_grpc.TaskStringAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"?\n\x1eGetTaskAttributeStringResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\t\"\xa8\x01\n\x1dGetTaskAttributeUInt32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x36\n\tattribute\x18\x02 \x01(\x0e\x32!.nidaqmx_grpc.TaskUInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"?\n\x1eGetTaskAttributeUInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\r\"\xa8\x01\n\x1dGetTimingAttributeBoolRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x36\n\tattribute\x18\x02 \x01(\x0e\x32!.nidaqmx_grpc.TimingBoolAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"?\n\x1eGetTimingAttributeBoolResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x08\"\xac\x01\n\x1fGetTimingAttributeDoubleRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x38\n\tattribute\x18\x02 \x01(\x0e\x32#.nidaqmx_grpc.TimingDoubleAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"A\n GetTimingAttributeDoubleResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x01\"\xc0\x01\n\x1fGetTimingAttributeExBoolRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x14\n\x0c\x64\x65vice_names\x18\x02 \x01(\t\x12\x36\n\tattribute\x18\x03 \x01(\x0e\x32!.nidaqmx_grpc.TimingBoolAttributeH\x00\x12\x17\n\rattribute_raw\x18\x04 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"A\n GetTimingAttributeExBoolResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x08\"\xc4\x01\n!GetTimingAttributeExDoubleRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x14\n\x0c\x64\x65vice_names\x18\x02 \x01(\t\x12\x38\n\tattribute\x18\x03 \x01(\x0e\x32#.nidaqmx_grpc.TimingDoubleAttributeH\x00\x12\x17\n\rattribute_raw\x18\x04 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"C\n\"GetTimingAttributeExDoubleResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x01\"\xc2\x01\n GetTimingAttributeExInt32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x14\n\x0c\x64\x65vice_names\x18\x02 \x01(\t\x12\x37\n\tattribute\x18\x03 \x01(\x0e\x32\".nidaqmx_grpc.TimingInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x04 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"\x7f\n!GetTimingAttributeExInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x37\n\x05value\x18\x02 \x01(\x0e\x32(.nidaqmx_grpc.TimingInt32AttributeValues\x12\x11\n\tvalue_raw\x18\x03 \x01(\x05\"\xc4\x01\n!GetTimingAttributeExStringRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x14\n\x0c\x64\x65vice_names\x18\x02 \x01(\t\x12\x38\n\tattribute\x18\x03 \x01(\x0e\x32#.nidaqmx_grpc.TimingStringAttributeH\x00\x12\x17\n\rattribute_raw\x18\x04 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"C\n\"GetTimingAttributeExStringResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\t\"\xca\x01\n$GetTimingAttributeExTimestampRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x14\n\x0c\x64\x65vice_names\x18\x02 \x01(\t\x12;\n\tattribute\x18\x03 \x01(\x0e\x32&.nidaqmx_grpc.TimingTimestampAttributeH\x00\x12\x17\n\rattribute_raw\x18\x04 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"b\n%GetTimingAttributeExTimestampResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12)\n\x05value\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"\xc4\x01\n!GetTimingAttributeExUInt32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x14\n\x0c\x64\x65vice_names\x18\x02 \x01(\t\x12\x38\n\tattribute\x18\x03 \x01(\x0e\x32#.nidaqmx_grpc.TimingUInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x04 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"C\n\"GetTimingAttributeExUInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\r\"\xc4\x01\n!GetTimingAttributeExUInt64Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x14\n\x0c\x64\x65vice_names\x18\x02 \x01(\t\x12\x38\n\tattribute\x18\x03 \x01(\x0e\x32#.nidaqmx_grpc.TimingUInt64AttributeH\x00\x12\x17\n\rattribute_raw\x18\x04 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"C\n\"GetTimingAttributeExUInt64Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x04\"\xaa\x01\n\x1eGetTimingAttributeInt32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x37\n\tattribute\x18\x02 \x01(\x0e\x32\".nidaqmx_grpc.TimingInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"}\n\x1fGetTimingAttributeInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x37\n\x05value\x18\x02 \x01(\x0e\x32(.nidaqmx_grpc.TimingInt32AttributeValues\x12\x11\n\tvalue_raw\x18\x03 \x01(\x05\"\xac\x01\n\x1fGetTimingAttributeStringRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x38\n\tattribute\x18\x02 \x01(\x0e\x32#.nidaqmx_grpc.TimingStringAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"A\n GetTimingAttributeStringResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\t\"\xb2\x01\n\"GetTimingAttributeTimestampRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12;\n\tattribute\x18\x02 \x01(\x0e\x32&.nidaqmx_grpc.TimingTimestampAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"`\n#GetTimingAttributeTimestampResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12)\n\x05value\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"\xac\x01\n\x1fGetTimingAttributeUInt32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x38\n\tattribute\x18\x02 \x01(\x0e\x32#.nidaqmx_grpc.TimingUInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"A\n GetTimingAttributeUInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\r\"\xac\x01\n\x1fGetTimingAttributeUInt64Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x38\n\tattribute\x18\x02 \x01(\x0e\x32#.nidaqmx_grpc.TimingUInt64AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"A\n GetTimingAttributeUInt64Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x04\"\xa7\x01\n\x1bGetTrigAttributeBoolRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x37\n\tattribute\x18\x02 \x01(\x0e\x32\".nidaqmx_grpc.TriggerBoolAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"=\n\x1cGetTrigAttributeBoolResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x08\"\xab\x01\n\x1dGetTrigAttributeDoubleRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x39\n\tattribute\x18\x02 \x01(\x0e\x32$.nidaqmx_grpc.TriggerDoubleAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"?\n\x1eGetTrigAttributeDoubleResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x01\"\xb5\x01\n\"GetTrigAttributeDoubleArrayRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12>\n\tattribute\x18\x02 \x01(\x0e\x32).nidaqmx_grpc.TriggerDoubleArrayAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"D\n#GetTrigAttributeDoubleArrayResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x03(\x01\"\xa9\x01\n\x1cGetTrigAttributeInt32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x38\n\tattribute\x18\x02 \x01(\x0e\x32#.nidaqmx_grpc.TriggerInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"|\n\x1dGetTrigAttributeInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x38\n\x05value\x18\x02 \x01(\x0e\x32).nidaqmx_grpc.TriggerInt32AttributeValues\x12\x11\n\tvalue_raw\x18\x03 \x01(\x05\"\xb3\x01\n!GetTrigAttributeInt32ArrayRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12=\n\tattribute\x18\x02 \x01(\x0e\x32(.nidaqmx_grpc.TriggerInt32ArrayAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"\x81\x01\n\"GetTrigAttributeInt32ArrayResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x38\n\x05value\x18\x02 \x03(\x0e\x32).nidaqmx_grpc.TriggerInt32AttributeValues\x12\x11\n\tvalue_raw\x18\x03 \x03(\x05\"\xab\x01\n\x1dGetTrigAttributeStringRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x39\n\tattribute\x18\x02 \x01(\x0e\x32$.nidaqmx_grpc.TriggerStringAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"?\n\x1eGetTrigAttributeStringResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\t\"\xb1\x01\n GetTrigAttributeTimestampRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12<\n\tattribute\x18\x02 \x01(\x0e\x32\'.nidaqmx_grpc.TriggerTimestampAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"^\n!GetTrigAttributeTimestampResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12)\n\x05value\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"\xab\x01\n\x1dGetTrigAttributeUInt32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x39\n\tattribute\x18\x02 \x01(\x0e\x32$.nidaqmx_grpc.TriggerUInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"?\n\x1eGetTrigAttributeUInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\r\"\xbb\x01\n\x1fGetWatchdogAttributeBoolRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\r\n\x05lines\x18\x02 \x01(\t\x12\x38\n\tattribute\x18\x03 \x01(\x0e\x32#.nidaqmx_grpc.WatchdogBoolAttributeH\x00\x12\x17\n\rattribute_raw\x18\x04 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"A\n GetWatchdogAttributeBoolResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x08\"\xbf\x01\n!GetWatchdogAttributeDoubleRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\r\n\x05lines\x18\x02 \x01(\t\x12:\n\tattribute\x18\x03 \x01(\x0e\x32%.nidaqmx_grpc.WatchdogDoubleAttributeH\x00\x12\x17\n\rattribute_raw\x18\x04 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"C\n\"GetWatchdogAttributeDoubleResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x01\"\xbd\x01\n GetWatchdogAttributeInt32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\r\n\x05lines\x18\x02 \x01(\t\x12\x39\n\tattribute\x18\x03 \x01(\x0e\x32$.nidaqmx_grpc.WatchdogInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x04 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"\x81\x01\n!GetWatchdogAttributeInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x39\n\x05value\x18\x02 \x01(\x0e\x32*.nidaqmx_grpc.WatchdogInt32AttributeValues\x12\x11\n\tvalue_raw\x18\x03 \x01(\x05\"\xbf\x01\n!GetWatchdogAttributeStringRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\r\n\x05lines\x18\x02 \x01(\t\x12:\n\tattribute\x18\x03 \x01(\x0e\x32%.nidaqmx_grpc.WatchdogStringAttributeH\x00\x12\x17\n\rattribute_raw\x18\x04 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"C\n\"GetWatchdogAttributeStringResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\t\"\xa6\x01\n\x1cGetWriteAttributeBoolRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x35\n\tattribute\x18\x02 \x01(\x0e\x32 .nidaqmx_grpc.WriteBoolAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\">\n\x1dGetWriteAttributeBoolResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x08\"\xaa\x01\n\x1eGetWriteAttributeDoubleRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x37\n\tattribute\x18\x02 \x01(\x0e\x32\".nidaqmx_grpc.WriteDoubleAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"@\n\x1fGetWriteAttributeDoubleResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x01\"\xa8\x01\n\x1dGetWriteAttributeInt32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x36\n\tattribute\x18\x02 \x01(\x0e\x32!.nidaqmx_grpc.WriteInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"{\n\x1eGetWriteAttributeInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x36\n\x05value\x18\x02 \x01(\x0e\x32\'.nidaqmx_grpc.WriteInt32AttributeValues\x12\x11\n\tvalue_raw\x18\x03 \x01(\x05\"\xaa\x01\n\x1eGetWriteAttributeStringRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x37\n\tattribute\x18\x02 \x01(\x0e\x32\".nidaqmx_grpc.WriteStringAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"@\n\x1fGetWriteAttributeStringResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\t\"\xaa\x01\n\x1eGetWriteAttributeUInt32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x37\n\tattribute\x18\x02 \x01(\x0e\x32\".nidaqmx_grpc.WriteUInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"@\n\x1fGetWriteAttributeUInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\r\"\xaa\x01\n\x1eGetWriteAttributeUInt64Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x37\n\tattribute\x18\x02 \x01(\x0e\x32\".nidaqmx_grpc.WriteUInt64AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"@\n\x1fGetWriteAttributeUInt64Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x04\"9\n\x11IsTaskDoneRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\":\n\x12IsTaskDoneResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x14\n\x0cis_task_done\x18\x02 \x01(\x08\"v\n\x0fLoadTaskRequest\x12\x14\n\x0csession_name\x18\x01 \x01(\t\x12M\n\x17initialization_behavior\x18\x02 \x01(\x0e\x32,.nidevice_grpc.SessionInitializationBehavior\"i\n\x10LoadTaskResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12$\n\x04task\x18\x02 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1f\n\x17new_session_initialized\x18\x03 \x01(\x08\"\x82\x01\n&PerformBridgeOffsetNullingCalExRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07\x63hannel\x18\x02 \x01(\t\x12!\n\x19skip_unsupported_channels\x18\x03 \x01(\x08\"9\n\'PerformBridgeOffsetNullingCalExResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xc5\x04\n\x1ePerformBridgeShuntCalExRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07\x63hannel\x18\x02 \x01(\t\x12\x1c\n\x14shunt_resistor_value\x18\x03 \x01(\x01\x12\x45\n\x17shunt_resistor_location\x18\x04 \x01(\x0e\x32\".nidaqmx_grpc.ShuntElementLocationH\x00\x12%\n\x1bshunt_resistor_location_raw\x18\x05 \x01(\x05H\x00\x12=\n\x15shunt_resistor_select\x18\x06 \x01(\x0e\x32\x1c.nidaqmx_grpc.ShuntCalSelectH\x01\x12#\n\x19shunt_resistor_select_raw\x18\x07 \x01(\x05H\x01\x12=\n\x15shunt_resistor_source\x18\x08 \x01(\x0e\x32\x1c.nidaqmx_grpc.ShuntCalSourceH\x02\x12#\n\x19shunt_resistor_source_raw\x18\t \x01(\x05H\x02\x12\x19\n\x11\x62ridge_resistance\x18\n \x01(\x01\x12!\n\x19skip_unsupported_channels\x18\x0b \x01(\x08\x42\x1e\n\x1cshunt_resistor_location_enumB\x1c\n\x1ashunt_resistor_select_enumB\x1c\n\x1ashunt_resistor_source_enum\"1\n\x1fPerformBridgeShuntCalExResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xaa\x04\n\x1ePerformStrainShuntCalExRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07\x63hannel\x18\x02 \x01(\t\x12\x1c\n\x14shunt_resistor_value\x18\x03 \x01(\x01\x12\x45\n\x17shunt_resistor_location\x18\x04 \x01(\x0e\x32\".nidaqmx_grpc.ShuntElementLocationH\x00\x12%\n\x1bshunt_resistor_location_raw\x18\x05 \x01(\x05H\x00\x12=\n\x15shunt_resistor_select\x18\x06 \x01(\x0e\x32\x1c.nidaqmx_grpc.ShuntCalSelectH\x01\x12#\n\x19shunt_resistor_select_raw\x18\x07 \x01(\x05H\x01\x12=\n\x15shunt_resistor_source\x18\x08 \x01(\x0e\x32\x1c.nidaqmx_grpc.ShuntCalSourceH\x02\x12#\n\x19shunt_resistor_source_raw\x18\t \x01(\x05H\x02\x12!\n\x19skip_unsupported_channels\x18\n \x01(\x08\x42\x1e\n\x1cshunt_resistor_location_enumB\x1c\n\x1ashunt_resistor_select_enumB\x1c\n\x1ashunt_resistor_source_enum\"1\n\x1fPerformStrainShuntCalExResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x85\x01\n)PerformThrmcplLeadOffsetNullingCalRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07\x63hannel\x18\x02 \x01(\t\x12!\n\x19skip_unsupported_channels\x18\x03 \x01(\x08\"<\n*PerformThrmcplLeadOffsetNullingCalResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xdd\x01\n\x14ReadAnalogF64Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12*\n\tfill_mode\x18\x04 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x17\n\rfill_mode_raw\x18\x05 \x01(\x05H\x00\x12\x1b\n\x13\x61rray_size_in_samps\x18\x06 \x01(\rB\x10\n\x0e\x66ill_mode_enum\"X\n\x15ReadAnalogF64Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x12\n\nread_array\x18\x02 \x03(\x01\x12\x1b\n\x13samps_per_chan_read\x18\x03 \x01(\x05\"\xe2\x01\n\x19\x42\x65ginReadAnalogF64Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12*\n\tfill_mode\x18\x04 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x17\n\rfill_mode_raw\x18\x05 \x01(\x05H\x00\x12\x1b\n\x13\x61rray_size_in_samps\x18\x06 \x01(\rB\x10\n\x0e\x66ill_mode_enum\"X\n\x1a\x42\x65ginReadAnalogF64Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"_\n\x1cMonikerReadAnalogF64Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x12\n\nread_array\x18\x02 \x03(\x01\x12\x1b\n\x13samps_per_chan_read\x18\x03 \x01(\x05\"S\n\x1aReadAnalogScalarF64Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07timeout\x18\x02 \x01(\x01\"<\n\x1bReadAnalogScalarF64Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x01\"X\n\x1f\x42\x65ginReadAnalogScalarF64Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07timeout\x18\x02 \x01(\x01\"^\n BeginReadAnalogScalarF64Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"C\n\"MonikerReadAnalogScalarF64Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x01\"\xdd\x01\n\x14ReadBinaryI16Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12*\n\tfill_mode\x18\x04 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x17\n\rfill_mode_raw\x18\x05 \x01(\x05H\x00\x12\x1b\n\x13\x61rray_size_in_samps\x18\x06 \x01(\rB\x10\n\x0e\x66ill_mode_enum\"X\n\x15ReadBinaryI16Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x12\n\nread_array\x18\x02 \x03(\x05\x12\x1b\n\x13samps_per_chan_read\x18\x03 \x01(\x05\"\xe2\x01\n\x19\x42\x65ginReadBinaryI16Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12*\n\tfill_mode\x18\x04 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x17\n\rfill_mode_raw\x18\x05 \x01(\x05H\x00\x12\x1b\n\x13\x61rray_size_in_samps\x18\x06 \x01(\rB\x10\n\x0e\x66ill_mode_enum\"X\n\x1a\x42\x65ginReadBinaryI16Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"_\n\x1cMonikerReadBinaryI16Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x12\n\nread_array\x18\x02 \x03(\x05\x12\x1b\n\x13samps_per_chan_read\x18\x03 \x01(\x05\"\xdd\x01\n\x14ReadBinaryI32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12*\n\tfill_mode\x18\x04 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x17\n\rfill_mode_raw\x18\x05 \x01(\x05H\x00\x12\x1b\n\x13\x61rray_size_in_samps\x18\x06 \x01(\rB\x10\n\x0e\x66ill_mode_enum\"X\n\x15ReadBinaryI32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x12\n\nread_array\x18\x02 \x03(\x05\x12\x1b\n\x13samps_per_chan_read\x18\x03 \x01(\x05\"\xe2\x01\n\x19\x42\x65ginReadBinaryI32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12*\n\tfill_mode\x18\x04 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x17\n\rfill_mode_raw\x18\x05 \x01(\x05H\x00\x12\x1b\n\x13\x61rray_size_in_samps\x18\x06 \x01(\rB\x10\n\x0e\x66ill_mode_enum\"X\n\x1a\x42\x65ginReadBinaryI32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"_\n\x1cMonikerReadBinaryI32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x12\n\nread_array\x18\x02 \x03(\x05\x12\x1b\n\x13samps_per_chan_read\x18\x03 \x01(\x05\"\xdd\x01\n\x14ReadBinaryU16Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12*\n\tfill_mode\x18\x04 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x17\n\rfill_mode_raw\x18\x05 \x01(\x05H\x00\x12\x1b\n\x13\x61rray_size_in_samps\x18\x06 \x01(\rB\x10\n\x0e\x66ill_mode_enum\"X\n\x15ReadBinaryU16Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x12\n\nread_array\x18\x02 \x03(\r\x12\x1b\n\x13samps_per_chan_read\x18\x03 \x01(\x05\"\xe2\x01\n\x19\x42\x65ginReadBinaryU16Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12*\n\tfill_mode\x18\x04 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x17\n\rfill_mode_raw\x18\x05 \x01(\x05H\x00\x12\x1b\n\x13\x61rray_size_in_samps\x18\x06 \x01(\rB\x10\n\x0e\x66ill_mode_enum\"X\n\x1a\x42\x65ginReadBinaryU16Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"_\n\x1cMonikerReadBinaryU16Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x12\n\nread_array\x18\x02 \x03(\r\x12\x1b\n\x13samps_per_chan_read\x18\x03 \x01(\x05\"\xdd\x01\n\x14ReadBinaryU32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12*\n\tfill_mode\x18\x04 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x17\n\rfill_mode_raw\x18\x05 \x01(\x05H\x00\x12\x1b\n\x13\x61rray_size_in_samps\x18\x06 \x01(\rB\x10\n\x0e\x66ill_mode_enum\"X\n\x15ReadBinaryU32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x12\n\nread_array\x18\x02 \x03(\r\x12\x1b\n\x13samps_per_chan_read\x18\x03 \x01(\x05\"\xe2\x01\n\x19\x42\x65ginReadBinaryU32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12*\n\tfill_mode\x18\x04 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x17\n\rfill_mode_raw\x18\x05 \x01(\x05H\x00\x12\x1b\n\x13\x61rray_size_in_samps\x18\x06 \x01(\rB\x10\n\x0e\x66ill_mode_enum\"X\n\x1a\x42\x65ginReadBinaryU32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"_\n\x1cMonikerReadBinaryU32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x12\n\nread_array\x18\x02 \x03(\r\x12\x1b\n\x13samps_per_chan_read\x18\x03 \x01(\x05\"\x87\x01\n\x15ReadCounterF64Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12\x1b\n\x13\x61rray_size_in_samps\x18\x04 \x01(\r\"Y\n\x16ReadCounterF64Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x12\n\nread_array\x18\x02 \x03(\x01\x12\x1b\n\x13samps_per_chan_read\x18\x03 \x01(\x05\"\x8c\x01\n\x1a\x42\x65ginReadCounterF64Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12\x1b\n\x13\x61rray_size_in_samps\x18\x04 \x01(\r\"Y\n\x1b\x42\x65ginReadCounterF64Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"`\n\x1dMonikerReadCounterF64Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x12\n\nread_array\x18\x02 \x03(\x01\x12\x1b\n\x13samps_per_chan_read\x18\x03 \x01(\x05\"\xe0\x01\n\x17ReadCounterF64ExRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12*\n\tfill_mode\x18\x04 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x17\n\rfill_mode_raw\x18\x05 \x01(\x05H\x00\x12\x1b\n\x13\x61rray_size_in_samps\x18\x06 \x01(\rB\x10\n\x0e\x66ill_mode_enum\"[\n\x18ReadCounterF64ExResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x12\n\nread_array\x18\x02 \x03(\x01\x12\x1b\n\x13samps_per_chan_read\x18\x03 \x01(\x05\"\xe5\x01\n\x1c\x42\x65ginReadCounterF64ExRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12*\n\tfill_mode\x18\x04 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x17\n\rfill_mode_raw\x18\x05 \x01(\x05H\x00\x12\x1b\n\x13\x61rray_size_in_samps\x18\x06 \x01(\rB\x10\n\x0e\x66ill_mode_enum\"[\n\x1d\x42\x65ginReadCounterF64ExResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"b\n\x1fMonikerReadCounterF64ExResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x12\n\nread_array\x18\x02 \x03(\x01\x12\x1b\n\x13samps_per_chan_read\x18\x03 \x01(\x05\"T\n\x1bReadCounterScalarF64Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07timeout\x18\x02 \x01(\x01\"=\n\x1cReadCounterScalarF64Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x01\"Y\n BeginReadCounterScalarF64Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07timeout\x18\x02 \x01(\x01\"_\n!BeginReadCounterScalarF64Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"D\n#MonikerReadCounterScalarF64Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x01\"T\n\x1bReadCounterScalarU32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07timeout\x18\x02 \x01(\x01\"=\n\x1cReadCounterScalarU32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\r\"Y\n BeginReadCounterScalarU32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07timeout\x18\x02 \x01(\x01\"_\n!BeginReadCounterScalarU32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"D\n#MonikerReadCounterScalarU32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\r\"\x87\x01\n\x15ReadCounterU32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12\x1b\n\x13\x61rray_size_in_samps\x18\x04 \x01(\r\"Y\n\x16ReadCounterU32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x12\n\nread_array\x18\x02 \x03(\r\x12\x1b\n\x13samps_per_chan_read\x18\x03 \x01(\x05\"\x8c\x01\n\x1a\x42\x65ginReadCounterU32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12\x1b\n\x13\x61rray_size_in_samps\x18\x04 \x01(\r\"Y\n\x1b\x42\x65ginReadCounterU32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"`\n\x1dMonikerReadCounterU32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x12\n\nread_array\x18\x02 \x03(\r\x12\x1b\n\x13samps_per_chan_read\x18\x03 \x01(\x05\"\xe0\x01\n\x17ReadCounterU32ExRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12*\n\tfill_mode\x18\x04 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x17\n\rfill_mode_raw\x18\x05 \x01(\x05H\x00\x12\x1b\n\x13\x61rray_size_in_samps\x18\x06 \x01(\rB\x10\n\x0e\x66ill_mode_enum\"[\n\x18ReadCounterU32ExResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x12\n\nread_array\x18\x02 \x03(\r\x12\x1b\n\x13samps_per_chan_read\x18\x03 \x01(\x05\"\xe5\x01\n\x1c\x42\x65ginReadCounterU32ExRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12*\n\tfill_mode\x18\x04 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x17\n\rfill_mode_raw\x18\x05 \x01(\x05H\x00\x12\x1b\n\x13\x61rray_size_in_samps\x18\x06 \x01(\rB\x10\n\x0e\x66ill_mode_enum\"[\n\x1d\x42\x65ginReadCounterU32ExResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"b\n\x1fMonikerReadCounterU32ExResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x12\n\nread_array\x18\x02 \x03(\r\x12\x1b\n\x13samps_per_chan_read\x18\x03 \x01(\x05\"\xe1\x01\n\x12ReadCtrFreqRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12,\n\x0binterleaved\x18\x04 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x19\n\x0finterleaved_raw\x18\x05 \x01(\x05H\x00\x12\x1b\n\x13\x61rray_size_in_samps\x18\x06 \x01(\rB\x12\n\x10interleaved_enum\"\x7f\n\x13ReadCtrFreqResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x1c\n\x14read_array_frequency\x18\x02 \x03(\x01\x12\x1d\n\x15read_array_duty_cycle\x18\x03 \x03(\x01\x12\x1b\n\x13samps_per_chan_read\x18\x04 \x01(\x05\"\xe6\x01\n\x17\x42\x65ginReadCtrFreqRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12,\n\x0binterleaved\x18\x04 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x19\n\x0finterleaved_raw\x18\x05 \x01(\x05H\x00\x12\x1b\n\x13\x61rray_size_in_samps\x18\x06 \x01(\rB\x12\n\x10interleaved_enum\"V\n\x18\x42\x65ginReadCtrFreqResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"\x86\x01\n\x1aMonikerReadCtrFreqResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x1c\n\x14read_array_frequency\x18\x02 \x03(\x01\x12\x1d\n\x15read_array_duty_cycle\x18\x03 \x03(\x01\x12\x1b\n\x13samps_per_chan_read\x18\x04 \x01(\x05\"Q\n\x18ReadCtrFreqScalarRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07timeout\x18\x02 \x01(\x01\"R\n\x19ReadCtrFreqScalarResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x11\n\tfrequency\x18\x02 \x01(\x01\x12\x12\n\nduty_cycle\x18\x03 \x01(\x01\"V\n\x1d\x42\x65ginReadCtrFreqScalarRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07timeout\x18\x02 \x01(\x01\"\\\n\x1e\x42\x65ginReadCtrFreqScalarResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"Y\n MonikerReadCtrFreqScalarResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x11\n\tfrequency\x18\x02 \x01(\x01\x12\x12\n\nduty_cycle\x18\x03 \x01(\x01\"\xe2\x01\n\x13ReadCtrTicksRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12,\n\x0binterleaved\x18\x04 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x19\n\x0finterleaved_raw\x18\x05 \x01(\x05H\x00\x12\x1b\n\x13\x61rray_size_in_samps\x18\x06 \x01(\rB\x12\n\x10interleaved_enum\"\x80\x01\n\x14ReadCtrTicksResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x1d\n\x15read_array_high_ticks\x18\x02 \x03(\r\x12\x1c\n\x14read_array_low_ticks\x18\x03 \x03(\r\x12\x1b\n\x13samps_per_chan_read\x18\x04 \x01(\x05\"\xe7\x01\n\x18\x42\x65ginReadCtrTicksRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12,\n\x0binterleaved\x18\x04 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x19\n\x0finterleaved_raw\x18\x05 \x01(\x05H\x00\x12\x1b\n\x13\x61rray_size_in_samps\x18\x06 \x01(\rB\x12\n\x10interleaved_enum\"W\n\x19\x42\x65ginReadCtrTicksResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"\x87\x01\n\x1bMonikerReadCtrTicksResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x1d\n\x15read_array_high_ticks\x18\x02 \x03(\r\x12\x1c\n\x14read_array_low_ticks\x18\x03 \x03(\r\x12\x1b\n\x13samps_per_chan_read\x18\x04 \x01(\x05\"R\n\x19ReadCtrTicksScalarRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07timeout\x18\x02 \x01(\x01\"S\n\x1aReadCtrTicksScalarResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x12\n\nhigh_ticks\x18\x02 \x01(\r\x12\x11\n\tlow_ticks\x18\x03 \x01(\r\"W\n\x1e\x42\x65ginReadCtrTicksScalarRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07timeout\x18\x02 \x01(\x01\"]\n\x1f\x42\x65ginReadCtrTicksScalarResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"Z\n!MonikerReadCtrTicksScalarResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x12\n\nhigh_ticks\x18\x02 \x01(\r\x12\x11\n\tlow_ticks\x18\x03 \x01(\r\"\xe1\x01\n\x12ReadCtrTimeRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12,\n\x0binterleaved\x18\x04 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x19\n\x0finterleaved_raw\x18\x05 \x01(\x05H\x00\x12\x1b\n\x13\x61rray_size_in_samps\x18\x06 \x01(\rB\x12\n\x10interleaved_enum\"}\n\x13ReadCtrTimeResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x1c\n\x14read_array_high_time\x18\x02 \x03(\x01\x12\x1b\n\x13read_array_low_time\x18\x03 \x03(\x01\x12\x1b\n\x13samps_per_chan_read\x18\x04 \x01(\x05\"\xe6\x01\n\x17\x42\x65ginReadCtrTimeRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12,\n\x0binterleaved\x18\x04 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x19\n\x0finterleaved_raw\x18\x05 \x01(\x05H\x00\x12\x1b\n\x13\x61rray_size_in_samps\x18\x06 \x01(\rB\x12\n\x10interleaved_enum\"V\n\x18\x42\x65ginReadCtrTimeResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"\x84\x01\n\x1aMonikerReadCtrTimeResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x1c\n\x14read_array_high_time\x18\x02 \x03(\x01\x12\x1b\n\x13read_array_low_time\x18\x03 \x03(\x01\x12\x1b\n\x13samps_per_chan_read\x18\x04 \x01(\x05\"Q\n\x18ReadCtrTimeScalarRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07timeout\x18\x02 \x01(\x01\"P\n\x19ReadCtrTimeScalarResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x11\n\thigh_time\x18\x02 \x01(\x01\x12\x10\n\x08low_time\x18\x03 \x01(\x01\"V\n\x1d\x42\x65ginReadCtrTimeScalarRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07timeout\x18\x02 \x01(\x01\"\\\n\x1e\x42\x65ginReadCtrTimeScalarResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"W\n MonikerReadCtrTimeScalarResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x11\n\thigh_time\x18\x02 \x01(\x01\x12\x10\n\x08low_time\x18\x03 \x01(\x01\"\xe0\x01\n\x17ReadDigitalLinesRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12*\n\tfill_mode\x18\x04 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x17\n\rfill_mode_raw\x18\x05 \x01(\x05H\x00\x12\x1b\n\x13\x61rray_size_in_bytes\x18\x06 \x01(\rB\x10\n\x0e\x66ill_mode_enum\"w\n\x18ReadDigitalLinesResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x12\n\nread_array\x18\x02 \x01(\x0c\x12\x1b\n\x13samps_per_chan_read\x18\x03 \x01(\x05\x12\x1a\n\x12num_bytes_per_samp\x18\x04 \x01(\x05\"\xe5\x01\n\x1c\x42\x65ginReadDigitalLinesRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12*\n\tfill_mode\x18\x04 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x17\n\rfill_mode_raw\x18\x05 \x01(\x05H\x00\x12\x1b\n\x13\x61rray_size_in_bytes\x18\x06 \x01(\rB\x10\n\x0e\x66ill_mode_enum\"w\n\x1d\x42\x65ginReadDigitalLinesResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x1a\n\x12num_bytes_per_samp\x18\x02 \x01(\x05\x12*\n\x07moniker\x18\x03 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"~\n\x1fMonikerReadDigitalLinesResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x12\n\nread_array\x18\x02 \x01(\x0c\x12\x1b\n\x13samps_per_chan_read\x18\x03 \x01(\x05\x12\x1a\n\x12num_bytes_per_samp\x18\x04 \x01(\x05\"T\n\x1bReadDigitalScalarU32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07timeout\x18\x02 \x01(\x01\"=\n\x1cReadDigitalScalarU32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\r\"Y\n BeginReadDigitalScalarU32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07timeout\x18\x02 \x01(\x01\"_\n!BeginReadDigitalScalarU32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"D\n#MonikerReadDigitalScalarU32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\r\"\xde\x01\n\x15ReadDigitalU16Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12*\n\tfill_mode\x18\x04 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x17\n\rfill_mode_raw\x18\x05 \x01(\x05H\x00\x12\x1b\n\x13\x61rray_size_in_samps\x18\x06 \x01(\rB\x10\n\x0e\x66ill_mode_enum\"Y\n\x16ReadDigitalU16Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x12\n\nread_array\x18\x02 \x03(\r\x12\x1b\n\x13samps_per_chan_read\x18\x03 \x01(\x05\"\xe3\x01\n\x1a\x42\x65ginReadDigitalU16Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12*\n\tfill_mode\x18\x04 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x17\n\rfill_mode_raw\x18\x05 \x01(\x05H\x00\x12\x1b\n\x13\x61rray_size_in_samps\x18\x06 \x01(\rB\x10\n\x0e\x66ill_mode_enum\"Y\n\x1b\x42\x65ginReadDigitalU16Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"`\n\x1dMonikerReadDigitalU16Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x12\n\nread_array\x18\x02 \x03(\r\x12\x1b\n\x13samps_per_chan_read\x18\x03 \x01(\x05\"\xde\x01\n\x15ReadDigitalU32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12*\n\tfill_mode\x18\x04 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x17\n\rfill_mode_raw\x18\x05 \x01(\x05H\x00\x12\x1b\n\x13\x61rray_size_in_samps\x18\x06 \x01(\rB\x10\n\x0e\x66ill_mode_enum\"Y\n\x16ReadDigitalU32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x12\n\nread_array\x18\x02 \x03(\r\x12\x1b\n\x13samps_per_chan_read\x18\x03 \x01(\x05\"\xe3\x01\n\x1a\x42\x65ginReadDigitalU32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12*\n\tfill_mode\x18\x04 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x17\n\rfill_mode_raw\x18\x05 \x01(\x05H\x00\x12\x1b\n\x13\x61rray_size_in_samps\x18\x06 \x01(\rB\x10\n\x0e\x66ill_mode_enum\"Y\n\x1b\x42\x65ginReadDigitalU32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"`\n\x1dMonikerReadDigitalU32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x12\n\nread_array\x18\x02 \x03(\r\x12\x1b\n\x13samps_per_chan_read\x18\x03 \x01(\x05\"\xdd\x01\n\x14ReadDigitalU8Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12*\n\tfill_mode\x18\x04 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x17\n\rfill_mode_raw\x18\x05 \x01(\x05H\x00\x12\x1b\n\x13\x61rray_size_in_samps\x18\x06 \x01(\rB\x10\n\x0e\x66ill_mode_enum\"X\n\x15ReadDigitalU8Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x12\n\nread_array\x18\x02 \x01(\x0c\x12\x1b\n\x13samps_per_chan_read\x18\x03 \x01(\x05\"\xe2\x01\n\x19\x42\x65ginReadDigitalU8Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12*\n\tfill_mode\x18\x04 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x17\n\rfill_mode_raw\x18\x05 \x01(\x05H\x00\x12\x1b\n\x13\x61rray_size_in_samps\x18\x06 \x01(\rB\x10\n\x0e\x66ill_mode_enum\"X\n\x1a\x42\x65ginReadDigitalU8Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"_\n\x1cMonikerReadDigitalU8Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x12\n\nread_array\x18\x02 \x01(\x0c\x12\x1b\n\x13samps_per_chan_read\x18\x03 \x01(\x05\"V\n\x16ReadIDPinMemoryRequest\x12\x13\n\x0b\x64\x65vice_name\x18\x01 \x01(\t\x12\x13\n\x0bid_pin_name\x18\x02 \x01(\t\x12\x12\n\narray_size\x18\x03 \x01(\r\"f\n\x17ReadIDPinMemoryResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x0c\n\x04\x64\x61ta\x18\x02 \x01(\x0c\x12\x18\n\x10\x64\x61ta_length_read\x18\x03 \x01(\r\x12\x13\n\x0b\x66ormat_code\x18\x04 \x01(\r\"\xe2\x01\n\x19ReadPowerBinaryI16Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12*\n\tfill_mode\x18\x04 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x17\n\rfill_mode_raw\x18\x05 \x01(\x05H\x00\x12\x1b\n\x13\x61rray_size_in_samps\x18\x06 \x01(\rB\x10\n\x0e\x66ill_mode_enum\"\x81\x01\n\x1aReadPowerBinaryI16Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x1a\n\x12read_array_voltage\x18\x02 \x03(\x05\x12\x1a\n\x12read_array_current\x18\x03 \x03(\x05\x12\x1b\n\x13samps_per_chan_read\x18\x04 \x01(\x05\"\xe7\x01\n\x1e\x42\x65ginReadPowerBinaryI16Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12*\n\tfill_mode\x18\x04 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x17\n\rfill_mode_raw\x18\x05 \x01(\x05H\x00\x12\x1b\n\x13\x61rray_size_in_samps\x18\x06 \x01(\rB\x10\n\x0e\x66ill_mode_enum\"]\n\x1f\x42\x65ginReadPowerBinaryI16Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"\x88\x01\n!MonikerReadPowerBinaryI16Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x1a\n\x12read_array_voltage\x18\x02 \x03(\x05\x12\x1a\n\x12read_array_current\x18\x03 \x03(\x05\x12\x1b\n\x13samps_per_chan_read\x18\x04 \x01(\x05\"\xdc\x01\n\x13ReadPowerF64Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12*\n\tfill_mode\x18\x04 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x17\n\rfill_mode_raw\x18\x05 \x01(\x05H\x00\x12\x1b\n\x13\x61rray_size_in_samps\x18\x06 \x01(\rB\x10\n\x0e\x66ill_mode_enum\"{\n\x14ReadPowerF64Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x1a\n\x12read_array_voltage\x18\x02 \x03(\x01\x12\x1a\n\x12read_array_current\x18\x03 \x03(\x01\x12\x1b\n\x13samps_per_chan_read\x18\x04 \x01(\x05\"\xe1\x01\n\x18\x42\x65ginReadPowerF64Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12*\n\tfill_mode\x18\x04 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x17\n\rfill_mode_raw\x18\x05 \x01(\x05H\x00\x12\x1b\n\x13\x61rray_size_in_samps\x18\x06 \x01(\rB\x10\n\x0e\x66ill_mode_enum\"W\n\x19\x42\x65ginReadPowerF64Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"\x82\x01\n\x1bMonikerReadPowerF64Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x1a\n\x12read_array_voltage\x18\x02 \x03(\x01\x12\x1a\n\x12read_array_current\x18\x03 \x03(\x01\x12\x1b\n\x13samps_per_chan_read\x18\x04 \x01(\x05\"R\n\x19ReadPowerScalarF64Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07timeout\x18\x02 \x01(\x01\"N\n\x1aReadPowerScalarF64Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x0f\n\x07voltage\x18\x02 \x01(\x01\x12\x0f\n\x07\x63urrent\x18\x03 \x01(\x01\"W\n\x1e\x42\x65ginReadPowerScalarF64Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07timeout\x18\x02 \x01(\x01\"]\n\x1f\x42\x65ginReadPowerScalarF64Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"U\n!MonikerReadPowerScalarF64Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x0f\n\x07voltage\x18\x02 \x01(\x01\x12\x0f\n\x07\x63urrent\x18\x03 \x01(\x01\"\x80\x01\n\x0eReadRawRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12\x1b\n\x13\x61rray_size_in_bytes\x18\x04 \x01(\r\"e\n\x0fReadRawResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x12\n\nread_array\x18\x02 \x01(\x0c\x12\x12\n\nsamps_read\x18\x03 \x01(\x05\x12\x1a\n\x12num_bytes_per_samp\x18\x04 \x01(\x05\"\x85\x01\n\x13\x42\x65ginReadRawRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12\x1b\n\x13\x61rray_size_in_bytes\x18\x04 \x01(\r\"R\n\x14\x42\x65ginReadRawResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"l\n\x16MonikerReadRawResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x12\n\nread_array\x18\x02 \x01(\x0c\x12\x12\n\nsamps_read\x18\x03 \x01(\x05\x12\x1a\n\x12num_bytes_per_samp\x18\x04 \x01(\x05\"@\n\x18RegisterDoneEventRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\"+\n\x19RegisterDoneEventResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xf5\x01\n!RegisterEveryNSamplesEventRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12J\n\x1a\x65very_n_samples_event_type\x18\x02 \x01(\x0e\x32$.nidaqmx_grpc.EveryNSamplesEventTypeH\x00\x12(\n\x1e\x65very_n_samples_event_type_raw\x18\x03 \x01(\x05H\x00\x12\x11\n\tn_samples\x18\x04 \x01(\rB!\n\x1f\x65very_n_samples_event_type_enum\"\xb9\x01\n\"RegisterEveryNSamplesEventResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12H\n\x1a\x65very_n_samples_event_type\x18\x02 \x01(\x0e\x32$.nidaqmx_grpc.EveryNSamplesEventType\x12&\n\x1e\x65very_n_samples_event_type_raw\x18\x03 \x01(\x05\x12\x11\n\tn_samples\x18\x04 \x01(\r\"\x99\x01\n\x1aRegisterSignalEventRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12*\n\tsignal_id\x18\x02 \x01(\x0e\x32\x15.nidaqmx_grpc.Signal2H\x00\x12\x17\n\rsignal_id_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0esignal_id_enum\"@\n\x1bRegisterSignalEventResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x11\n\tsignal_id\x18\x02 \x01(\x05\"4\n\x1fRemoveCDAQSyncConnectionRequest\x12\x11\n\tport_list\x18\x01 \x01(\t\"2\n RemoveCDAQSyncConnectionResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"P\n\x1bReserveNetworkDeviceRequest\x12\x13\n\x0b\x64\x65vice_name\x18\x01 \x01(\t\x12\x1c\n\x14override_reservation\x18\x02 \x01(\x08\".\n\x1cReserveNetworkDeviceResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xa7\x01\n\x1bResetBufferAttributeRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x37\n\tattribute\x18\x02 \x01(\x0e\x32\".nidaqmx_grpc.BufferResetAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\".\n\x1cResetBufferAttributeResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xb7\x01\n\x19ResetChanAttributeRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07\x63hannel\x18\x02 \x01(\t\x12\x38\n\tattribute\x18\x03 \x01(\x0e\x32#.nidaqmx_grpc.ChannelResetAttributeH\x00\x12\x17\n\rattribute_raw\x18\x04 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\",\n\x1aResetChanAttributeResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\")\n\x12ResetDeviceRequest\x12\x13\n\x0b\x64\x65vice_name\x18\x01 \x01(\t\"%\n\x13ResetDeviceResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xb5\x01\n#ResetExportedSignalAttributeRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12=\n\tattribute\x18\x02 \x01(\x0e\x32(.nidaqmx_grpc.ExportSignalResetAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"6\n$ResetExportedSignalAttributeResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xa3\x01\n\x19ResetReadAttributeRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x35\n\tattribute\x18\x02 \x01(\x0e\x32 .nidaqmx_grpc.ReadResetAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\",\n\x1aResetReadAttributeResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xab\x01\n\x1dResetRealTimeAttributeRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x39\n\tattribute\x18\x02 \x01(\x0e\x32$.nidaqmx_grpc.RealTimeResetAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"0\n\x1eResetRealTimeAttributeResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xa7\x01\n\x1bResetTimingAttributeRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x37\n\tattribute\x18\x02 \x01(\x0e\x32\".nidaqmx_grpc.TimingResetAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\".\n\x1cResetTimingAttributeResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xbf\x01\n\x1dResetTimingAttributeExRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x14\n\x0c\x64\x65vice_names\x18\x02 \x01(\t\x12\x37\n\tattribute\x18\x03 \x01(\x0e\x32\".nidaqmx_grpc.TimingResetAttributeH\x00\x12\x17\n\rattribute_raw\x18\x04 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"0\n\x1eResetTimingAttributeExResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xa6\x01\n\x19ResetTrigAttributeRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x38\n\tattribute\x18\x02 \x01(\x0e\x32#.nidaqmx_grpc.TriggerResetAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\",\n\x1aResetTrigAttributeResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xba\x01\n\x1dResetWatchdogAttributeRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\r\n\x05lines\x18\x02 \x01(\t\x12\x39\n\tattribute\x18\x03 \x01(\x0e\x32$.nidaqmx_grpc.WatchdogResetAttributeH\x00\x12\x17\n\rattribute_raw\x18\x04 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"0\n\x1eResetWatchdogAttributeResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xa5\x01\n\x1aResetWriteAttributeRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x36\n\tattribute\x18\x02 \x01(\x0e\x32!.nidaqmx_grpc.WriteResetAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"-\n\x1bResetWriteAttributeResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"4\n\x1dRestoreLastExtCalConstRequest\x12\x13\n\x0b\x64\x65vice_name\x18\x01 \x01(\t\"0\n\x1eRestoreLastExtCalConstResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xc9\x01\n\x15SaveGlobalChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x14\n\x0c\x63hannel_name\x18\x02 \x01(\t\x12\x0f\n\x07save_as\x18\x03 \x01(\t\x12\x0e\n\x06\x61uthor\x18\x04 \x01(\t\x12,\n\x07options\x18\x05 \x01(\x0e\x32\x19.nidaqmx_grpc.SaveOptionsH\x00\x12\x15\n\x0boptions_raw\x18\x06 \x01(\rH\x00\x42\x0e\n\x0coptions_enum\"(\n\x16SaveGlobalChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x9c\x01\n\x10SaveScaleRequest\x12\x12\n\nscale_name\x18\x01 \x01(\t\x12\x0f\n\x07save_as\x18\x02 \x01(\t\x12\x0e\n\x06\x61uthor\x18\x03 \x01(\t\x12,\n\x07options\x18\x04 \x01(\x0e\x32\x19.nidaqmx_grpc.SaveOptionsH\x00\x12\x15\n\x0boptions_raw\x18\x05 \x01(\rH\x00\x42\x0e\n\x0coptions_enum\"#\n\x11SaveScaleResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xad\x01\n\x0fSaveTaskRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07save_as\x18\x02 \x01(\t\x12\x0e\n\x06\x61uthor\x18\x03 \x01(\t\x12,\n\x07options\x18\x04 \x01(\x0e\x32\x19.nidaqmx_grpc.SaveOptionsH\x00\x12\x15\n\x0boptions_raw\x18\x05 \x01(\rH\x00\x42\x0e\n\x0coptions_enum\"\"\n\x10SaveTaskResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"%\n\x0eSelfCalRequest\x12\x13\n\x0b\x64\x65vice_name\x18\x01 \x01(\t\"!\n\x0fSelfCalResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\",\n\x15SelfTestDeviceRequest\x12\x13\n\x0b\x64\x65vice_name\x18\x01 \x01(\t\"(\n\x16SelfTestDeviceResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xa0\x01\n\x1aSetAIChanCalCalDateRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x14\n\x0c\x63hannel_name\x18\x02 \x01(\t\x12\x0c\n\x04year\x18\x03 \x01(\r\x12\r\n\x05month\x18\x04 \x01(\r\x12\x0b\n\x03\x64\x61y\x18\x05 \x01(\r\x12\x0c\n\x04hour\x18\x06 \x01(\r\x12\x0e\n\x06minute\x18\x07 \x01(\r\"-\n\x1bSetAIChanCalCalDateResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xa0\x01\n\x1aSetAIChanCalExpDateRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x14\n\x0c\x63hannel_name\x18\x02 \x01(\t\x12\x0c\n\x04year\x18\x03 \x01(\r\x12\r\n\x05month\x18\x04 \x01(\r\x12\x0b\n\x03\x64\x61y\x18\x05 \x01(\r\x12\x0c\n\x04hour\x18\x06 \x01(\r\x12\x0e\n\x06minute\x18\x07 \x01(\r\"-\n\x1bSetAIChanCalExpDateResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"z\n\x1dSetAnalogPowerUpStatesRequest\x12\x13\n\x0b\x64\x65vice_name\x18\x01 \x01(\t\x12\x44\n\x0fpower_up_states\x18\x02 \x03(\x0b\x32+.nidaqmx_grpc.AnalogPowerUpChannelsAndState\"0\n\x1eSetAnalogPowerUpStatesResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x97\x01\n+SetAnalogPowerUpStatesWithOutputTypeRequest\x12\x15\n\rchannel_names\x18\x01 \x01(\t\x12\x13\n\x0bstate_array\x18\x02 \x03(\x01\x12<\n\x12\x63hannel_type_array\x18\x03 \x03(\x0e\x32 .nidaqmx_grpc.PowerUpChannelType\">\n,SetAnalogPowerUpStatesWithOutputTypeResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"p\n\x1eSetArmStartTrigTrigWhenRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"1\n\x1fSetArmStartTrigTrigWhenResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xbb\x01\n\x1fSetBufferAttributeUInt32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x38\n\tattribute\x18\x02 \x01(\x0e\x32#.nidaqmx_grpc.BufferUInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\r\n\x05value\x18\x04 \x01(\rB\x10\n\x0e\x61ttribute_enum\"2\n SetBufferAttributeUInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xb0\x01\n\x1eSetCalInfoAttributeBoolRequest\x12\x13\n\x0b\x64\x65vice_name\x18\x01 \x01(\t\x12?\n\tattribute\x18\x02 \x01(\x0e\x32*.nidaqmx_grpc.CalibrationInfoBoolAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\r\n\x05value\x18\x04 \x01(\x08\x42\x10\n\x0e\x61ttribute_enum\"1\n\x1fSetCalInfoAttributeBoolResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xb4\x01\n SetCalInfoAttributeDoubleRequest\x12\x13\n\x0b\x64\x65vice_name\x18\x01 \x01(\t\x12\x41\n\tattribute\x18\x02 \x01(\x0e\x32,.nidaqmx_grpc.CalibrationInfoDoubleAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\r\n\x05value\x18\x04 \x01(\x01\x42\x10\n\x0e\x61ttribute_enum\"3\n!SetCalInfoAttributeDoubleResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xb4\x01\n SetCalInfoAttributeStringRequest\x12\x13\n\x0b\x64\x65vice_name\x18\x01 \x01(\t\x12\x41\n\tattribute\x18\x02 \x01(\x0e\x32,.nidaqmx_grpc.CalibrationInfoStringAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\r\n\x05value\x18\x04 \x01(\tB\x10\n\x0e\x61ttribute_enum\"3\n!SetCalInfoAttributeStringResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xb4\x01\n SetCalInfoAttributeUInt32Request\x12\x13\n\x0b\x64\x65vice_name\x18\x01 \x01(\t\x12\x41\n\tattribute\x18\x02 \x01(\x0e\x32,.nidaqmx_grpc.CalibrationInfoUInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\r\n\x05value\x18\x04 \x01(\rB\x10\n\x0e\x61ttribute_enum\"3\n!SetCalInfoAttributeUInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xc7\x01\n\x1bSetChanAttributeBoolRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07\x63hannel\x18\x02 \x01(\t\x12\x37\n\tattribute\x18\x03 \x01(\x0e\x32\".nidaqmx_grpc.ChannelBoolAttributeH\x00\x12\x17\n\rattribute_raw\x18\x04 \x01(\x05H\x00\x12\r\n\x05value\x18\x05 \x01(\x08\x42\x10\n\x0e\x61ttribute_enum\".\n\x1cSetChanAttributeBoolResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xcb\x01\n\x1dSetChanAttributeDoubleRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07\x63hannel\x18\x02 \x01(\t\x12\x39\n\tattribute\x18\x03 \x01(\x0e\x32$.nidaqmx_grpc.ChannelDoubleAttributeH\x00\x12\x17\n\rattribute_raw\x18\x04 \x01(\x05H\x00\x12\r\n\x05value\x18\x05 \x01(\x01\x42\x10\n\x0e\x61ttribute_enum\"0\n\x1eSetChanAttributeDoubleResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xd5\x01\n\"SetChanAttributeDoubleArrayRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07\x63hannel\x18\x02 \x01(\t\x12>\n\tattribute\x18\x03 \x01(\x0e\x32).nidaqmx_grpc.ChannelDoubleArrayAttributeH\x00\x12\x17\n\rattribute_raw\x18\x04 \x01(\x05H\x00\x12\r\n\x05value\x18\x05 \x03(\x01\x42\x10\n\x0e\x61ttribute_enum\"5\n#SetChanAttributeDoubleArrayResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x99\x02\n\x1cSetChanAttributeInt32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07\x63hannel\x18\x02 \x01(\t\x12\x38\n\tattribute\x18\x03 \x01(\x0e\x32#.nidaqmx_grpc.ChannelInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x04 \x01(\x05H\x00\x12:\n\x05value\x18\x05 \x01(\x0e\x32).nidaqmx_grpc.ChannelInt32AttributeValuesH\x01\x12\x13\n\tvalue_raw\x18\x06 \x01(\x05H\x01\x42\x10\n\x0e\x61ttribute_enumB\x0c\n\nvalue_enum\"/\n\x1dSetChanAttributeInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xcb\x01\n\x1dSetChanAttributeStringRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07\x63hannel\x18\x02 \x01(\t\x12\x39\n\tattribute\x18\x03 \x01(\x0e\x32$.nidaqmx_grpc.ChannelStringAttributeH\x00\x12\x17\n\rattribute_raw\x18\x04 \x01(\x05H\x00\x12\r\n\x05value\x18\x05 \x01(\tB\x10\n\x0e\x61ttribute_enum\"0\n\x1eSetChanAttributeStringResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xcb\x01\n\x1dSetChanAttributeUInt32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07\x63hannel\x18\x02 \x01(\t\x12\x39\n\tattribute\x18\x03 \x01(\x0e\x32$.nidaqmx_grpc.ChannelUInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x04 \x01(\x05H\x00\x12\r\n\x05value\x18\x05 \x01(\rB\x10\n\x0e\x61ttribute_enum\"0\n\x1eSetChanAttributeUInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xa3\x01\n(SetDigitalLogicFamilyPowerUpStateRequest\x12\x13\n\x0b\x64\x65vice_name\x18\x01 \x01(\t\x12\x31\n\x0clogic_family\x18\x02 \x01(\x0e\x32\x19.nidaqmx_grpc.LogicFamilyH\x00\x12\x1a\n\x10logic_family_raw\x18\x03 \x01(\x05H\x00\x42\x13\n\x11logic_family_enum\";\n)SetDigitalLogicFamilyPowerUpStateResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"|\n\x1eSetDigitalPowerUpStatesRequest\x12\x13\n\x0b\x64\x65vice_name\x18\x01 \x01(\t\x12\x45\n\x0fpower_up_states\x18\x02 \x03(\x0b\x32,.nidaqmx_grpc.DigitalPowerUpChannelsAndState\"1\n\x1fSetDigitalPowerUpStatesResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x93\x01\n%SetDigitalPullUpPullDownStatesRequest\x12\x13\n\x0b\x64\x65vice_name\x18\x01 \x01(\t\x12U\n\x18pull_up_pull_down_states\x18\x02 \x03(\x0b\x32\x33.nidaqmx_grpc.DigitalPullUpPullDownChannelsAndState\"8\n&SetDigitalPullUpPullDownStatesResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xc5\x01\n%SetExportedSignalAttributeBoolRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12<\n\tattribute\x18\x02 \x01(\x0e\x32\'.nidaqmx_grpc.ExportSignalBoolAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\r\n\x05value\x18\x04 \x01(\x08\x42\x10\n\x0e\x61ttribute_enum\"8\n&SetExportedSignalAttributeBoolResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xc9\x01\n\'SetExportedSignalAttributeDoubleRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12>\n\tattribute\x18\x02 \x01(\x0e\x32).nidaqmx_grpc.ExportSignalDoubleAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\r\n\x05value\x18\x04 \x01(\x01\x42\x10\n\x0e\x61ttribute_enum\":\n(SetExportedSignalAttributeDoubleResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x9c\x02\n&SetExportedSignalAttributeInt32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12=\n\tattribute\x18\x02 \x01(\x0e\x32(.nidaqmx_grpc.ExportSignalInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12?\n\x05value\x18\x04 \x01(\x0e\x32..nidaqmx_grpc.ExportSignalInt32AttributeValuesH\x01\x12\x13\n\tvalue_raw\x18\x05 \x01(\x05H\x01\x42\x10\n\x0e\x61ttribute_enumB\x0c\n\nvalue_enum\"9\n\'SetExportedSignalAttributeInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xc9\x01\n\'SetExportedSignalAttributeStringRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12>\n\tattribute\x18\x02 \x01(\x0e\x32).nidaqmx_grpc.ExportSignalStringAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\r\n\x05value\x18\x04 \x01(\tB\x10\n\x0e\x61ttribute_enum\":\n(SetExportedSignalAttributeStringResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xc9\x01\n\'SetExportedSignalAttributeUInt32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12>\n\tattribute\x18\x02 \x01(\x0e\x32).nidaqmx_grpc.ExportSignalUInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\r\n\x05value\x18\x04 \x01(\rB\x10\n\x0e\x61ttribute_enum\":\n(SetExportedSignalAttributeUInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\"l\n\x1aSetFirstSampClkWhenRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"-\n\x1bSetFirstSampClkWhenResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xb3\x01\n\x1bSetReadAttributeBoolRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x34\n\tattribute\x18\x02 \x01(\x0e\x32\x1f.nidaqmx_grpc.ReadBoolAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\r\n\x05value\x18\x04 \x01(\x08\x42\x10\n\x0e\x61ttribute_enum\".\n\x1cSetReadAttributeBoolResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xb7\x01\n\x1dSetReadAttributeDoubleRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x36\n\tattribute\x18\x02 \x01(\x0e\x32!.nidaqmx_grpc.ReadDoubleAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\r\n\x05value\x18\x04 \x01(\x01\x42\x10\n\x0e\x61ttribute_enum\"0\n\x1eSetReadAttributeDoubleResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x82\x02\n\x1cSetReadAttributeInt32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x35\n\tattribute\x18\x02 \x01(\x0e\x32 .nidaqmx_grpc.ReadInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\x37\n\x05value\x18\x04 \x01(\x0e\x32&.nidaqmx_grpc.ReadInt32AttributeValuesH\x01\x12\x13\n\tvalue_raw\x18\x05 \x01(\x05H\x01\x42\x10\n\x0e\x61ttribute_enumB\x0c\n\nvalue_enum\"/\n\x1dSetReadAttributeInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xb7\x01\n\x1dSetReadAttributeStringRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x36\n\tattribute\x18\x02 \x01(\x0e\x32!.nidaqmx_grpc.ReadStringAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\r\n\x05value\x18\x04 \x01(\tB\x10\n\x0e\x61ttribute_enum\"0\n\x1eSetReadAttributeStringResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xb7\x01\n\x1dSetReadAttributeUInt32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x36\n\tattribute\x18\x02 \x01(\x0e\x32!.nidaqmx_grpc.ReadUInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\r\n\x05value\x18\x04 \x01(\rB\x10\n\x0e\x61ttribute_enum\"0\n\x1eSetReadAttributeUInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xb7\x01\n\x1dSetReadAttributeUInt64Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x36\n\tattribute\x18\x02 \x01(\x0e\x32!.nidaqmx_grpc.ReadUInt64AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\r\n\x05value\x18\x04 \x01(\x04\x42\x10\n\x0e\x61ttribute_enum\"0\n\x1eSetReadAttributeUInt64Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xbb\x01\n\x1fSetRealTimeAttributeBoolRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x38\n\tattribute\x18\x02 \x01(\x0e\x32#.nidaqmx_grpc.RealTimeBoolAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\r\n\x05value\x18\x04 \x01(\x08\x42\x10\n\x0e\x61ttribute_enum\"2\n SetRealTimeAttributeBoolResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x8e\x02\n SetRealTimeAttributeInt32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x39\n\tattribute\x18\x02 \x01(\x0e\x32$.nidaqmx_grpc.RealTimeInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12;\n\x05value\x18\x04 \x01(\x0e\x32*.nidaqmx_grpc.RealTimeInt32AttributeValuesH\x01\x12\x13\n\tvalue_raw\x18\x05 \x01(\x05H\x01\x42\x10\n\x0e\x61ttribute_enumB\x0c\n\nvalue_enum\"3\n!SetRealTimeAttributeInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xbf\x01\n!SetRealTimeAttributeUInt32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12:\n\tattribute\x18\x02 \x01(\x0e\x32%.nidaqmx_grpc.RealTimeUInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\r\n\x05value\x18\x04 \x01(\rB\x10\n\x0e\x61ttribute_enum\"4\n\"SetRealTimeAttributeUInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xa7\x01\n\x1eSetScaleAttributeDoubleRequest\x12\x12\n\nscale_name\x18\x01 \x01(\t\x12\x37\n\tattribute\x18\x02 \x01(\x0e\x32\".nidaqmx_grpc.ScaleDoubleAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\r\n\x05value\x18\x04 \x01(\x01\x42\x10\n\x0e\x61ttribute_enum\"1\n\x1fSetScaleAttributeDoubleResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xb1\x01\n#SetScaleAttributeDoubleArrayRequest\x12\x12\n\nscale_name\x18\x01 \x01(\t\x12<\n\tattribute\x18\x02 \x01(\x0e\x32\'.nidaqmx_grpc.ScaleDoubleArrayAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\r\n\x05value\x18\x04 \x03(\x01\x42\x10\n\x0e\x61ttribute_enum\"6\n$SetScaleAttributeDoubleArrayResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xf3\x01\n\x1dSetScaleAttributeInt32Request\x12\x12\n\nscale_name\x18\x01 \x01(\t\x12\x36\n\tattribute\x18\x02 \x01(\x0e\x32!.nidaqmx_grpc.ScaleInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\x38\n\x05value\x18\x04 \x01(\x0e\x32\'.nidaqmx_grpc.ScaleInt32AttributeValuesH\x01\x12\x13\n\tvalue_raw\x18\x05 \x01(\x05H\x01\x42\x10\n\x0e\x61ttribute_enumB\x0c\n\nvalue_enum\"0\n\x1eSetScaleAttributeInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xa7\x01\n\x1eSetScaleAttributeStringRequest\x12\x12\n\nscale_name\x18\x01 \x01(\t\x12\x37\n\tattribute\x18\x02 \x01(\x0e\x32\".nidaqmx_grpc.ScaleStringAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\r\n\x05value\x18\x04 \x01(\tB\x10\n\x0e\x61ttribute_enum\"1\n\x1fSetScaleAttributeStringResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"m\n\x1bSetStartTrigTrigWhenRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\".\n\x1cSetStartTrigTrigWhenResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"m\n\x1bSetSyncPulseTimeWhenRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\".\n\x1cSetSyncPulseTimeWhenResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xb7\x01\n\x1dSetTimingAttributeBoolRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x36\n\tattribute\x18\x02 \x01(\x0e\x32!.nidaqmx_grpc.TimingBoolAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\r\n\x05value\x18\x04 \x01(\x08\x42\x10\n\x0e\x61ttribute_enum\"0\n\x1eSetTimingAttributeBoolResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xbb\x01\n\x1fSetTimingAttributeDoubleRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x38\n\tattribute\x18\x02 \x01(\x0e\x32#.nidaqmx_grpc.TimingDoubleAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\r\n\x05value\x18\x04 \x01(\x01\x42\x10\n\x0e\x61ttribute_enum\"2\n SetTimingAttributeDoubleResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xcf\x01\n\x1fSetTimingAttributeExBoolRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x14\n\x0c\x64\x65vice_names\x18\x02 \x01(\t\x12\x36\n\tattribute\x18\x03 \x01(\x0e\x32!.nidaqmx_grpc.TimingBoolAttributeH\x00\x12\x17\n\rattribute_raw\x18\x04 \x01(\x05H\x00\x12\r\n\x05value\x18\x05 \x01(\x08\x42\x10\n\x0e\x61ttribute_enum\"2\n SetTimingAttributeExBoolResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xd3\x01\n!SetTimingAttributeExDoubleRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x14\n\x0c\x64\x65vice_names\x18\x02 \x01(\t\x12\x38\n\tattribute\x18\x03 \x01(\x0e\x32#.nidaqmx_grpc.TimingDoubleAttributeH\x00\x12\x17\n\rattribute_raw\x18\x04 \x01(\x05H\x00\x12\r\n\x05value\x18\x05 \x01(\x01\x42\x10\n\x0e\x61ttribute_enum\"4\n\"SetTimingAttributeExDoubleResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xa0\x02\n SetTimingAttributeExInt32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x14\n\x0c\x64\x65vice_names\x18\x02 \x01(\t\x12\x37\n\tattribute\x18\x03 \x01(\x0e\x32\".nidaqmx_grpc.TimingInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x04 \x01(\x05H\x00\x12\x39\n\x05value\x18\x05 \x01(\x0e\x32(.nidaqmx_grpc.TimingInt32AttributeValuesH\x01\x12\x13\n\tvalue_raw\x18\x06 \x01(\x05H\x01\x42\x10\n\x0e\x61ttribute_enumB\x0c\n\nvalue_enum\"3\n!SetTimingAttributeExInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xd3\x01\n!SetTimingAttributeExStringRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x14\n\x0c\x64\x65vice_names\x18\x02 \x01(\t\x12\x38\n\tattribute\x18\x03 \x01(\x0e\x32#.nidaqmx_grpc.TimingStringAttributeH\x00\x12\x17\n\rattribute_raw\x18\x04 \x01(\x05H\x00\x12\r\n\x05value\x18\x05 \x01(\tB\x10\n\x0e\x61ttribute_enum\"4\n\"SetTimingAttributeExStringResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xf5\x01\n$SetTimingAttributeExTimestampRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x14\n\x0c\x64\x65vice_names\x18\x02 \x01(\t\x12;\n\tattribute\x18\x03 \x01(\x0e\x32&.nidaqmx_grpc.TimingTimestampAttributeH\x00\x12\x17\n\rattribute_raw\x18\x04 \x01(\x05H\x00\x12)\n\x05value\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x10\n\x0e\x61ttribute_enum\"7\n%SetTimingAttributeExTimestampResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xd3\x01\n!SetTimingAttributeExUInt32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x14\n\x0c\x64\x65vice_names\x18\x02 \x01(\t\x12\x38\n\tattribute\x18\x03 \x01(\x0e\x32#.nidaqmx_grpc.TimingUInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x04 \x01(\x05H\x00\x12\r\n\x05value\x18\x05 \x01(\rB\x10\n\x0e\x61ttribute_enum\"4\n\"SetTimingAttributeExUInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xd3\x01\n!SetTimingAttributeExUInt64Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x14\n\x0c\x64\x65vice_names\x18\x02 \x01(\t\x12\x38\n\tattribute\x18\x03 \x01(\x0e\x32#.nidaqmx_grpc.TimingUInt64AttributeH\x00\x12\x17\n\rattribute_raw\x18\x04 \x01(\x05H\x00\x12\r\n\x05value\x18\x05 \x01(\x04\x42\x10\n\x0e\x61ttribute_enum\"4\n\"SetTimingAttributeExUInt64Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x88\x02\n\x1eSetTimingAttributeInt32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x37\n\tattribute\x18\x02 \x01(\x0e\x32\".nidaqmx_grpc.TimingInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\x39\n\x05value\x18\x04 \x01(\x0e\x32(.nidaqmx_grpc.TimingInt32AttributeValuesH\x01\x12\x13\n\tvalue_raw\x18\x05 \x01(\x05H\x01\x42\x10\n\x0e\x61ttribute_enumB\x0c\n\nvalue_enum\"1\n\x1fSetTimingAttributeInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xbb\x01\n\x1fSetTimingAttributeStringRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x38\n\tattribute\x18\x02 \x01(\x0e\x32#.nidaqmx_grpc.TimingStringAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\r\n\x05value\x18\x04 \x01(\tB\x10\n\x0e\x61ttribute_enum\"2\n SetTimingAttributeStringResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xdd\x01\n\"SetTimingAttributeTimestampRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12;\n\tattribute\x18\x02 \x01(\x0e\x32&.nidaqmx_grpc.TimingTimestampAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12)\n\x05value\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x10\n\x0e\x61ttribute_enum\"5\n#SetTimingAttributeTimestampResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xbb\x01\n\x1fSetTimingAttributeUInt32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x38\n\tattribute\x18\x02 \x01(\x0e\x32#.nidaqmx_grpc.TimingUInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\r\n\x05value\x18\x04 \x01(\rB\x10\n\x0e\x61ttribute_enum\"2\n SetTimingAttributeUInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xbb\x01\n\x1fSetTimingAttributeUInt64Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x38\n\tattribute\x18\x02 \x01(\x0e\x32#.nidaqmx_grpc.TimingUInt64AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\r\n\x05value\x18\x04 \x01(\x04\x42\x10\n\x0e\x61ttribute_enum\"2\n SetTimingAttributeUInt64Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xb6\x01\n\x1bSetTrigAttributeBoolRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x37\n\tattribute\x18\x02 \x01(\x0e\x32\".nidaqmx_grpc.TriggerBoolAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\r\n\x05value\x18\x04 \x01(\x08\x42\x10\n\x0e\x61ttribute_enum\".\n\x1cSetTrigAttributeBoolResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xba\x01\n\x1dSetTrigAttributeDoubleRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x39\n\tattribute\x18\x02 \x01(\x0e\x32$.nidaqmx_grpc.TriggerDoubleAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\r\n\x05value\x18\x04 \x01(\x01\x42\x10\n\x0e\x61ttribute_enum\"0\n\x1eSetTrigAttributeDoubleResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xc4\x01\n\"SetTrigAttributeDoubleArrayRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12>\n\tattribute\x18\x02 \x01(\x0e\x32).nidaqmx_grpc.TriggerDoubleArrayAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\r\n\x05value\x18\x04 \x03(\x01\x42\x10\n\x0e\x61ttribute_enum\"5\n#SetTrigAttributeDoubleArrayResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x88\x02\n\x1cSetTrigAttributeInt32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x38\n\tattribute\x18\x02 \x01(\x0e\x32#.nidaqmx_grpc.TriggerInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12:\n\x05value\x18\x04 \x01(\x0e\x32).nidaqmx_grpc.TriggerInt32AttributeValuesH\x01\x12\x13\n\tvalue_raw\x18\x05 \x01(\x05H\x01\x42\x10\n\x0e\x61ttribute_enumB\x0c\n\nvalue_enum\"/\n\x1dSetTrigAttributeInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xc2\x01\n!SetTrigAttributeInt32ArrayRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12=\n\tattribute\x18\x02 \x01(\x0e\x32(.nidaqmx_grpc.TriggerInt32ArrayAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\r\n\x05value\x18\x04 \x03(\x05\x42\x10\n\x0e\x61ttribute_enum\"4\n\"SetTrigAttributeInt32ArrayResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xba\x01\n\x1dSetTrigAttributeStringRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x39\n\tattribute\x18\x02 \x01(\x0e\x32$.nidaqmx_grpc.TriggerStringAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\r\n\x05value\x18\x04 \x01(\tB\x10\n\x0e\x61ttribute_enum\"0\n\x1eSetTrigAttributeStringResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xdc\x01\n SetTrigAttributeTimestampRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12<\n\tattribute\x18\x02 \x01(\x0e\x32\'.nidaqmx_grpc.TriggerTimestampAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12)\n\x05value\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x10\n\x0e\x61ttribute_enum\"3\n!SetTrigAttributeTimestampResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xba\x01\n\x1dSetTrigAttributeUInt32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x39\n\tattribute\x18\x02 \x01(\x0e\x32$.nidaqmx_grpc.TriggerUInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\r\n\x05value\x18\x04 \x01(\rB\x10\n\x0e\x61ttribute_enum\"0\n\x1eSetTrigAttributeUInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xca\x01\n\x1fSetWatchdogAttributeBoolRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\r\n\x05lines\x18\x02 \x01(\t\x12\x38\n\tattribute\x18\x03 \x01(\x0e\x32#.nidaqmx_grpc.WatchdogBoolAttributeH\x00\x12\x17\n\rattribute_raw\x18\x04 \x01(\x05H\x00\x12\r\n\x05value\x18\x05 \x01(\x08\x42\x10\n\x0e\x61ttribute_enum\"2\n SetWatchdogAttributeBoolResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xce\x01\n!SetWatchdogAttributeDoubleRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\r\n\x05lines\x18\x02 \x01(\t\x12:\n\tattribute\x18\x03 \x01(\x0e\x32%.nidaqmx_grpc.WatchdogDoubleAttributeH\x00\x12\x17\n\rattribute_raw\x18\x04 \x01(\x05H\x00\x12\r\n\x05value\x18\x05 \x01(\x01\x42\x10\n\x0e\x61ttribute_enum\"4\n\"SetWatchdogAttributeDoubleResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x9d\x02\n SetWatchdogAttributeInt32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\r\n\x05lines\x18\x02 \x01(\t\x12\x39\n\tattribute\x18\x03 \x01(\x0e\x32$.nidaqmx_grpc.WatchdogInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x04 \x01(\x05H\x00\x12;\n\x05value\x18\x05 \x01(\x0e\x32*.nidaqmx_grpc.WatchdogInt32AttributeValuesH\x01\x12\x13\n\tvalue_raw\x18\x06 \x01(\x05H\x01\x42\x10\n\x0e\x61ttribute_enumB\x0c\n\nvalue_enum\"3\n!SetWatchdogAttributeInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xce\x01\n!SetWatchdogAttributeStringRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\r\n\x05lines\x18\x02 \x01(\t\x12:\n\tattribute\x18\x03 \x01(\x0e\x32%.nidaqmx_grpc.WatchdogStringAttributeH\x00\x12\x17\n\rattribute_raw\x18\x04 \x01(\x05H\x00\x12\r\n\x05value\x18\x05 \x01(\tB\x10\n\x0e\x61ttribute_enum\"4\n\"SetWatchdogAttributeStringResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xb5\x01\n\x1cSetWriteAttributeBoolRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x35\n\tattribute\x18\x02 \x01(\x0e\x32 .nidaqmx_grpc.WriteBoolAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\r\n\x05value\x18\x04 \x01(\x08\x42\x10\n\x0e\x61ttribute_enum\"/\n\x1dSetWriteAttributeBoolResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xb9\x01\n\x1eSetWriteAttributeDoubleRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x37\n\tattribute\x18\x02 \x01(\x0e\x32\".nidaqmx_grpc.WriteDoubleAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\r\n\x05value\x18\x04 \x01(\x01\x42\x10\n\x0e\x61ttribute_enum\"1\n\x1fSetWriteAttributeDoubleResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x85\x02\n\x1dSetWriteAttributeInt32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x36\n\tattribute\x18\x02 \x01(\x0e\x32!.nidaqmx_grpc.WriteInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\x38\n\x05value\x18\x04 \x01(\x0e\x32\'.nidaqmx_grpc.WriteInt32AttributeValuesH\x01\x12\x13\n\tvalue_raw\x18\x05 \x01(\x05H\x01\x42\x10\n\x0e\x61ttribute_enumB\x0c\n\nvalue_enum\"0\n\x1eSetWriteAttributeInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xb9\x01\n\x1eSetWriteAttributeStringRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x37\n\tattribute\x18\x02 \x01(\x0e\x32\".nidaqmx_grpc.WriteStringAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\r\n\x05value\x18\x04 \x01(\tB\x10\n\x0e\x61ttribute_enum\"1\n\x1fSetWriteAttributeStringResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xb9\x01\n\x1eSetWriteAttributeUInt32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x37\n\tattribute\x18\x02 \x01(\x0e\x32\".nidaqmx_grpc.WriteUInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\r\n\x05value\x18\x04 \x01(\rB\x10\n\x0e\x61ttribute_enum\"1\n\x1fSetWriteAttributeUInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xb9\x01\n\x1eSetWriteAttributeUInt64Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x37\n\tattribute\x18\x02 \x01(\x0e\x32\".nidaqmx_grpc.WriteUInt64AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\r\n\x05value\x18\x04 \x01(\x04\x42\x10\n\x0e\x61ttribute_enum\"1\n\x1fSetWriteAttributeUInt64Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\"N\n\x13StartNewFileRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x11\n\tfile_path\x18\x02 \x01(\t\"&\n\x14StartNewFileResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"8\n\x10StartTaskRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\"#\n\x11StartTaskResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"7\n\x0fStopTaskRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\"\"\n\x10StopTaskResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x92\x01\n\x12TaskControlRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x31\n\x06\x61\x63tion\x18\x02 \x01(\x0e\x32\x1f.nidaqmx_grpc.TaskControlActionH\x00\x12\x14\n\naction_raw\x18\x03 \x01(\x05H\x00\x42\r\n\x0b\x61\x63tion_enum\"%\n\x13TaskControlResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"4\n\x19TristateOutputTermRequest\x12\x17\n\x0foutput_terminal\x18\x01 \x01(\t\",\n\x1aTristateOutputTermResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"B\n\x1aUnregisterDoneEventRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\"-\n\x1bUnregisterDoneEventResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xe4\x01\n#UnregisterEveryNSamplesEventRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12J\n\x1a\x65very_n_samples_event_type\x18\x02 \x01(\x0e\x32$.nidaqmx_grpc.EveryNSamplesEventTypeH\x00\x12(\n\x1e\x65very_n_samples_event_type_raw\x18\x03 \x01(\x05H\x00\x42!\n\x1f\x65very_n_samples_event_type_enum\"6\n$UnregisterEveryNSamplesEventResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x9b\x01\n\x1cUnregisterSignalEventRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12*\n\tsignal_id\x18\x02 \x01(\x0e\x32\x15.nidaqmx_grpc.Signal2H\x00\x12\x17\n\rsignal_id_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0esignal_id_enum\"/\n\x1dUnregisterSignalEventResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"4\n\x1dUnreserveNetworkDeviceRequest\x12\x13\n\x0b\x64\x65vice_name\x18\x01 \x01(\t\"0\n\x1eUnreserveNetworkDeviceResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"V\n\x1dWaitForNextSampleClockRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07timeout\x18\x02 \x01(\x01\"A\n\x1eWaitForNextSampleClockResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x0f\n\x07is_late\x18\x02 \x01(\x08\"[\n\"BeginWaitForNextSampleClockRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07timeout\x18\x02 \x01(\x01\"a\n#BeginWaitForNextSampleClockResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"H\n%MonikerWaitForNextSampleClockResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x0f\n\x07is_late\x18\x02 \x01(\x08\"\xc5\x01\n\x1cWaitForValidTimestampRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x37\n\x0ftimestamp_event\x18\x02 \x01(\x0e\x32\x1c.nidaqmx_grpc.TimestampEventH\x00\x12\x1d\n\x13timestamp_event_raw\x18\x03 \x01(\x05H\x00\x12\x0f\n\x07timeout\x18\x04 \x01(\x01\x42\x16\n\x14timestamp_event_enum\"^\n\x1dWaitForValidTimestampResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12-\n\ttimestamp\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"V\n\x18WaitUntilTaskDoneRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x14\n\x0ctime_to_wait\x18\x02 \x01(\x01\"+\n\x19WaitUntilTaskDoneResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xf0\x01\n\x15WriteAnalogF64Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x12\n\nauto_start\x18\x03 \x01(\x08\x12\x0f\n\x07timeout\x18\x04 \x01(\x01\x12,\n\x0b\x64\x61ta_layout\x18\x05 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x19\n\x0f\x64\x61ta_layout_raw\x18\x06 \x01(\x05H\x00\x12\x13\n\x0bwrite_array\x18\x07 \x03(\x01\x42\x12\n\x10\x64\x61ta_layout_enum\"H\n\x16WriteAnalogF64Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x1e\n\x16samps_per_chan_written\x18\x02 \x01(\x05\"\xe0\x01\n\x1a\x42\x65ginWriteAnalogF64Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x12\n\nauto_start\x18\x03 \x01(\x08\x12\x0f\n\x07timeout\x18\x04 \x01(\x01\x12,\n\x0b\x64\x61ta_layout\x18\x05 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x19\n\x0f\x64\x61ta_layout_raw\x18\x06 \x01(\x05H\x00\x42\x12\n\x10\x64\x61ta_layout_enum\"Y\n\x1b\x42\x65ginWriteAnalogF64Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"3\n\x1cMonikerWriteAnalogF64Request\x12\x13\n\x0bwrite_array\x18\x01 \x03(\x01\"O\n\x1dMonikerWriteAnalogF64Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x1e\n\x16samps_per_chan_written\x18\x02 \x01(\x05\"w\n\x1bWriteAnalogScalarF64Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x12\n\nauto_start\x18\x02 \x01(\x08\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12\r\n\x05value\x18\x04 \x01(\x01\".\n\x1cWriteAnalogScalarF64Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\"m\n BeginWriteAnalogScalarF64Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x12\n\nauto_start\x18\x02 \x01(\x08\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\"_\n!BeginWriteAnalogScalarF64Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"3\n\"MonikerWriteAnalogScalarF64Request\x12\r\n\x05value\x18\x01 \x01(\x01\"5\n#MonikerWriteAnalogScalarF64Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xf0\x01\n\x15WriteBinaryI16Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x12\n\nauto_start\x18\x03 \x01(\x08\x12\x0f\n\x07timeout\x18\x04 \x01(\x01\x12,\n\x0b\x64\x61ta_layout\x18\x05 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x19\n\x0f\x64\x61ta_layout_raw\x18\x06 \x01(\x05H\x00\x12\x13\n\x0bwrite_array\x18\x07 \x03(\x05\x42\x12\n\x10\x64\x61ta_layout_enum\"H\n\x16WriteBinaryI16Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x1e\n\x16samps_per_chan_written\x18\x02 \x01(\x05\"\xe0\x01\n\x1a\x42\x65ginWriteBinaryI16Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x12\n\nauto_start\x18\x03 \x01(\x08\x12\x0f\n\x07timeout\x18\x04 \x01(\x01\x12,\n\x0b\x64\x61ta_layout\x18\x05 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x19\n\x0f\x64\x61ta_layout_raw\x18\x06 \x01(\x05H\x00\x42\x12\n\x10\x64\x61ta_layout_enum\"Y\n\x1b\x42\x65ginWriteBinaryI16Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"3\n\x1cMonikerWriteBinaryI16Request\x12\x13\n\x0bwrite_array\x18\x01 \x03(\x05\"O\n\x1dMonikerWriteBinaryI16Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x1e\n\x16samps_per_chan_written\x18\x02 \x01(\x05\"\xf0\x01\n\x15WriteBinaryI32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x12\n\nauto_start\x18\x03 \x01(\x08\x12\x0f\n\x07timeout\x18\x04 \x01(\x01\x12,\n\x0b\x64\x61ta_layout\x18\x05 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x19\n\x0f\x64\x61ta_layout_raw\x18\x06 \x01(\x05H\x00\x12\x13\n\x0bwrite_array\x18\x07 \x03(\x05\x42\x12\n\x10\x64\x61ta_layout_enum\"H\n\x16WriteBinaryI32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x1e\n\x16samps_per_chan_written\x18\x02 \x01(\x05\"\xe0\x01\n\x1a\x42\x65ginWriteBinaryI32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x12\n\nauto_start\x18\x03 \x01(\x08\x12\x0f\n\x07timeout\x18\x04 \x01(\x01\x12,\n\x0b\x64\x61ta_layout\x18\x05 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x19\n\x0f\x64\x61ta_layout_raw\x18\x06 \x01(\x05H\x00\x42\x12\n\x10\x64\x61ta_layout_enum\"Y\n\x1b\x42\x65ginWriteBinaryI32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"3\n\x1cMonikerWriteBinaryI32Request\x12\x13\n\x0bwrite_array\x18\x01 \x03(\x05\"O\n\x1dMonikerWriteBinaryI32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x1e\n\x16samps_per_chan_written\x18\x02 \x01(\x05\"\xf0\x01\n\x15WriteBinaryU16Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x12\n\nauto_start\x18\x03 \x01(\x08\x12\x0f\n\x07timeout\x18\x04 \x01(\x01\x12,\n\x0b\x64\x61ta_layout\x18\x05 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x19\n\x0f\x64\x61ta_layout_raw\x18\x06 \x01(\x05H\x00\x12\x13\n\x0bwrite_array\x18\x07 \x03(\rB\x12\n\x10\x64\x61ta_layout_enum\"H\n\x16WriteBinaryU16Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x1e\n\x16samps_per_chan_written\x18\x02 \x01(\x05\"\xe0\x01\n\x1a\x42\x65ginWriteBinaryU16Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x12\n\nauto_start\x18\x03 \x01(\x08\x12\x0f\n\x07timeout\x18\x04 \x01(\x01\x12,\n\x0b\x64\x61ta_layout\x18\x05 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x19\n\x0f\x64\x61ta_layout_raw\x18\x06 \x01(\x05H\x00\x42\x12\n\x10\x64\x61ta_layout_enum\"Y\n\x1b\x42\x65ginWriteBinaryU16Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"3\n\x1cMonikerWriteBinaryU16Request\x12\x13\n\x0bwrite_array\x18\x01 \x03(\r\"O\n\x1dMonikerWriteBinaryU16Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x1e\n\x16samps_per_chan_written\x18\x02 \x01(\x05\"\xf0\x01\n\x15WriteBinaryU32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x12\n\nauto_start\x18\x03 \x01(\x08\x12\x0f\n\x07timeout\x18\x04 \x01(\x01\x12,\n\x0b\x64\x61ta_layout\x18\x05 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x19\n\x0f\x64\x61ta_layout_raw\x18\x06 \x01(\x05H\x00\x12\x13\n\x0bwrite_array\x18\x07 \x03(\rB\x12\n\x10\x64\x61ta_layout_enum\"H\n\x16WriteBinaryU32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x1e\n\x16samps_per_chan_written\x18\x02 \x01(\x05\"\xe0\x01\n\x1a\x42\x65ginWriteBinaryU32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x12\n\nauto_start\x18\x03 \x01(\x08\x12\x0f\n\x07timeout\x18\x04 \x01(\x01\x12,\n\x0b\x64\x61ta_layout\x18\x05 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x19\n\x0f\x64\x61ta_layout_raw\x18\x06 \x01(\x05H\x00\x42\x12\n\x10\x64\x61ta_layout_enum\"Y\n\x1b\x42\x65ginWriteBinaryU32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"3\n\x1cMonikerWriteBinaryU32Request\x12\x13\n\x0bwrite_array\x18\x01 \x03(\r\"O\n\x1dMonikerWriteBinaryU32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x1e\n\x16samps_per_chan_written\x18\x02 \x01(\x05\"\x80\x02\n\x13WriteCtrFreqRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x12\n\nauto_start\x18\x03 \x01(\x08\x12\x0f\n\x07timeout\x18\x04 \x01(\x01\x12,\n\x0b\x64\x61ta_layout\x18\x05 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x19\n\x0f\x64\x61ta_layout_raw\x18\x06 \x01(\x05H\x00\x12\x11\n\tfrequency\x18\x07 \x03(\x01\x12\x12\n\nduty_cycle\x18\x08 \x03(\x01\x42\x12\n\x10\x64\x61ta_layout_enum\"J\n\x14WriteCtrFreqResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\"\n\x1anum_samps_per_chan_written\x18\x02 \x01(\x05\"\xde\x01\n\x18\x42\x65ginWriteCtrFreqRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x12\n\nauto_start\x18\x03 \x01(\x08\x12\x0f\n\x07timeout\x18\x04 \x01(\x01\x12,\n\x0b\x64\x61ta_layout\x18\x05 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x19\n\x0f\x64\x61ta_layout_raw\x18\x06 \x01(\x05H\x00\x42\x12\n\x10\x64\x61ta_layout_enum\"W\n\x19\x42\x65ginWriteCtrFreqResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"C\n\x1aMonikerWriteCtrFreqRequest\x12\x11\n\tfrequency\x18\x01 \x03(\x01\x12\x12\n\nduty_cycle\x18\x02 \x03(\x01\"Q\n\x1bMonikerWriteCtrFreqResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\"\n\x1anum_samps_per_chan_written\x18\x02 \x01(\x05\"\x8d\x01\n\x19WriteCtrFreqScalarRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x12\n\nauto_start\x18\x02 \x01(\x08\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12\x11\n\tfrequency\x18\x04 \x01(\x01\x12\x12\n\nduty_cycle\x18\x05 \x01(\x01\",\n\x1aWriteCtrFreqScalarResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"k\n\x1e\x42\x65ginWriteCtrFreqScalarRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x12\n\nauto_start\x18\x02 \x01(\x08\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\"]\n\x1f\x42\x65ginWriteCtrFreqScalarResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"I\n MonikerWriteCtrFreqScalarRequest\x12\x11\n\tfrequency\x18\x01 \x01(\x01\x12\x12\n\nduty_cycle\x18\x02 \x01(\x01\"3\n!MonikerWriteCtrFreqScalarResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x81\x02\n\x14WriteCtrTicksRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x12\n\nauto_start\x18\x03 \x01(\x08\x12\x0f\n\x07timeout\x18\x04 \x01(\x01\x12,\n\x0b\x64\x61ta_layout\x18\x05 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x19\n\x0f\x64\x61ta_layout_raw\x18\x06 \x01(\x05H\x00\x12\x12\n\nhigh_ticks\x18\x07 \x03(\r\x12\x11\n\tlow_ticks\x18\x08 \x03(\rB\x12\n\x10\x64\x61ta_layout_enum\"K\n\x15WriteCtrTicksResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\"\n\x1anum_samps_per_chan_written\x18\x02 \x01(\x05\"\xdf\x01\n\x19\x42\x65ginWriteCtrTicksRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x12\n\nauto_start\x18\x03 \x01(\x08\x12\x0f\n\x07timeout\x18\x04 \x01(\x01\x12,\n\x0b\x64\x61ta_layout\x18\x05 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x19\n\x0f\x64\x61ta_layout_raw\x18\x06 \x01(\x05H\x00\x42\x12\n\x10\x64\x61ta_layout_enum\"X\n\x1a\x42\x65ginWriteCtrTicksResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"D\n\x1bMonikerWriteCtrTicksRequest\x12\x12\n\nhigh_ticks\x18\x01 \x03(\r\x12\x11\n\tlow_ticks\x18\x02 \x03(\r\"R\n\x1cMonikerWriteCtrTicksResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\"\n\x1anum_samps_per_chan_written\x18\x02 \x01(\x05\"\x8e\x01\n\x1aWriteCtrTicksScalarRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x12\n\nauto_start\x18\x02 \x01(\x08\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12\x12\n\nhigh_ticks\x18\x04 \x01(\r\x12\x11\n\tlow_ticks\x18\x05 \x01(\r\"-\n\x1bWriteCtrTicksScalarResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"l\n\x1f\x42\x65ginWriteCtrTicksScalarRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x12\n\nauto_start\x18\x02 \x01(\x08\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\"^\n BeginWriteCtrTicksScalarResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"J\n!MonikerWriteCtrTicksScalarRequest\x12\x12\n\nhigh_ticks\x18\x01 \x01(\r\x12\x11\n\tlow_ticks\x18\x02 \x01(\r\"4\n\"MonikerWriteCtrTicksScalarResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xfe\x01\n\x13WriteCtrTimeRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x12\n\nauto_start\x18\x03 \x01(\x08\x12\x0f\n\x07timeout\x18\x04 \x01(\x01\x12,\n\x0b\x64\x61ta_layout\x18\x05 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x19\n\x0f\x64\x61ta_layout_raw\x18\x06 \x01(\x05H\x00\x12\x11\n\thigh_time\x18\x07 \x03(\x01\x12\x10\n\x08low_time\x18\x08 \x03(\x01\x42\x12\n\x10\x64\x61ta_layout_enum\"J\n\x14WriteCtrTimeResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\"\n\x1anum_samps_per_chan_written\x18\x02 \x01(\x05\"\xde\x01\n\x18\x42\x65ginWriteCtrTimeRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x12\n\nauto_start\x18\x03 \x01(\x08\x12\x0f\n\x07timeout\x18\x04 \x01(\x01\x12,\n\x0b\x64\x61ta_layout\x18\x05 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x19\n\x0f\x64\x61ta_layout_raw\x18\x06 \x01(\x05H\x00\x42\x12\n\x10\x64\x61ta_layout_enum\"W\n\x19\x42\x65ginWriteCtrTimeResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"A\n\x1aMonikerWriteCtrTimeRequest\x12\x11\n\thigh_time\x18\x01 \x03(\x01\x12\x10\n\x08low_time\x18\x02 \x03(\x01\"Q\n\x1bMonikerWriteCtrTimeResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\"\n\x1anum_samps_per_chan_written\x18\x02 \x01(\x05\"\x8b\x01\n\x19WriteCtrTimeScalarRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x12\n\nauto_start\x18\x02 \x01(\x08\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12\x11\n\thigh_time\x18\x04 \x01(\x01\x12\x10\n\x08low_time\x18\x05 \x01(\x01\",\n\x1aWriteCtrTimeScalarResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"k\n\x1e\x42\x65ginWriteCtrTimeScalarRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x12\n\nauto_start\x18\x02 \x01(\x08\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\"]\n\x1f\x42\x65ginWriteCtrTimeScalarResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"G\n MonikerWriteCtrTimeScalarRequest\x12\x11\n\thigh_time\x18\x01 \x01(\x01\x12\x10\n\x08low_time\x18\x02 \x01(\x01\"3\n!MonikerWriteCtrTimeScalarResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xf3\x01\n\x18WriteDigitalLinesRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x12\n\nauto_start\x18\x03 \x01(\x08\x12\x0f\n\x07timeout\x18\x04 \x01(\x01\x12,\n\x0b\x64\x61ta_layout\x18\x05 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x19\n\x0f\x64\x61ta_layout_raw\x18\x06 \x01(\x05H\x00\x12\x13\n\x0bwrite_array\x18\x07 \x01(\x0c\x42\x12\n\x10\x64\x61ta_layout_enum\"K\n\x19WriteDigitalLinesResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x1e\n\x16samps_per_chan_written\x18\x02 \x01(\x05\"\xe3\x01\n\x1d\x42\x65ginWriteDigitalLinesRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x12\n\nauto_start\x18\x03 \x01(\x08\x12\x0f\n\x07timeout\x18\x04 \x01(\x01\x12,\n\x0b\x64\x61ta_layout\x18\x05 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x19\n\x0f\x64\x61ta_layout_raw\x18\x06 \x01(\x05H\x00\x42\x12\n\x10\x64\x61ta_layout_enum\"\\\n\x1e\x42\x65ginWriteDigitalLinesResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"6\n\x1fMonikerWriteDigitalLinesRequest\x12\x13\n\x0bwrite_array\x18\x01 \x01(\x0c\"R\n MonikerWriteDigitalLinesResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x1e\n\x16samps_per_chan_written\x18\x02 \x01(\x05\"x\n\x1cWriteDigitalScalarU32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x12\n\nauto_start\x18\x02 \x01(\x08\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12\r\n\x05value\x18\x04 \x01(\r\"/\n\x1dWriteDigitalScalarU32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\"n\n!BeginWriteDigitalScalarU32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x12\n\nauto_start\x18\x02 \x01(\x08\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\"`\n\"BeginWriteDigitalScalarU32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"4\n#MonikerWriteDigitalScalarU32Request\x12\r\n\x05value\x18\x01 \x01(\r\"6\n$MonikerWriteDigitalScalarU32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xf1\x01\n\x16WriteDigitalU16Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x12\n\nauto_start\x18\x03 \x01(\x08\x12\x0f\n\x07timeout\x18\x04 \x01(\x01\x12,\n\x0b\x64\x61ta_layout\x18\x05 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x19\n\x0f\x64\x61ta_layout_raw\x18\x06 \x01(\x05H\x00\x12\x13\n\x0bwrite_array\x18\x07 \x03(\rB\x12\n\x10\x64\x61ta_layout_enum\"I\n\x17WriteDigitalU16Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x1e\n\x16samps_per_chan_written\x18\x02 \x01(\x05\"\xe1\x01\n\x1b\x42\x65ginWriteDigitalU16Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x12\n\nauto_start\x18\x03 \x01(\x08\x12\x0f\n\x07timeout\x18\x04 \x01(\x01\x12,\n\x0b\x64\x61ta_layout\x18\x05 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x19\n\x0f\x64\x61ta_layout_raw\x18\x06 \x01(\x05H\x00\x42\x12\n\x10\x64\x61ta_layout_enum\"Z\n\x1c\x42\x65ginWriteDigitalU16Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"4\n\x1dMonikerWriteDigitalU16Request\x12\x13\n\x0bwrite_array\x18\x01 \x03(\r\"P\n\x1eMonikerWriteDigitalU16Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x1e\n\x16samps_per_chan_written\x18\x02 \x01(\x05\"\xf1\x01\n\x16WriteDigitalU32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x12\n\nauto_start\x18\x03 \x01(\x08\x12\x0f\n\x07timeout\x18\x04 \x01(\x01\x12,\n\x0b\x64\x61ta_layout\x18\x05 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x19\n\x0f\x64\x61ta_layout_raw\x18\x06 \x01(\x05H\x00\x12\x13\n\x0bwrite_array\x18\x07 \x03(\rB\x12\n\x10\x64\x61ta_layout_enum\"I\n\x17WriteDigitalU32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x1e\n\x16samps_per_chan_written\x18\x02 \x01(\x05\"\xe1\x01\n\x1b\x42\x65ginWriteDigitalU32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x12\n\nauto_start\x18\x03 \x01(\x08\x12\x0f\n\x07timeout\x18\x04 \x01(\x01\x12,\n\x0b\x64\x61ta_layout\x18\x05 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x19\n\x0f\x64\x61ta_layout_raw\x18\x06 \x01(\x05H\x00\x42\x12\n\x10\x64\x61ta_layout_enum\"Z\n\x1c\x42\x65ginWriteDigitalU32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"4\n\x1dMonikerWriteDigitalU32Request\x12\x13\n\x0bwrite_array\x18\x01 \x03(\r\"P\n\x1eMonikerWriteDigitalU32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x1e\n\x16samps_per_chan_written\x18\x02 \x01(\x05\"\xf0\x01\n\x15WriteDigitalU8Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x12\n\nauto_start\x18\x03 \x01(\x08\x12\x0f\n\x07timeout\x18\x04 \x01(\x01\x12,\n\x0b\x64\x61ta_layout\x18\x05 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x19\n\x0f\x64\x61ta_layout_raw\x18\x06 \x01(\x05H\x00\x12\x13\n\x0bwrite_array\x18\x07 \x01(\x0c\x42\x12\n\x10\x64\x61ta_layout_enum\"H\n\x16WriteDigitalU8Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x1e\n\x16samps_per_chan_written\x18\x02 \x01(\x05\"\xe0\x01\n\x1a\x42\x65ginWriteDigitalU8Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x12\n\nauto_start\x18\x03 \x01(\x08\x12\x0f\n\x07timeout\x18\x04 \x01(\x01\x12,\n\x0b\x64\x61ta_layout\x18\x05 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x19\n\x0f\x64\x61ta_layout_raw\x18\x06 \x01(\x05H\x00\x42\x12\n\x10\x64\x61ta_layout_enum\"Y\n\x1b\x42\x65ginWriteDigitalU8Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"3\n\x1cMonikerWriteDigitalU8Request\x12\x13\n\x0bwrite_array\x18\x01 \x01(\x0c\"O\n\x1dMonikerWriteDigitalU8Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x1e\n\x16samps_per_chan_written\x18\x02 \x01(\x05\"f\n\x17WriteIDPinMemoryRequest\x12\x13\n\x0b\x64\x65vice_name\x18\x01 \x01(\t\x12\x13\n\x0bid_pin_name\x18\x02 \x01(\t\x12\x0c\n\x04\x64\x61ta\x18\x03 \x01(\x0c\x12\x13\n\x0b\x66ormat_code\x18\x04 \x01(\r\"*\n\x18WriteIDPinMemoryResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x84\x01\n\x0fWriteRawRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x11\n\tnum_samps\x18\x02 \x01(\x05\x12\x12\n\nauto_start\x18\x03 \x01(\x08\x12\x0f\n\x07timeout\x18\x04 \x01(\x01\x12\x13\n\x0bwrite_array\x18\x05 \x01(\x0c\"B\n\x10WriteRawResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x1e\n\x16samps_per_chan_written\x18\x02 \x01(\x05\"t\n\x14\x42\x65ginWriteRawRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x11\n\tnum_samps\x18\x02 \x01(\x05\x12\x12\n\nauto_start\x18\x03 \x01(\x08\x12\x0f\n\x07timeout\x18\x04 \x01(\x01\"S\n\x15\x42\x65ginWriteRawResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"-\n\x16MonikerWriteRawRequest\x12\x13\n\x0bwrite_array\x18\x01 \x01(\x0c\"I\n\x17MonikerWriteRawResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x1e\n\x16samps_per_chan_written\x18\x02 \x01(\x05\"\xcb\x01\n\x1bWriteToTEDSFromArrayRequest\x12\x18\n\x10physical_channel\x18\x01 \x01(\t\x12\x12\n\nbit_stream\x18\x02 \x01(\x0c\x12\x41\n\x12\x62\x61sic_teds_options\x18\x03 \x01(\x0e\x32#.nidaqmx_grpc.WriteBasicTEDSOptionsH\x00\x12 \n\x16\x62\x61sic_teds_options_raw\x18\x04 \x01(\x05H\x00\x42\x19\n\x17\x62\x61sic_teds_options_enum\".\n\x1cWriteToTEDSFromArrayResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xc9\x01\n\x1aWriteToTEDSFromFileRequest\x12\x18\n\x10physical_channel\x18\x01 \x01(\t\x12\x11\n\tfile_path\x18\x02 \x01(\t\x12\x41\n\x12\x62\x61sic_teds_options\x18\x03 \x01(\x0e\x32#.nidaqmx_grpc.WriteBasicTEDSOptionsH\x00\x12 \n\x16\x62\x61sic_teds_options_raw\x18\x04 \x01(\x05H\x00\x42\x19\n\x17\x62\x61sic_teds_options_enum\"-\n\x1bWriteToTEDSFromFileResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05*\xe6\x01\n\x15\x42ufferUInt32Attribute\x12\'\n#BUFFER_UINT32_ATTRIBUTE_UNSPECIFIED\x10\x00\x12$\n\x1f\x42UFFER_ATTRIBUTE_INPUT_BUF_SIZE\x10\xec\x30\x12%\n BUFFER_ATTRIBUTE_OUTPUT_BUF_SIZE\x10\xed\x30\x12*\n%BUFFER_ATTRIBUTE_INPUT_ONBRD_BUF_SIZE\x10\x8a\x46\x12+\n&BUFFER_ATTRIBUTE_OUTPUT_ONBRD_BUF_SIZE\x10\x8b\x46*\xca\x01\n\x14\x42ufferResetAttribute\x12&\n\"BUFFER_RESET_ATTRIBUTE_UNSPECIFIED\x10\x00\x12*\n%BUFFER_RESET_ATTRIBUTE_INPUT_BUF_SIZE\x10\xec\x30\x12+\n&BUFFER_RESET_ATTRIBUTE_OUTPUT_BUF_SIZE\x10\xed\x30\x12\x31\n,BUFFER_RESET_ATTRIBUTE_OUTPUT_ONBRD_BUF_SIZE\x10\x8b\x46*\x81\x01\n\x1c\x43\x61librationInfoBoolAttribute\x12.\n*CALIBRATIONINFO_BOOL_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\x31\n,CALIBRATIONINFO_ATTRIBUTE_SELF_CAL_SUPPORTED\x10\xe0\x30*\x88\x01\n\x1e\x43\x61librationInfoStringAttribute\x12\x30\n,CALIBRATIONINFO_STRING_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\x34\n/CALIBRATIONINFO_ATTRIBUTE_CAL_USER_DEFINED_INFO\x10\xe1\x30*\xe4\x01\n\x1e\x43\x61librationInfoDoubleAttribute\x12\x30\n,CALIBRATIONINFO_DOUBLE_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\x31\n,CALIBRATIONINFO_ATTRIBUTE_SELF_CAL_LAST_TEMP\x10\xe4\x30\x12\x30\n+CALIBRATIONINFO_ATTRIBUTE_EXT_CAL_LAST_TEMP\x10\xe7\x30\x12+\n&CALIBRATIONINFO_ATTRIBUTE_CAL_DEV_TEMP\x10\xbb\x44*\xd2\x02\n\x1e\x43\x61librationInfoUInt32Attribute\x12\x30\n,CALIBRATIONINFO_UINT32_ATTRIBUTE_UNSPECIFIED\x10\x00\x12;\n6CALIBRATIONINFO_ATTRIBUTE_EXT_CAL_RECOMMENDED_INTERVAL\x10\xe8\x30\x12=\n8CALIBRATIONINFO_ATTRIBUTE_CAL_USER_DEFINED_INFO_MAX_SIZE\x10\x9c\x32\x12\x37\n2CALIBRATIONINFO_ATTRIBUTE_CAL_ACC_CONNECTION_COUNT\x10\xeb_\x12I\nDCALIBRATIONINFO_ATTRIBUTE_CAL_RECOMMENDED_ACC_CONNECTION_COUNT_LIMIT\x10\xec_*\xc8K\n\x15\x43hannelInt32Attribute\x12\'\n#CHANNEL_INT32_ATTRIBUTE_UNSPECIFIED\x10\x00\x12/\n+CHANNEL_ATTRIBUTE_AI_RAW_SAMP_JUSTIFICATION\x10P\x12!\n\x1d\x43HANNEL_ATTRIBUTE_AI_COUPLING\x10\x64\x12$\n\x1f\x43HANNEL_ATTRIBUTE_AI_BRIDGE_CFG\x10\x87\x01\x12%\n CHANNEL_ATTRIBUTE_AO_DAC_REF_SRC\x10\xb2\x02\x12(\n#CHANNEL_ATTRIBUTE_AO_DATA_XFER_MECH\x10\xb4\x02\x12\x32\n-CHANNEL_ATTRIBUTE_CI_CTR_TIMEBASE_ACTIVE_EDGE\x10\xc2\x02\x12(\n#CHANNEL_ATTRIBUTE_CI_FREQ_MEAS_METH\x10\xc4\x02\x12&\n!CHANNEL_ATTRIBUTE_CI_OUTPUT_STATE\x10\xc9\x02\x12(\n#CHANNEL_ATTRIBUTE_CI_DATA_XFER_MECH\x10\x80\x04\x12&\n!CHANNEL_ATTRIBUTE_CO_OUTPUT_STATE\x10\x94\x05\x12\x32\n-CHANNEL_ATTRIBUTE_CO_CTR_TIMEBASE_ACTIVE_EDGE\x10\xc1\x06\x12%\n CHANNEL_ATTRIBUTE_AI_ACCEL_UNITS\x10\xf3\x0c\x12#\n\x1e\x43HANNEL_ATTRIBUTE_AI_MEAS_TYPE\x10\x95\r\x12)\n$CHANNEL_ATTRIBUTE_CI_COUNT_EDGES_DIR\x10\x96\r\x12\x31\n,CHANNEL_ATTRIBUTE_CI_COUNT_EDGES_ACTIVE_EDGE\x10\x97\r\x12\'\n\"CHANNEL_ATTRIBUTE_AI_CURRENT_UNITS\x10\x81\x0e\x12,\n\'CHANNEL_ATTRIBUTE_CI_FREQ_STARTING_EDGE\x10\x99\x0f\x12$\n\x1f\x43HANNEL_ATTRIBUTE_AI_FREQ_UNITS\x10\x86\x10\x12+\n&CHANNEL_ATTRIBUTE_CI_PULSE_WIDTH_UNITS\x10\xa3\x10\x12\x33\n.CHANNEL_ATTRIBUTE_CI_PULSE_WIDTH_STARTING_EDGE\x10\xa5\x10\x12\x31\n,CHANNEL_ATTRIBUTE_CI_TWO_EDGE_SEP_FIRST_EDGE\x10\xb3\x10\x12\x32\n-CHANNEL_ATTRIBUTE_CI_TWO_EDGE_SEP_SECOND_EDGE\x10\xb4\x10\x12.\n)CHANNEL_ATTRIBUTE_CI_PERIOD_STARTING_EDGE\x10\xd2\x10\x12$\n\x1f\x43HANNEL_ATTRIBUTE_AI_RVDT_UNITS\x10\xf7\x10\x12/\n*CHANNEL_ATTRIBUTE_CI_ENCODER_Z_INDEX_PHASE\x10\x89\x11\x12$\n\x1f\x43HANNEL_ATTRIBUTE_AI_LVDT_UNITS\x10\x90\x12\x12*\n%CHANNEL_ATTRIBUTE_AI_RESISTANCE_UNITS\x10\xd5\x12\x12&\n!CHANNEL_ATTRIBUTE_AI_STRAIN_UNITS\x10\x81\x13\x12)\n$CHANNEL_ATTRIBUTE_AI_STRAIN_GAGE_CFG\x10\x82\x13\x12\"\n\x1d\x43HANNEL_ATTRIBUTE_AI_RTD_TYPE\x10\xb2 \x12$\n\x1f\x43HANNEL_ATTRIBUTE_AI_TEMP_UNITS\x10\xb3 \x12)\n$CHANNEL_ATTRIBUTE_AI_THRMCPL_CJC_SRC\x10\xb5 \x12&\n!CHANNEL_ATTRIBUTE_AI_THRMCPL_TYPE\x10\xd0 \x12)\n$CHANNEL_ATTRIBUTE_CI_GPS_SYNC_METHOD\x10\x92!\x12\'\n\"CHANNEL_ATTRIBUTE_AI_VOLTAGE_UNITS\x10\x94!\x12\"\n\x1d\x43HANNEL_ATTRIBUTE_AI_TERM_CFG\x10\x97!\x12%\n CHANNEL_ATTRIBUTE_AO_OUTPUT_TYPE\x10\x88\"\x12\'\n\"CHANNEL_ATTRIBUTE_AO_CURRENT_UNITS\x10\x89\"\x12+\n&CHANNEL_ATTRIBUTE_DO_OUTPUT_DRIVE_TYPE\x10\xb7\"\x12*\n%CHANNEL_ATTRIBUTE_CO_PULSE_IDLE_STATE\x10\xf0\"\x12\'\n\"CHANNEL_ATTRIBUTE_AO_VOLTAGE_UNITS\x10\x84#\x12.\n)CHANNEL_ATTRIBUTE_AI_SOUND_PRESSURE_UNITS\x10\xa8*\x12(\n#CHANNEL_ATTRIBUTE_AI_AUTO_ZERO_MODE\x10\xe0.\x12*\n%CHANNEL_ATTRIBUTE_AI_RESOLUTION_UNITS\x10\xe4.\x12-\n(CHANNEL_ATTRIBUTE_AI_VOLTAGE_ACRMS_UNITS\x10\xe2/\x12-\n(CHANNEL_ATTRIBUTE_AI_CURRENT_ACRMS_UNITS\x10\xe3/\x12\x33\n.CHANNEL_ATTRIBUTE_AI_BRIDGE_BALANCE_COARSE_POT\x10\xf1/\x12+\n&CHANNEL_ATTRIBUTE_AI_CURRENT_SHUNT_LOC\x10\xf2/\x12#\n\x1e\x43HANNEL_ATTRIBUTE_AI_EXCIT_SRC\x10\xf4/\x12\x32\n-CHANNEL_ATTRIBUTE_AI_EXCIT_VOLTAGE_OR_CURRENT\x10\xf6/\x12(\n#CHANNEL_ATTRIBUTE_AI_EXCIT_D_COR_AC\x10\xfb/\x12\'\n\"CHANNEL_ATTRIBUTE_AI_HIGHPASS_TYPE\x10\x88\x30\x12\'\n\"CHANNEL_ATTRIBUTE_AI_BANDPASS_TYPE\x10\x8d\x30\x12$\n\x1f\x43HANNEL_ATTRIBUTE_AI_NOTCH_TYPE\x10\x91\x30\x12(\n#CHANNEL_ATTRIBUTE_AI_DATA_XFER_MECH\x10\xa1\x30\x12*\n%CHANNEL_ATTRIBUTE_AO_RESOLUTION_UNITS\x10\xab\x30\x12,\n\'CHANNEL_ATTRIBUTE_AO_DATA_XFER_REQ_COND\x10\xbc\x30\x12 \n\x1b\x43HANNEL_ATTRIBUTE_CHAN_TYPE\x10\xff\x30\x12(\n#CHANNEL_ATTRIBUTE_AI_RESISTANCE_CFG\x10\x81\x31\x12\x34\n/CHANNEL_ATTRIBUTE_AI_LOWPASS_SWITCH_CAP_CLK_SRC\x10\x84\x31\x12,\n\'CHANNEL_ATTRIBUTE_AI_DATA_XFER_REQ_COND\x10\x8b\x31\x12\"\n\x1d\x43HANNEL_ATTRIBUTE_AO_TERM_CFG\x10\x8e\x31\x12#\n\x1e\x43HANNEL_ATTRIBUTE_CI_MEAS_TYPE\x10\xa0\x31\x12$\n\x1f\x43HANNEL_ATTRIBUTE_CI_FREQ_UNITS\x10\xa1\x31\x12&\n!CHANNEL_ATTRIBUTE_CI_PERIOD_UNITS\x10\xa3\x31\x12+\n&CHANNEL_ATTRIBUTE_CI_ANG_ENCODER_UNITS\x10\xa6\x31\x12+\n&CHANNEL_ATTRIBUTE_CI_LIN_ENCODER_UNITS\x10\xa9\x31\x12,\n\'CHANNEL_ATTRIBUTE_CI_TWO_EDGE_SEP_UNITS\x10\xac\x31\x12+\n&CHANNEL_ATTRIBUTE_CI_SEMI_PERIOD_UNITS\x10\xaf\x31\x12%\n CHANNEL_ATTRIBUTE_CO_OUTPUT_TYPE\x10\xb5\x31\x12,\n\'CHANNEL_ATTRIBUTE_AI_AC_EXCIT_WIRE_MODE\x10\xcd\x31\x12*\n%CHANNEL_ATTRIBUTE_CO_PULSE_FREQ_UNITS\x10\xd5\x31\x12*\n%CHANNEL_ATTRIBUTE_CO_PULSE_TIME_UNITS\x10\xd6\x31\x12\x31\n,CHANNEL_ATTRIBUTE_AI_BRIDGE_BALANCE_FINE_POT\x10\xf4\x31\x12*\n%CHANNEL_ATTRIBUTE_CI_PERIOD_MEAS_METH\x10\xac\x32\x12\x30\n+CHANNEL_ATTRIBUTE_AI_LVDT_SENSITIVITY_UNITS\x10\x9a\x43\x12\x30\n+CHANNEL_ATTRIBUTE_AI_RVDT_SENSITIVITY_UNITS\x10\x9b\x43\x12\x31\n,CHANNEL_ATTRIBUTE_AI_ACCEL_SENSITIVITY_UNITS\x10\x9c\x43\x12\x31\n,CHANNEL_ATTRIBUTE_AI_BRIDGE_SHUNT_CAL_SELECT\x10\xd5\x43\x12/\n*CHANNEL_ATTRIBUTE_CI_ENCODER_DECODING_TYPE\x10\xe6\x43\x12.\n)CHANNEL_ATTRIBUTE_AO_IDLE_OUTPUT_BEHAVIOR\x10\xc0\x44\x12(\n#CHANNEL_ATTRIBUTE_AO_DAC_OFFSET_SRC\x10\xd3\x44\x12(\n#CHANNEL_ATTRIBUTE_DI_DATA_XFER_MECH\x10\xe3\x44\x12,\n\'CHANNEL_ATTRIBUTE_DI_DATA_XFER_REQ_COND\x10\xe4\x44\x12(\n#CHANNEL_ATTRIBUTE_DO_DATA_XFER_MECH\x10\xe6\x44\x12,\n\'CHANNEL_ATTRIBUTE_DO_DATA_XFER_REQ_COND\x10\xe7\x44\x12-\n(CHANNEL_ATTRIBUTE_AI_CHAN_CAL_SCALE_TYPE\x10\x9c\x45\x12)\n$CHANNEL_ATTRIBUTE_CI_TIMESTAMP_UNITS\x10\xb3\x45\x12\x33\n.CHANNEL_ATTRIBUTE_AI_RAW_DATA_COMPRESSION_TYPE\x10\xd8\x45\x12\x33\n.CHANNEL_ATTRIBUTE_CI_SEMI_PERIOD_STARTING_EDGE\x10\xfe\x45\x12$\n\x1f\x43HANNEL_ATTRIBUTE_DI_ACQUIRE_ON\x10\xe6R\x12\x32\n-CHANNEL_ATTRIBUTE_DO_LINE_STATES_PAUSED_STATE\x10\xe7R\x12\x30\n+CHANNEL_ATTRIBUTE_DO_LINE_STATES_DONE_STATE\x10\xe8R\x12%\n CHANNEL_ATTRIBUTE_DO_GENERATE_ON\x10\xe9R\x12&\n!CHANNEL_ATTRIBUTE_DI_LOGIC_FAMILY\x10\xedR\x12&\n!CHANNEL_ATTRIBUTE_DO_LOGIC_FAMILY\x10\xeeR\x12\x31\n,CHANNEL_ATTRIBUTE_DO_LINE_STATES_START_STATE\x10\xf2R\x12,\n\'CHANNEL_ATTRIBUTE_AI_THRMCPL_SCALE_TYPE\x10\xd0S\x12.\n)CHANNEL_ATTRIBUTE_CO_CONSTRAINED_GEN_MODE\x10\xf2S\x12)\n$CHANNEL_ATTRIBUTE_AI_ADC_TIMING_MODE\x10\xf9S\x12\'\n\"CHANNEL_ATTRIBUTE_AO_FUNC_GEN_TYPE\x10\x98T\x12\x32\n-CHANNEL_ATTRIBUTE_AO_FUNC_GEN_MODULATION_TYPE\x10\xa2T\x12\x43\n>CHANNEL_ATTRIBUTE_AI_EDDY_CURRENT_PROX_PROBE_SENSITIVITY_UNITS\x10\xbfU\x12\x37\n2CHANNEL_ATTRIBUTE_AI_EDDY_CURRENT_PROX_PROBE_UNITS\x10\xc0U\x12(\n#CHANNEL_ATTRIBUTE_CO_DATA_XFER_MECH\x10\xcc]\x12,\n\'CHANNEL_ATTRIBUTE_CO_DATA_XFER_REQ_COND\x10\xcd]\x12,\n\'CHANNEL_ATTRIBUTE_CI_DATA_XFER_REQ_COND\x10\xfb]\x12/\n*CHANNEL_ATTRIBUTE_CI_PULSE_FREQ_START_EDGE\x10\x85^\x12*\n%CHANNEL_ATTRIBUTE_CI_PULSE_FREQ_UNITS\x10\x8b^\x12/\n*CHANNEL_ATTRIBUTE_CI_PULSE_TIME_START_EDGE\x10\x8d^\x12*\n%CHANNEL_ATTRIBUTE_CI_PULSE_TIME_UNITS\x10\x93^\x12\x30\n+CHANNEL_ATTRIBUTE_CI_PULSE_TICKS_START_EDGE\x10\x95^\x12%\n CHANNEL_ATTRIBUTE_AI_FORCE_UNITS\x10\xf5^\x12(\n#CHANNEL_ATTRIBUTE_AI_PRESSURE_UNITS\x10\xf6^\x12&\n!CHANNEL_ATTRIBUTE_AI_TORQUE_UNITS\x10\xf7^\x12=\n8CHANNEL_ATTRIBUTE_AI_FORCE_IEPE_SENSOR_SENSITIVITY_UNITS\x10\x82_\x12\x31\n,CHANNEL_ATTRIBUTE_AI_BRIDGE_ELECTRICAL_UNITS\x10\x87_\x12/\n*CHANNEL_ATTRIBUTE_AI_BRIDGE_PHYSICAL_UNITS\x10\x88_\x12+\n&CHANNEL_ATTRIBUTE_AI_BRIDGE_SCALE_TYPE\x10\x89_\x12&\n!CHANNEL_ATTRIBUTE_AI_BRIDGE_UNITS\x10\x92_\x12=\n8CHANNEL_ATTRIBUTE_CI_COUNT_EDGES_COUNT_RESET_ACTIVE_EDGE\x10\xb2_\x12(\n#CHANNEL_ATTRIBUTE_AI_VELOCITY_UNITS\x10\xf4_\x12@\n;CHANNEL_ATTRIBUTE_AI_VELOCITY_IEPE_SENSOR_SENSITIVITY_UNITS\x10\xf7_\x12?\n:CHANNEL_ATTRIBUTE_AI_ROSETTE_STRAIN_GAGE_ROSETTE_MEAS_TYPE\x10\xfd_\x12:\n5CHANNEL_ATTRIBUTE_AI_ROSETTE_STRAIN_GAGE_ROSETTE_TYPE\x10\xfe_\x12(\n#CHANNEL_ATTRIBUTE_CI_TIMESTAMP_EDGE\x10\xba`\x12-\n(CHANNEL_ATTRIBUTE_CI_TIMESTAMP_TIMESCALE\x10\xbb`\x12$\n\x1f\x43HANNEL_ATTRIBUTE_NAV_MEAS_TYPE\x10\xbd`\x12$\n\x1f\x43HANNEL_ATTRIBUTE_NAV_ALT_UNITS\x10\xbe`\x12$\n\x1f\x43HANNEL_ATTRIBUTE_NAV_LAT_UNITS\x10\xbf`\x12%\n CHANNEL_ATTRIBUTE_NAV_LONG_UNITS\x10\xc0`\x12\x32\n-CHANNEL_ATTRIBUTE_NAV_SPEED_OVER_GROUND_UNITS\x10\xc1`\x12&\n!CHANNEL_ATTRIBUTE_NAV_TRACK_UNITS\x10\xc2`\x12.\n)CHANNEL_ATTRIBUTE_NAV_VERT_VELOCITY_UNITS\x10\xc3`\x12*\n%CHANNEL_ATTRIBUTE_NAV_TIMESTAMP_UNITS\x10\xc4`\x12.\n)CHANNEL_ATTRIBUTE_NAV_TIMESTAMP_TIMESCALE\x10\xc5`\x12,\n\'CHANNEL_ATTRIBUTE_AI_FILTER_DELAY_UNITS\x10\xf1`\x12,\n\'CHANNEL_ATTRIBUTE_AO_FILTER_DELAY_UNITS\x10\xf6`\x12\x32\n-CHANNEL_ATTRIBUTE_CI_DUTY_CYCLE_STARTING_EDGE\x10\x92\x61\x12\x33\n.CHANNEL_ATTRIBUTE_CI_SAMP_CLK_OVERRUN_BEHAVIOR\x10\x93\x61\x12\x37\n2CHANNEL_ATTRIBUTE_CI_SAMP_CLK_OVERRUN_SENTINEL_VAL\x10\x94\x61\x12\'\n\"CHANNEL_ATTRIBUTE_CI_FREQ_TERM_CFG\x10\x97\x61\x12\x31\n,CHANNEL_ATTRIBUTE_CI_FREQ_LOGIC_LVL_BEHAVIOR\x10\x98\x61\x12)\n$CHANNEL_ATTRIBUTE_CI_PERIOD_TERM_CFG\x10\x99\x61\x12\x33\n.CHANNEL_ATTRIBUTE_CI_PERIOD_LOGIC_LVL_BEHAVIOR\x10\x9a\x61\x12.\n)CHANNEL_ATTRIBUTE_CI_COUNT_EDGES_TERM_CFG\x10\x9b\x61\x12\x38\n3CHANNEL_ATTRIBUTE_CI_COUNT_EDGES_LOGIC_LVL_BEHAVIOR\x10\x9c\x61\x12\x38\n3CHANNEL_ATTRIBUTE_CI_COUNT_EDGES_COUNT_DIR_TERM_CFG\x10\x9d\x61\x12\x42\n=CHANNEL_ATTRIBUTE_CI_COUNT_EDGES_COUNT_DIR_LOGIC_LVL_BEHAVIOR\x10\x9e\x61\x12:\n5CHANNEL_ATTRIBUTE_CI_COUNT_EDGES_COUNT_RESET_TERM_CFG\x10\x9f\x61\x12\x44\n?CHANNEL_ATTRIBUTE_CI_COUNT_EDGES_COUNT_RESET_LOGIC_LVL_BEHAVIOR\x10\xa0\x61\x12-\n(CHANNEL_ATTRIBUTE_CI_DUTY_CYCLE_TERM_CFG\x10\xa1\x61\x12\x37\n2CHANNEL_ATTRIBUTE_CI_DUTY_CYCLE_LOGIC_LVL_BEHAVIOR\x10\xa2\x61\x12\x32\n-CHANNEL_ATTRIBUTE_CI_ENCODER_A_INPUT_TERM_CFG\x10\xa3\x61\x12<\n7CHANNEL_ATTRIBUTE_CI_ENCODER_A_INPUT_LOGIC_LVL_BEHAVIOR\x10\xa4\x61\x12\x32\n-CHANNEL_ATTRIBUTE_CI_ENCODER_B_INPUT_TERM_CFG\x10\xa5\x61\x12<\n7CHANNEL_ATTRIBUTE_CI_ENCODER_B_INPUT_LOGIC_LVL_BEHAVIOR\x10\xa6\x61\x12\x32\n-CHANNEL_ATTRIBUTE_CI_ENCODER_Z_INPUT_TERM_CFG\x10\xa7\x61\x12<\n7CHANNEL_ATTRIBUTE_CI_ENCODER_Z_INPUT_LOGIC_LVL_BEHAVIOR\x10\xa8\x61\x12.\n)CHANNEL_ATTRIBUTE_CI_PULSE_WIDTH_TERM_CFG\x10\xa9\x61\x12\x38\n3CHANNEL_ATTRIBUTE_CI_PULSE_WIDTH_LOGIC_LVL_BEHAVIOR\x10\xaa\x61\x12\x35\n0CHANNEL_ATTRIBUTE_CI_TWO_EDGE_SEP_FIRST_TERM_CFG\x10\xab\x61\x12?\n:CHANNEL_ATTRIBUTE_CI_TWO_EDGE_SEP_FIRST_LOGIC_LVL_BEHAVIOR\x10\xac\x61\x12\x36\n1CHANNEL_ATTRIBUTE_CI_TWO_EDGE_SEP_SECOND_TERM_CFG\x10\xad\x61\x12@\n;CHANNEL_ATTRIBUTE_CI_TWO_EDGE_SEP_SECOND_LOGIC_LVL_BEHAVIOR\x10\xae\x61\x12.\n)CHANNEL_ATTRIBUTE_CI_SEMI_PERIOD_TERM_CFG\x10\xaf\x61\x12\x38\n3CHANNEL_ATTRIBUTE_CI_SEMI_PERIOD_LOGIC_LVL_BEHAVIOR\x10\xb0\x61\x12-\n(CHANNEL_ATTRIBUTE_CI_PULSE_FREQ_TERM_CFG\x10\xb1\x61\x12\x37\n2CHANNEL_ATTRIBUTE_CI_PULSE_FREQ_LOGIC_LVL_BEHAVIOR\x10\xb2\x61\x12-\n(CHANNEL_ATTRIBUTE_CI_PULSE_TIME_TERM_CFG\x10\xb3\x61\x12\x37\n2CHANNEL_ATTRIBUTE_CI_PULSE_TIME_LOGIC_LVL_BEHAVIOR\x10\xb4\x61\x12.\n)CHANNEL_ATTRIBUTE_CI_PULSE_TICKS_TERM_CFG\x10\xb5\x61\x12\x38\n3CHANNEL_ATTRIBUTE_CI_PULSE_TICKS_LOGIC_LVL_BEHAVIOR\x10\xb6\x61\x12\x34\n/CHANNEL_ATTRIBUTE_AI_EXCIT_IDLE_OUTPUT_BEHAVIOR\x10\xb8\x61\x12\'\n\"CHANNEL_ATTRIBUTE_AI_DIG_FLTR_TYPE\x10\xbe\x61\x12+\n&CHANNEL_ATTRIBUTE_AI_DIG_FLTR_RESPONSE\x10\xbf\x61\x12:\n5CHANNEL_ATTRIBUTE_AI_BRIDGE_SHUNT_CAL_SHUNT_CAL_A_SRC\x10\xca\x61\x12\x34\n/CHANNEL_ATTRIBUTE_CI_VELOCITY_ANG_ENCODER_UNITS\x10\xd8\x61\x12\x34\n/CHANNEL_ATTRIBUTE_CI_VELOCITY_LIN_ENCODER_UNITS\x10\xda\x61\x12\x38\n3CHANNEL_ATTRIBUTE_CI_VELOCITY_ENCODER_DECODING_TYPE\x10\xdc\x61\x12;\n6CHANNEL_ATTRIBUTE_CI_VELOCITY_ENCODER_A_INPUT_TERM_CFG\x10\xde\x61\x12\x45\n@CHANNEL_ATTRIBUTE_CI_VELOCITY_ENCODER_A_INPUT_LOGIC_LVL_BEHAVIOR\x10\xdf\x61\x12;\n6CHANNEL_ATTRIBUTE_CI_VELOCITY_ENCODER_B_INPUT_TERM_CFG\x10\xe5\x61\x12\x45\n@CHANNEL_ATTRIBUTE_CI_VELOCITY_ENCODER_B_INPUT_LOGIC_LVL_BEHAVIOR\x10\xe6\x61\x12\x33\n.CHANNEL_ATTRIBUTE_CI_COUNT_EDGES_GATE_TERM_CFG\x10\xef\x61\x12=\n8CHANNEL_ATTRIBUTE_CI_COUNT_EDGES_GATE_LOGIC_LVL_BEHAVIOR\x10\xf0\x61\x12/\n*CHANNEL_ATTRIBUTE_CI_COUNT_EDGES_GATE_WHEN\x10\xf5\x61\x12:\n5CHANNEL_ATTRIBUTE_AI_BRIDGE_SHUNT_CAL_SHUNT_CAL_B_SRC\x10\xf7\x61\x12%\n CHANNEL_ATTRIBUTE_AI_EXCIT_SENSE\x10\xfd\x61\x12&\n!CHANNEL_ATTRIBUTE_AI_CHARGE_UNITS\x10\x92\x62\x12\x38\n3CHANNEL_ATTRIBUTE_AI_ACCEL_CHARGE_SENSITIVITY_UNITS\x10\x94\x62\x12\x43\n>CHANNEL_ATTRIBUTE_AI_ACCEL_4_WIRE_DC_VOLTAGE_SENSITIVITY_UNITS\x10\x96\x62\x12\x30\n+CHANNEL_ATTRIBUTE_CHAN_SYNC_UNLOCK_BEHAVIOR\x10\xbc\x62\x12*\n%CHANNEL_ATTRIBUTE_AI_SENSOR_POWER_CFG\x10\xea\x62\x12+\n&CHANNEL_ATTRIBUTE_AI_SENSOR_POWER_TYPE\x10\xeb\x62\x12)\n$CHANNEL_ATTRIBUTE_AI_FILTER_RESPONSE\x10\xf5\x62\x12)\n$CHANNEL_ATTRIBUTE_CI_FILTER_RESPONSE\x10\xb9\x63\x12,\n\'CHANNEL_ATTRIBUTE_CI_FILTER_DELAY_UNITS\x10\xbc\x63\x12\'\n\"CHANNEL_ATTRIBUTE_PWR_OUTPUT_STATE\x10\xd7\x63\x12/\n*CHANNEL_ATTRIBUTE_PWR_IDLE_OUTPUT_BEHAVIOR\x10\xd8\x63\x12\'\n\"CHANNEL_ATTRIBUTE_PWR_REMOTE_SENSE\x10\xdb\x63*\xbcH\n\x16\x43hannelDoubleAttribute\x12(\n$CHANNEL_DOUBLE_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\"\n\x1e\x43HANNEL_ATTRIBUTE_AI_IMPEDANCE\x10\x62\x12\'\n\"CHANNEL_ATTRIBUTE_AI_AC_EXCIT_FREQ\x10\x81\x02\x12\x1e\n\x19\x43HANNEL_ATTRIBUTE_AO_GAIN\x10\x98\x02\x12(\n#CHANNEL_ATTRIBUTE_AO_LOAD_IMPEDANCE\x10\xa1\x02\x12(\n#CHANNEL_ATTRIBUTE_CI_FREQ_MEAS_TIME\x10\xc5\x02\x12\x32\n-CHANNEL_ATTRIBUTE_CO_PULSE_FREQ_INITIAL_DELAY\x10\x99\x05\x12+\n&CHANNEL_ATTRIBUTE_AI_ACCEL_SENSITIVITY\x10\x92\r\x12#\n\x1e\x43HANNEL_ATTRIBUTE_AI_FREQ_HYST\x10\x94\x10\x12-\n(CHANNEL_ATTRIBUTE_AI_FREQ_THRESH_VOLTAGE\x10\x95\x10\x12\x33\n.CHANNEL_ATTRIBUTE_CI_ANG_ENCODER_INITIAL_ANGLE\x10\x81\x11\x12-\n(CHANNEL_ATTRIBUTE_CI_ENCODER_Z_INDEX_VAL\x10\x88\x11\x12*\n%CHANNEL_ATTRIBUTE_AI_RVDT_SENSITIVITY\x10\x83\x12\x12\x34\n/CHANNEL_ATTRIBUTE_CI_LIN_ENCODER_DIST_PER_PULSE\x10\x91\x12\x12\x31\n,CHANNEL_ATTRIBUTE_CI_LIN_ENCODER_INITIAL_POS\x10\x95\x12\x12*\n%CHANNEL_ATTRIBUTE_AI_LVDT_SENSITIVITY\x10\xb9\x12\x12\x31\n,CHANNEL_ATTRIBUTE_AI_STRAIN_GAGE_GAGE_FACTOR\x10\x94\x13\x12\x33\n.CHANNEL_ATTRIBUTE_AI_STRAIN_GAGE_POISSON_RATIO\x10\x98\x13\x12\x1f\n\x1a\x43HANNEL_ATTRIBUTE_AI_RTD_A\x10\x90 \x12\x1f\n\x1a\x43HANNEL_ATTRIBUTE_AI_RTD_B\x10\x91 \x12\x1f\n\x1a\x43HANNEL_ATTRIBUTE_AI_RTD_C\x10\x93 \x12 \n\x1b\x43HANNEL_ATTRIBUTE_AI_RTD_R0\x10\xb0 \x12)\n$CHANNEL_ATTRIBUTE_AI_THRMCPL_CJC_VAL\x10\xb6 \x12$\n\x1f\x43HANNEL_ATTRIBUTE_AI_THRMSTR_R1\x10\xe1 \x12(\n#CHANNEL_ATTRIBUTE_CO_PULSE_DUTY_CYC\x10\xf6\"\x12$\n\x1f\x43HANNEL_ATTRIBUTE_CO_PULSE_FREQ\x10\xf8\"\x12\x1d\n\x18\x43HANNEL_ATTRIBUTE_AO_MAX\x10\x86#\x12\x1d\n\x18\x43HANNEL_ATTRIBUTE_AO_MIN\x10\x87#\x12*\n%CHANNEL_ATTRIBUTE_AO_OUTPUT_IMPEDANCE\x10\x90)\x12\x30\n+CHANNEL_ATTRIBUTE_AI_MICROPHONE_SENSITIVITY\x10\xb6*\x12$\n\x1f\x43HANNEL_ATTRIBUTE_AI_RESOLUTION\x10\xe5.\x12\x1d\n\x18\x43HANNEL_ATTRIBUTE_AI_MAX\x10\xdd/\x12\x1d\n\x18\x43HANNEL_ATTRIBUTE_AI_MIN\x10\xde/\x12/\n*CHANNEL_ATTRIBUTE_AI_BRIDGE_NOM_RESISTANCE\x10\xec/\x12\x30\n+CHANNEL_ATTRIBUTE_AI_BRIDGE_INITIAL_VOLTAGE\x10\xed/\x12.\n)CHANNEL_ATTRIBUTE_AI_LEAD_WIRE_RESISTANCE\x10\xee/\x12\x32\n-CHANNEL_ATTRIBUTE_AI_CURRENT_SHUNT_RESISTANCE\x10\xf3/\x12#\n\x1e\x43HANNEL_ATTRIBUTE_AI_EXCIT_VAL\x10\xf5/\x12\x1f\n\x1a\x43HANNEL_ATTRIBUTE_AI_ATTEN\x10\x81\x30\x12-\n(CHANNEL_ATTRIBUTE_AI_LOWPASS_CUTOFF_FREQ\x10\x83\x30\x12.\n)CHANNEL_ATTRIBUTE_AI_HIGHPASS_CUTOFF_FREQ\x10\x87\x30\x12.\n)CHANNEL_ATTRIBUTE_AI_BANDPASS_CENTER_FREQ\x10\x8c\x30\x12(\n#CHANNEL_ATTRIBUTE_AI_BANDPASS_WIDTH\x10\x8e\x30\x12+\n&CHANNEL_ATTRIBUTE_AI_NOTCH_CENTER_FREQ\x10\x90\x30\x12%\n CHANNEL_ATTRIBUTE_AI_NOTCH_WIDTH\x10\x92\x30\x12\"\n\x1d\x43HANNEL_ATTRIBUTE_AI_RNG_HIGH\x10\x95\x30\x12!\n\x1c\x43HANNEL_ATTRIBUTE_AI_RNG_LOW\x10\x96\x30\x12\x1e\n\x19\x43HANNEL_ATTRIBUTE_AI_GAIN\x10\x98\x30\x12$\n\x1f\x43HANNEL_ATTRIBUTE_AO_RESOLUTION\x10\xac\x30\x12%\n CHANNEL_ATTRIBUTE_AO_DAC_RNG_LOW\x10\xad\x30\x12&\n!CHANNEL_ATTRIBUTE_AO_DAC_RNG_HIGH\x10\xae\x30\x12%\n CHANNEL_ATTRIBUTE_AO_DAC_REF_VAL\x10\xb2\x30\x12*\n%CHANNEL_ATTRIBUTE_AI_EXCIT_ACTUAL_VAL\x10\x83\x31\x12\x39\n4CHANNEL_ATTRIBUTE_AI_LOWPASS_SWITCH_CAP_EXT_CLK_FREQ\x10\x85\x31\x12\x1d\n\x18\x43HANNEL_ATTRIBUTE_CI_MAX\x10\x9c\x31\x12\x1d\n\x18\x43HANNEL_ATTRIBUTE_CI_MIN\x10\x9d\x31\x12+\n&CHANNEL_ATTRIBUTE_CI_CTR_TIMEBASE_RATE\x10\xb2\x31\x12)\n$CHANNEL_ATTRIBUTE_CO_PULSE_HIGH_TIME\x10\xba\x31\x12(\n#CHANNEL_ATTRIBUTE_CO_PULSE_LOW_TIME\x10\xbb\x31\x12\x32\n-CHANNEL_ATTRIBUTE_CO_PULSE_TIME_INITIAL_DELAY\x10\xbc\x31\x12+\n&CHANNEL_ATTRIBUTE_CO_CTR_TIMEBASE_RATE\x10\xc2\x31\x12#\n\x1e\x43HANNEL_ATTRIBUTE_AI_THRMSTR_A\x10\xc9\x31\x12#\n\x1e\x43HANNEL_ATTRIBUTE_AI_THRMSTR_C\x10\xca\x31\x12#\n\x1e\x43HANNEL_ATTRIBUTE_AI_THRMSTR_B\x10\xcb\x31\x12*\n%CHANNEL_ATTRIBUTE_CI_PERIOD_MEAS_TIME\x10\xad\x32\x12\x36\n1CHANNEL_ATTRIBUTE_AI_BRIDGE_SHUNT_CAL_GAIN_ADJUST\x10\xbf\x32\x12\x32\n-CHANNEL_ATTRIBUTE_DI_DIG_FLTR_MIN_PULSE_WIDTH\x10\xd7\x43\x12\x37\n2CHANNEL_ATTRIBUTE_CI_FREQ_DIG_FLTR_MIN_PULSE_WIDTH\x10\xe8\x43\x12\x35\n0CHANNEL_ATTRIBUTE_CI_FREQ_DIG_FLTR_TIMEBASE_RATE\x10\xea\x43\x12\x39\n4CHANNEL_ATTRIBUTE_CI_PERIOD_DIG_FLTR_MIN_PULSE_WIDTH\x10\xed\x43\x12\x37\n2CHANNEL_ATTRIBUTE_CI_PERIOD_DIG_FLTR_TIMEBASE_RATE\x10\xef\x43\x12H\nCCHANNEL_ATTRIBUTE_CI_COUNT_EDGES_COUNT_DIR_DIG_FLTR_MIN_PULSE_WIDTH\x10\xf2\x43\x12\x46\nACHANNEL_ATTRIBUTE_CI_COUNT_EDGES_COUNT_DIR_DIG_FLTR_TIMEBASE_RATE\x10\xf4\x43\x12>\n9CHANNEL_ATTRIBUTE_CI_COUNT_EDGES_DIG_FLTR_MIN_PULSE_WIDTH\x10\xf7\x43\x12<\n7CHANNEL_ATTRIBUTE_CI_COUNT_EDGES_DIG_FLTR_TIMEBASE_RATE\x10\xf9\x43\x12\x42\n=CHANNEL_ATTRIBUTE_CI_ENCODER_A_INPUT_DIG_FLTR_MIN_PULSE_WIDTH\x10\xfc\x43\x12@\n;CHANNEL_ATTRIBUTE_CI_ENCODER_A_INPUT_DIG_FLTR_TIMEBASE_RATE\x10\xfe\x43\x12\x42\n=CHANNEL_ATTRIBUTE_CI_ENCODER_B_INPUT_DIG_FLTR_MIN_PULSE_WIDTH\x10\x81\x44\x12@\n;CHANNEL_ATTRIBUTE_CI_ENCODER_B_INPUT_DIG_FLTR_TIMEBASE_RATE\x10\x83\x44\x12\x42\n=CHANNEL_ATTRIBUTE_CI_ENCODER_Z_INPUT_DIG_FLTR_MIN_PULSE_WIDTH\x10\x86\x44\x12@\n;CHANNEL_ATTRIBUTE_CI_ENCODER_Z_INPUT_DIG_FLTR_TIMEBASE_RATE\x10\x88\x44\x12>\n9CHANNEL_ATTRIBUTE_CI_PULSE_WIDTH_DIG_FLTR_MIN_PULSE_WIDTH\x10\x8b\x44\x12<\n7CHANNEL_ATTRIBUTE_CI_PULSE_WIDTH_DIG_FLTR_TIMEBASE_RATE\x10\x8d\x44\x12\x45\n@CHANNEL_ATTRIBUTE_CI_TWO_EDGE_SEP_FIRST_DIG_FLTR_MIN_PULSE_WIDTH\x10\x90\x44\x12\x43\n>CHANNEL_ATTRIBUTE_CI_TWO_EDGE_SEP_FIRST_DIG_FLTR_TIMEBASE_RATE\x10\x92\x44\x12\x46\nACHANNEL_ATTRIBUTE_CI_TWO_EDGE_SEP_SECOND_DIG_FLTR_MIN_PULSE_WIDTH\x10\x95\x44\x12\x44\n?CHANNEL_ATTRIBUTE_CI_TWO_EDGE_SEP_SECOND_DIG_FLTR_TIMEBASE_RATE\x10\x97\x44\x12>\n9CHANNEL_ATTRIBUTE_CI_SEMI_PERIOD_DIG_FLTR_MIN_PULSE_WIDTH\x10\x9a\x44\x12<\n7CHANNEL_ATTRIBUTE_CI_SEMI_PERIOD_DIG_FLTR_TIMEBASE_RATE\x10\x9c\x44\x12?\n:CHANNEL_ATTRIBUTE_AI_SOUND_PRESSURE_MAX_SOUND_PRESSURE_LVL\x10\xba\x44\x12(\n#CHANNEL_ATTRIBUTE_AO_DAC_OFFSET_VAL\x10\xd5\x44\x12?\n:CHANNEL_ATTRIBUTE_CI_CTR_TIMEBASE_DIG_FLTR_MIN_PULSE_WIDTH\x10\xf2\x44\x12=\n8CHANNEL_ATTRIBUTE_CI_CTR_TIMEBASE_DIG_FLTR_TIMEBASE_RATE\x10\xf4\x44\x12?\n:CHANNEL_ATTRIBUTE_CO_CTR_TIMEBASE_DIG_FLTR_MIN_PULSE_WIDTH\x10\xf7\x44\x12=\n8CHANNEL_ATTRIBUTE_CO_CTR_TIMEBASE_DIG_FLTR_TIMEBASE_RATE\x10\xf9\x44\x12(\n#CHANNEL_ATTRIBUTE_AI_VOLTAGE_DB_REF\x10\xb0S\x12/\n*CHANNEL_ATTRIBUTE_AI_SOUND_PRESSURE_DB_REF\x10\xb1S\x12&\n!CHANNEL_ATTRIBUTE_AI_ACCEL_DB_REF\x10\xb2S\x12\'\n\"CHANNEL_ATTRIBUTE_AO_FUNC_GEN_FREQ\x10\x99T\x12,\n\'CHANNEL_ATTRIBUTE_AO_FUNC_GEN_AMPLITUDE\x10\x9aT\x12)\n$CHANNEL_ATTRIBUTE_AO_FUNC_GEN_OFFSET\x10\x9bT\x12\x34\n/CHANNEL_ATTRIBUTE_AO_FUNC_GEN_SQUARE_DUTY_CYCLE\x10\x9cT\x12/\n*CHANNEL_ATTRIBUTE_AO_VOLTAGE_CURRENT_LIMIT\x10\x9dT\x12/\n*CHANNEL_ATTRIBUTE_AO_FUNC_GEN_FM_DEVIATION\x10\xa3T\x12+\n&CHANNEL_ATTRIBUTE_DO_OVERCURRENT_LIMIT\x10\x85U\x12\x35\n0CHANNEL_ATTRIBUTE_DO_OVERCURRENT_REENABLE_PERIOD\x10\x87U\x12%\n CHANNEL_ATTRIBUTE_AI_PROBE_ATTEN\x10\x88U\x12#\n\x1e\x43HANNEL_ATTRIBUTE_AI_DC_OFFSET\x10\x89U\x12=\n8CHANNEL_ATTRIBUTE_AI_EDDY_CURRENT_PROX_PROBE_SENSITIVITY\x10\xbeU\x12\x30\n+CHANNEL_ATTRIBUTE_DI_DIG_FLTR_TIMEBASE_RATE\x10\xd5]\x12=\n8CHANNEL_ATTRIBUTE_CI_PULSE_FREQ_DIG_FLTR_MIN_PULSE_WIDTH\x10\x87^\x12;\n6CHANNEL_ATTRIBUTE_CI_PULSE_FREQ_DIG_FLTR_TIMEBASE_RATE\x10\x89^\x12=\n8CHANNEL_ATTRIBUTE_CI_PULSE_TIME_DIG_FLTR_MIN_PULSE_WIDTH\x10\x8f^\x12;\n6CHANNEL_ATTRIBUTE_CI_PULSE_TIME_DIG_FLTR_TIMEBASE_RATE\x10\x91^\x12>\n9CHANNEL_ATTRIBUTE_CI_PULSE_TICKS_DIG_FLTR_MIN_PULSE_WIDTH\x10\x97^\x12<\n7CHANNEL_ATTRIBUTE_CI_PULSE_TICKS_DIG_FLTR_TIMEBASE_RATE\x10\x99^\x12\x41\nCHANNEL_ATTRIBUTE_AI_BRIDGE_TWO_POINT_LIN_FIRST_ELECTRICAL_VAL\x10\x8a_\x12\x41\nCHANNEL_ATTRIBUTE_CI_COUNT_EDGES_GATE_DIG_FLTR_MIN_PULSE_WIDTH\x10\xf2\x61\x12\x41\n\n9CHANNEL_ATTRIBUTE_CI_COUNT_EDGES_COUNT_DIR_THRESH_VOLTAGE\x10\xb1\x63\x12\x34\n/CHANNEL_ATTRIBUTE_CI_COUNT_EDGES_COUNT_DIR_HYST\x10\xb2\x63\x12@\n;CHANNEL_ATTRIBUTE_CI_COUNT_EDGES_COUNT_RESET_THRESH_VOLTAGE\x10\xb3\x63\x12\x36\n1CHANNEL_ATTRIBUTE_CI_COUNT_EDGES_COUNT_RESET_HYST\x10\xb4\x63\x12\x39\n4CHANNEL_ATTRIBUTE_CI_COUNT_EDGES_GATE_THRESH_VOLTAGE\x10\xb5\x63\x12/\n*CHANNEL_ATTRIBUTE_CI_COUNT_EDGES_GATE_HYST\x10\xb6\x63\x12%\n CHANNEL_ATTRIBUTE_CI_FILTER_FREQ\x10\xb8\x63\x12&\n!CHANNEL_ATTRIBUTE_CI_FILTER_DELAY\x10\xbb\x63\x12.\n)CHANNEL_ATTRIBUTE_AO_FUNC_GEN_START_PHASE\x10\xc4\x63\x12,\n\'CHANNEL_ATTRIBUTE_AO_COMMON_MODE_OFFSET\x10\xcc\x63\x12+\n&CHANNEL_ATTRIBUTE_PWR_VOLTAGE_SETPOINT\x10\xd4\x63\x12+\n&CHANNEL_ATTRIBUTE_PWR_CURRENT_SETPOINT\x10\xd5\x63*\xd3\xf6\x01\n\x15\x43hannelResetAttribute\x12\'\n#CHANNEL_RESET_ATTRIBUTE_UNSPECIFIED\x10\x00\x12(\n$CHANNEL_RESET_ATTRIBUTE_AI_IMPEDANCE\x10\x62\x12\'\n#CHANNEL_RESET_ATTRIBUTE_AI_COUPLING\x10\x64\x12,\n(CHANNEL_RESET_ATTRIBUTE_AI_DITHER_ENABLE\x10h\x12*\n%CHANNEL_RESET_ATTRIBUTE_AI_BRIDGE_CFG\x10\x87\x01\x12\x37\n2CHANNEL_RESET_ATTRIBUTE_AI_BRIDGE_SHUNT_CAL_ENABLE\x10\x94\x01\x12-\n(CHANNEL_RESET_ATTRIBUTE_AI_AC_EXCIT_FREQ\x10\x81\x02\x12\x34\n/CHANNEL_RESET_ATTRIBUTE_AI_AC_EXCIT_SYNC_ENABLE\x10\x82\x02\x12$\n\x1f\x43HANNEL_RESET_ATTRIBUTE_AO_GAIN\x10\x98\x02\x12.\n)CHANNEL_RESET_ATTRIBUTE_AO_LOAD_IMPEDANCE\x10\xa1\x02\x12\x33\n.CHANNEL_RESET_ATTRIBUTE_AO_DAC_REF_CONN_TO_GND\x10\xb0\x02\x12+\n&CHANNEL_RESET_ATTRIBUTE_AO_DAC_REF_SRC\x10\xb2\x02\x12/\n*CHANNEL_RESET_ATTRIBUTE_AO_REGLITCH_ENABLE\x10\xb3\x02\x12.\n)CHANNEL_RESET_ATTRIBUTE_AO_DATA_XFER_MECH\x10\xb4\x02\x12\x38\n3CHANNEL_RESET_ATTRIBUTE_CI_CTR_TIMEBASE_ACTIVE_EDGE\x10\xc2\x02\x12\x30\n+CHANNEL_RESET_ATTRIBUTE_CI_CTR_TIMEBASE_SRC\x10\xc3\x02\x12.\n)CHANNEL_RESET_ATTRIBUTE_CI_FREQ_MEAS_METH\x10\xc4\x02\x12.\n)CHANNEL_RESET_ATTRIBUTE_CI_FREQ_MEAS_TIME\x10\xc5\x02\x12(\n#CHANNEL_RESET_ATTRIBUTE_CI_FREQ_DIV\x10\xc7\x02\x12.\n)CHANNEL_RESET_ATTRIBUTE_CI_DATA_XFER_MECH\x10\x80\x04\x12-\n(CHANNEL_RESET_ATTRIBUTE_CO_AUTO_INCR_CNT\x10\x95\x05\x12\x39\n4CHANNEL_RESET_ATTRIBUTE_CO_PULSE_TICKS_INITIAL_DELAY\x10\x98\x05\x12\x38\n3CHANNEL_RESET_ATTRIBUTE_CO_PULSE_FREQ_INITIAL_DELAY\x10\x99\x05\x12\x30\n+CHANNEL_RESET_ATTRIBUTE_CO_CTR_TIMEBASE_SRC\x10\xb9\x06\x12\x38\n3CHANNEL_RESET_ATTRIBUTE_CO_CTR_TIMEBASE_ACTIVE_EDGE\x10\xc1\x06\x12+\n&CHANNEL_RESET_ATTRIBUTE_AI_ACCEL_UNITS\x10\xf3\x0c\x12\x31\n,CHANNEL_RESET_ATTRIBUTE_AI_ACCEL_SENSITIVITY\x10\x92\r\x12/\n*CHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_DIR\x10\x96\r\x12\x37\n2CHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_ACTIVE_EDGE\x10\x97\r\x12\x37\n2CHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_INITIAL_CNT\x10\x98\r\x12-\n(CHANNEL_RESET_ATTRIBUTE_AI_CURRENT_UNITS\x10\x81\x0e\x12,\n\'CHANNEL_RESET_ATTRIBUTE_DI_INVERT_LINES\x10\x93\x0f\x12\x32\n-CHANNEL_RESET_ATTRIBUTE_CI_FREQ_STARTING_EDGE\x10\x99\x0f\x12*\n%CHANNEL_RESET_ATTRIBUTE_AI_FREQ_UNITS\x10\x86\x10\x12)\n$CHANNEL_RESET_ATTRIBUTE_AI_FREQ_HYST\x10\x94\x10\x12\x33\n.CHANNEL_RESET_ATTRIBUTE_AI_FREQ_THRESH_VOLTAGE\x10\x95\x10\x12\x31\n,CHANNEL_RESET_ATTRIBUTE_CI_PULSE_WIDTH_UNITS\x10\xa3\x10\x12\x39\n4CHANNEL_RESET_ATTRIBUTE_CI_PULSE_WIDTH_STARTING_EDGE\x10\xa5\x10\x12\x37\n2CHANNEL_RESET_ATTRIBUTE_CI_TWO_EDGE_SEP_FIRST_EDGE\x10\xb3\x10\x12\x38\n3CHANNEL_RESET_ATTRIBUTE_CI_TWO_EDGE_SEP_SECOND_EDGE\x10\xb4\x10\x12\x34\n/CHANNEL_RESET_ATTRIBUTE_CI_PERIOD_STARTING_EDGE\x10\xd2\x10\x12:\n5CHANNEL_RESET_ATTRIBUTE_CI_ANG_ENCODER_PULSES_PER_REV\x10\xf5\x10\x12*\n%CHANNEL_RESET_ATTRIBUTE_AI_RVDT_UNITS\x10\xf7\x10\x12\x39\n4CHANNEL_RESET_ATTRIBUTE_CI_ANG_ENCODER_INITIAL_ANGLE\x10\x81\x11\x12\x33\n.CHANNEL_RESET_ATTRIBUTE_CI_ENCODER_Z_INDEX_VAL\x10\x88\x11\x12\x35\n0CHANNEL_RESET_ATTRIBUTE_CI_ENCODER_Z_INDEX_PHASE\x10\x89\x11\x12\x36\n1CHANNEL_RESET_ATTRIBUTE_CI_ENCODER_Z_INDEX_ENABLE\x10\x90\x11\x12\x30\n+CHANNEL_RESET_ATTRIBUTE_AI_RVDT_SENSITIVITY\x10\x83\x12\x12*\n%CHANNEL_RESET_ATTRIBUTE_AI_LVDT_UNITS\x10\x90\x12\x12:\n5CHANNEL_RESET_ATTRIBUTE_CI_LIN_ENCODER_DIST_PER_PULSE\x10\x91\x12\x12\x37\n2CHANNEL_RESET_ATTRIBUTE_CI_LIN_ENCODER_INITIAL_POS\x10\x95\x12\x12\x30\n+CHANNEL_RESET_ATTRIBUTE_AI_LVDT_SENSITIVITY\x10\xb9\x12\x12\x30\n+CHANNEL_RESET_ATTRIBUTE_AI_RESISTANCE_UNITS\x10\xd5\x12\x12,\n\'CHANNEL_RESET_ATTRIBUTE_AI_STRAIN_UNITS\x10\x81\x13\x12/\n*CHANNEL_RESET_ATTRIBUTE_AI_STRAIN_GAGE_CFG\x10\x82\x13\x12\x37\n2CHANNEL_RESET_ATTRIBUTE_AI_STRAIN_GAGE_GAGE_FACTOR\x10\x94\x13\x12\x39\n4CHANNEL_RESET_ATTRIBUTE_AI_STRAIN_GAGE_POISSON_RATIO\x10\x98\x13\x12%\n CHANNEL_RESET_ATTRIBUTE_AI_RTD_A\x10\x90 \x12%\n CHANNEL_RESET_ATTRIBUTE_AI_RTD_B\x10\x91 \x12%\n CHANNEL_RESET_ATTRIBUTE_AI_RTD_C\x10\x93 \x12&\n!CHANNEL_RESET_ATTRIBUTE_AI_RTD_R0\x10\xb0 \x12(\n#CHANNEL_RESET_ATTRIBUTE_AI_RTD_TYPE\x10\xb2 \x12*\n%CHANNEL_RESET_ATTRIBUTE_AI_TEMP_UNITS\x10\xb3 \x12/\n*CHANNEL_RESET_ATTRIBUTE_AI_THRMCPL_CJC_VAL\x10\xb6 \x12,\n\'CHANNEL_RESET_ATTRIBUTE_AI_THRMCPL_TYPE\x10\xd0 \x12*\n%CHANNEL_RESET_ATTRIBUTE_AI_THRMSTR_R1\x10\xe1 \x12/\n*CHANNEL_RESET_ATTRIBUTE_CI_GPS_SYNC_METHOD\x10\x92!\x12,\n\'CHANNEL_RESET_ATTRIBUTE_CI_GPS_SYNC_SRC\x10\x93!\x12-\n(CHANNEL_RESET_ATTRIBUTE_AI_VOLTAGE_UNITS\x10\x94!\x12(\n#CHANNEL_RESET_ATTRIBUTE_AI_TERM_CFG\x10\x97!\x12-\n(CHANNEL_RESET_ATTRIBUTE_AO_CURRENT_UNITS\x10\x89\"\x12,\n\'CHANNEL_RESET_ATTRIBUTE_DO_INVERT_LINES\x10\xb3\"\x12\x31\n,CHANNEL_RESET_ATTRIBUTE_DO_OUTPUT_DRIVE_TYPE\x10\xb7\"\x12\x30\n+CHANNEL_RESET_ATTRIBUTE_CO_PULSE_HIGH_TICKS\x10\xe9\"\x12\x30\n+CHANNEL_RESET_ATTRIBUTE_CO_PULSE_IDLE_STATE\x10\xf0\"\x12/\n*CHANNEL_RESET_ATTRIBUTE_CO_PULSE_LOW_TICKS\x10\xf1\"\x12.\n)CHANNEL_RESET_ATTRIBUTE_CO_PULSE_DUTY_CYC\x10\xf6\"\x12*\n%CHANNEL_RESET_ATTRIBUTE_CO_PULSE_FREQ\x10\xf8\"\x12-\n(CHANNEL_RESET_ATTRIBUTE_AO_VOLTAGE_UNITS\x10\x84#\x12#\n\x1e\x43HANNEL_RESET_ATTRIBUTE_AO_MAX\x10\x86#\x12#\n\x1e\x43HANNEL_RESET_ATTRIBUTE_AO_MIN\x10\x87#\x12\x31\n,CHANNEL_RESET_ATTRIBUTE_AO_CUSTOM_SCALE_NAME\x10\x88#\x12\x30\n+CHANNEL_RESET_ATTRIBUTE_AO_OUTPUT_IMPEDANCE\x10\x90)\x12\x34\n/CHANNEL_RESET_ATTRIBUTE_AI_SOUND_PRESSURE_UNITS\x10\xa8*\x12\x36\n1CHANNEL_RESET_ATTRIBUTE_AI_MICROPHONE_SENSITIVITY\x10\xb6*\x12.\n)CHANNEL_RESET_ATTRIBUTE_AI_AUTO_ZERO_MODE\x10\xe0.\x12#\n\x1e\x43HANNEL_RESET_ATTRIBUTE_AI_MAX\x10\xdd/\x12#\n\x1e\x43HANNEL_RESET_ATTRIBUTE_AI_MIN\x10\xde/\x12\x31\n,CHANNEL_RESET_ATTRIBUTE_AI_CUSTOM_SCALE_NAME\x10\xe0/\x12\x33\n.CHANNEL_RESET_ATTRIBUTE_AI_VOLTAGE_ACRMS_UNITS\x10\xe2/\x12\x33\n.CHANNEL_RESET_ATTRIBUTE_AI_CURRENT_ACRMS_UNITS\x10\xe3/\x12\x35\n0CHANNEL_RESET_ATTRIBUTE_AI_BRIDGE_NOM_RESISTANCE\x10\xec/\x12\x36\n1CHANNEL_RESET_ATTRIBUTE_AI_BRIDGE_INITIAL_VOLTAGE\x10\xed/\x12\x34\n/CHANNEL_RESET_ATTRIBUTE_AI_LEAD_WIRE_RESISTANCE\x10\xee/\x12\x39\n4CHANNEL_RESET_ATTRIBUTE_AI_BRIDGE_BALANCE_COARSE_POT\x10\xf1/\x12\x31\n,CHANNEL_RESET_ATTRIBUTE_AI_CURRENT_SHUNT_LOC\x10\xf2/\x12\x38\n3CHANNEL_RESET_ATTRIBUTE_AI_CURRENT_SHUNT_RESISTANCE\x10\xf3/\x12)\n$CHANNEL_RESET_ATTRIBUTE_AI_EXCIT_SRC\x10\xf4/\x12)\n$CHANNEL_RESET_ATTRIBUTE_AI_EXCIT_VAL\x10\xf5/\x12\x38\n3CHANNEL_RESET_ATTRIBUTE_AI_EXCIT_VOLTAGE_OR_CURRENT\x10\xf6/\x12.\n)CHANNEL_RESET_ATTRIBUTE_AI_EXCIT_D_COR_AC\x10\xfb/\x12\x35\n0CHANNEL_RESET_ATTRIBUTE_AI_EXCIT_USE_FOR_SCALING\x10\xfc/\x12%\n CHANNEL_RESET_ATTRIBUTE_AI_ATTEN\x10\x81\x30\x12.\n)CHANNEL_RESET_ATTRIBUTE_AI_LOWPASS_ENABLE\x10\x82\x30\x12\x33\n.CHANNEL_RESET_ATTRIBUTE_AI_LOWPASS_CUTOFF_FREQ\x10\x83\x30\x12/\n*CHANNEL_RESET_ATTRIBUTE_AI_HIGHPASS_ENABLE\x10\x86\x30\x12\x34\n/CHANNEL_RESET_ATTRIBUTE_AI_HIGHPASS_CUTOFF_FREQ\x10\x87\x30\x12-\n(CHANNEL_RESET_ATTRIBUTE_AI_HIGHPASS_TYPE\x10\x88\x30\x12.\n)CHANNEL_RESET_ATTRIBUTE_AI_HIGHPASS_ORDER\x10\x89\x30\x12/\n*CHANNEL_RESET_ATTRIBUTE_AI_BANDPASS_ENABLE\x10\x8b\x30\x12\x34\n/CHANNEL_RESET_ATTRIBUTE_AI_BANDPASS_CENTER_FREQ\x10\x8c\x30\x12-\n(CHANNEL_RESET_ATTRIBUTE_AI_BANDPASS_TYPE\x10\x8d\x30\x12.\n)CHANNEL_RESET_ATTRIBUTE_AI_BANDPASS_WIDTH\x10\x8e\x30\x12\x31\n,CHANNEL_RESET_ATTRIBUTE_AI_NOTCH_CENTER_FREQ\x10\x90\x30\x12*\n%CHANNEL_RESET_ATTRIBUTE_AI_NOTCH_TYPE\x10\x91\x30\x12+\n&CHANNEL_RESET_ATTRIBUTE_AI_NOTCH_WIDTH\x10\x92\x30\x12(\n#CHANNEL_RESET_ATTRIBUTE_AI_RNG_HIGH\x10\x95\x30\x12\'\n\"CHANNEL_RESET_ATTRIBUTE_AI_RNG_LOW\x10\x96\x30\x12$\n\x1f\x43HANNEL_RESET_ATTRIBUTE_AI_GAIN\x10\x98\x30\x12\x34\n/CHANNEL_RESET_ATTRIBUTE_AI_SAMP_AND_HOLD_ENABLE\x10\x9a\x30\x12.\n)CHANNEL_RESET_ATTRIBUTE_AI_DATA_XFER_MECH\x10\xa1\x30\x12\x30\n+CHANNEL_RESET_ATTRIBUTE_AO_RESOLUTION_UNITS\x10\xab\x30\x12+\n&CHANNEL_RESET_ATTRIBUTE_AO_DAC_RNG_LOW\x10\xad\x30\x12,\n\'CHANNEL_RESET_ATTRIBUTE_AO_DAC_RNG_HIGH\x10\xae\x30\x12\x39\n4CHANNEL_RESET_ATTRIBUTE_AO_DAC_REF_ALLOW_CONN_TO_GND\x10\xb0\x30\x12+\n&CHANNEL_RESET_ATTRIBUTE_AO_DAC_REF_VAL\x10\xb2\x30\x12\x33\n.CHANNEL_RESET_ATTRIBUTE_AO_USE_ONLY_ON_BRD_MEM\x10\xba\x30\x12\x32\n-CHANNEL_RESET_ATTRIBUTE_AO_DATA_XFER_REQ_COND\x10\xbc\x30\x12.\n)CHANNEL_RESET_ATTRIBUTE_AI_RESISTANCE_CFG\x10\x81\x31\x12\x30\n+CHANNEL_RESET_ATTRIBUTE_AI_EXCIT_ACTUAL_VAL\x10\x83\x31\x12:\n5CHANNEL_RESET_ATTRIBUTE_AI_LOWPASS_SWITCH_CAP_CLK_SRC\x10\x84\x31\x12?\n:CHANNEL_RESET_ATTRIBUTE_AI_LOWPASS_SWITCH_CAP_EXT_CLK_FREQ\x10\x85\x31\x12>\n9CHANNEL_RESET_ATTRIBUTE_AI_LOWPASS_SWITCH_CAP_EXT_CLK_DIV\x10\x86\x31\x12>\n9CHANNEL_RESET_ATTRIBUTE_AI_LOWPASS_SWITCH_CAP_OUT_CLK_DIV\x10\x87\x31\x12\x32\n-CHANNEL_RESET_ATTRIBUTE_AI_DATA_XFER_REQ_COND\x10\x8b\x31\x12.\n)CHANNEL_RESET_ATTRIBUTE_AI_MEM_MAP_ENABLE\x10\x8c\x31\x12(\n#CHANNEL_RESET_ATTRIBUTE_AO_TERM_CFG\x10\x8e\x31\x12.\n)CHANNEL_RESET_ATTRIBUTE_AO_MEM_MAP_ENABLE\x10\x8f\x31\x12(\n#CHANNEL_RESET_ATTRIBUTE_DI_TRISTATE\x10\x90\x31\x12#\n\x1e\x43HANNEL_RESET_ATTRIBUTE_CI_MAX\x10\x9c\x31\x12#\n\x1e\x43HANNEL_RESET_ATTRIBUTE_CI_MIN\x10\x9d\x31\x12\x31\n,CHANNEL_RESET_ATTRIBUTE_CI_CUSTOM_SCALE_NAME\x10\x9e\x31\x12*\n%CHANNEL_RESET_ATTRIBUTE_CI_FREQ_UNITS\x10\xa1\x31\x12)\n$CHANNEL_RESET_ATTRIBUTE_CI_FREQ_TERM\x10\xa2\x31\x12,\n\'CHANNEL_RESET_ATTRIBUTE_CI_PERIOD_UNITS\x10\xa3\x31\x12+\n&CHANNEL_RESET_ATTRIBUTE_CI_PERIOD_TERM\x10\xa4\x31\x12\x31\n,CHANNEL_RESET_ATTRIBUTE_CI_ANG_ENCODER_UNITS\x10\xa6\x31\x12\x31\n,CHANNEL_RESET_ATTRIBUTE_CI_LIN_ENCODER_UNITS\x10\xa9\x31\x12\x30\n+CHANNEL_RESET_ATTRIBUTE_CI_PULSE_WIDTH_TERM\x10\xaa\x31\x12\x32\n-CHANNEL_RESET_ATTRIBUTE_CI_TWO_EDGE_SEP_UNITS\x10\xac\x31\x12\x37\n2CHANNEL_RESET_ATTRIBUTE_CI_TWO_EDGE_SEP_FIRST_TERM\x10\xad\x31\x12\x38\n3CHANNEL_RESET_ATTRIBUTE_CI_TWO_EDGE_SEP_SECOND_TERM\x10\xae\x31\x12\x31\n,CHANNEL_RESET_ATTRIBUTE_CI_SEMI_PERIOD_UNITS\x10\xaf\x31\x12\x30\n+CHANNEL_RESET_ATTRIBUTE_CI_SEMI_PERIOD_TERM\x10\xb0\x31\x12\x31\n,CHANNEL_RESET_ATTRIBUTE_CI_CTR_TIMEBASE_RATE\x10\xb2\x31\x12@\n;CHANNEL_RESET_ATTRIBUTE_CI_CTR_TIMEBASE_MASTER_TIMEBASE_DIV\x10\xb3\x31\x12/\n*CHANNEL_RESET_ATTRIBUTE_CO_PULSE_HIGH_TIME\x10\xba\x31\x12.\n)CHANNEL_RESET_ATTRIBUTE_CO_PULSE_LOW_TIME\x10\xbb\x31\x12\x38\n3CHANNEL_RESET_ATTRIBUTE_CO_PULSE_TIME_INITIAL_DELAY\x10\xbc\x31\x12\x31\n,CHANNEL_RESET_ATTRIBUTE_CO_CTR_TIMEBASE_RATE\x10\xc2\x31\x12@\n;CHANNEL_RESET_ATTRIBUTE_CO_CTR_TIMEBASE_MASTER_TIMEBASE_DIV\x10\xc3\x31\x12\x30\n+CHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_TERM\x10\xc7\x31\x12)\n$CHANNEL_RESET_ATTRIBUTE_AI_THRMSTR_A\x10\xc9\x31\x12)\n$CHANNEL_RESET_ATTRIBUTE_AI_THRMSTR_C\x10\xca\x31\x12)\n$CHANNEL_RESET_ATTRIBUTE_AI_THRMSTR_B\x10\xcb\x31\x12\x32\n-CHANNEL_RESET_ATTRIBUTE_AI_AC_EXCIT_WIRE_MODE\x10\xcd\x31\x12\x30\n+CHANNEL_RESET_ATTRIBUTE_CO_PULSE_FREQ_UNITS\x10\xd5\x31\x12\x30\n+CHANNEL_RESET_ATTRIBUTE_CO_PULSE_TIME_UNITS\x10\xd6\x31\x12*\n%CHANNEL_RESET_ATTRIBUTE_CO_PULSE_TERM\x10\xe1\x31\x12(\n#CHANNEL_RESET_ATTRIBUTE_DO_TRISTATE\x10\xf3\x31\x12\x37\n2CHANNEL_RESET_ATTRIBUTE_AI_BRIDGE_BALANCE_FINE_POT\x10\xf4\x31\x12\x34\n/CHANNEL_RESET_ATTRIBUTE_AI_FORCE_READ_FROM_CHAN\x10\xf8\x31\x12\'\n\"CHANNEL_RESET_ATTRIBUTE_CHAN_DESCR\x10\xa6\x32\x12\x30\n+CHANNEL_RESET_ATTRIBUTE_CI_PERIOD_MEAS_METH\x10\xac\x32\x12\x30\n+CHANNEL_RESET_ATTRIBUTE_CI_PERIOD_MEAS_TIME\x10\xad\x32\x12*\n%CHANNEL_RESET_ATTRIBUTE_CI_PERIOD_DIV\x10\xae\x32\x12<\n7CHANNEL_RESET_ATTRIBUTE_AI_BRIDGE_SHUNT_CAL_GAIN_ADJUST\x10\xbf\x32\x12\x35\n0CHANNEL_RESET_ATTRIBUTE_AI_EXCIT_USE_MULTIPLEXED\x10\x80\x43\x12)\n$CHANNEL_RESET_ATTRIBUTE_AI_INPUT_SRC\x10\x98\x43\x12\x36\n1CHANNEL_RESET_ATTRIBUTE_AI_LVDT_SENSITIVITY_UNITS\x10\x9a\x43\x12\x36\n1CHANNEL_RESET_ATTRIBUTE_AI_RVDT_SENSITIVITY_UNITS\x10\x9b\x43\x12\x37\n2CHANNEL_RESET_ATTRIBUTE_AI_ACCEL_SENSITIVITY_UNITS\x10\x9c\x43\x12\x34\n/CHANNEL_RESET_ATTRIBUTE_CI_ENCODER_A_INPUT_TERM\x10\x9d\x43\x12\x34\n/CHANNEL_RESET_ATTRIBUTE_CI_ENCODER_B_INPUT_TERM\x10\x9e\x43\x12\x34\n/CHANNEL_RESET_ATTRIBUTE_CI_ENCODER_Z_INPUT_TERM\x10\x9f\x43\x12\x31\n,CHANNEL_RESET_ATTRIBUTE_CI_DUP_COUNT_PREVENT\x10\xac\x43\x12\x37\n2CHANNEL_RESET_ATTRIBUTE_AI_BRIDGE_SHUNT_CAL_SELECT\x10\xd5\x43\x12/\n*CHANNEL_RESET_ATTRIBUTE_DI_DIG_FLTR_ENABLE\x10\xd6\x43\x12\x38\n3CHANNEL_RESET_ATTRIBUTE_DI_DIG_FLTR_MIN_PULSE_WIDTH\x10\xd7\x43\x12\x34\n/CHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_DIR_TERM\x10\xe1\x43\x12\x35\n0CHANNEL_RESET_ATTRIBUTE_CI_ENCODER_DECODING_TYPE\x10\xe6\x43\x12\x34\n/CHANNEL_RESET_ATTRIBUTE_CI_FREQ_DIG_FLTR_ENABLE\x10\xe7\x43\x12=\n8CHANNEL_RESET_ATTRIBUTE_CI_FREQ_DIG_FLTR_MIN_PULSE_WIDTH\x10\xe8\x43\x12:\n5CHANNEL_RESET_ATTRIBUTE_CI_FREQ_DIG_FLTR_TIMEBASE_SRC\x10\xe9\x43\x12;\n6CHANNEL_RESET_ATTRIBUTE_CI_FREQ_DIG_FLTR_TIMEBASE_RATE\x10\xea\x43\x12\x34\n/CHANNEL_RESET_ATTRIBUTE_CI_FREQ_DIG_SYNC_ENABLE\x10\xeb\x43\x12\x36\n1CHANNEL_RESET_ATTRIBUTE_CI_PERIOD_DIG_FLTR_ENABLE\x10\xec\x43\x12?\n:CHANNEL_RESET_ATTRIBUTE_CI_PERIOD_DIG_FLTR_MIN_PULSE_WIDTH\x10\xed\x43\x12<\n7CHANNEL_RESET_ATTRIBUTE_CI_PERIOD_DIG_FLTR_TIMEBASE_SRC\x10\xee\x43\x12=\n8CHANNEL_RESET_ATTRIBUTE_CI_PERIOD_DIG_FLTR_TIMEBASE_RATE\x10\xef\x43\x12\x36\n1CHANNEL_RESET_ATTRIBUTE_CI_PERIOD_DIG_SYNC_ENABLE\x10\xf0\x43\x12\x45\n@CHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_COUNT_DIR_DIG_FLTR_ENABLE\x10\xf1\x43\x12N\nICHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_COUNT_DIR_DIG_FLTR_MIN_PULSE_WIDTH\x10\xf2\x43\x12K\nFCHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_COUNT_DIR_DIG_FLTR_TIMEBASE_SRC\x10\xf3\x43\x12L\nGCHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_COUNT_DIR_DIG_FLTR_TIMEBASE_RATE\x10\xf4\x43\x12\x45\n@CHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_COUNT_DIR_DIG_SYNC_ENABLE\x10\xf5\x43\x12;\n6CHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_DIG_FLTR_ENABLE\x10\xf6\x43\x12\x44\n?CHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_DIG_FLTR_MIN_PULSE_WIDTH\x10\xf7\x43\x12\x41\nCHANNEL_RESET_ATTRIBUTE_CI_TWO_EDGE_SEP_SECOND_DIG_FLTR_ENABLE\x10\x94\x44\x12L\nGCHANNEL_RESET_ATTRIBUTE_CI_TWO_EDGE_SEP_SECOND_DIG_FLTR_MIN_PULSE_WIDTH\x10\x95\x44\x12I\nDCHANNEL_RESET_ATTRIBUTE_CI_TWO_EDGE_SEP_SECOND_DIG_FLTR_TIMEBASE_SRC\x10\x96\x44\x12J\nECHANNEL_RESET_ATTRIBUTE_CI_TWO_EDGE_SEP_SECOND_DIG_FLTR_TIMEBASE_RATE\x10\x97\x44\x12\x43\n>CHANNEL_RESET_ATTRIBUTE_CI_TWO_EDGE_SEP_SECOND_DIG_SYNC_ENABLE\x10\x98\x44\x12;\n6CHANNEL_RESET_ATTRIBUTE_CI_SEMI_PERIOD_DIG_FLTR_ENABLE\x10\x99\x44\x12\x44\n?CHANNEL_RESET_ATTRIBUTE_CI_SEMI_PERIOD_DIG_FLTR_MIN_PULSE_WIDTH\x10\x9a\x44\x12\x41\nCHANNEL_RESET_ATTRIBUTE_CI_CTR_TIMEBASE_DIG_FLTR_TIMEBASE_RATE\x10\xf4\x44\x12<\n7CHANNEL_RESET_ATTRIBUTE_CI_CTR_TIMEBASE_DIG_SYNC_ENABLE\x10\xf5\x44\x12<\n7CHANNEL_RESET_ATTRIBUTE_CO_CTR_TIMEBASE_DIG_FLTR_ENABLE\x10\xf6\x44\x12\x45\n@CHANNEL_RESET_ATTRIBUTE_CO_CTR_TIMEBASE_DIG_FLTR_MIN_PULSE_WIDTH\x10\xf7\x44\x12\x42\n=CHANNEL_RESET_ATTRIBUTE_CO_CTR_TIMEBASE_DIG_FLTR_TIMEBASE_SRC\x10\xf8\x44\x12\x43\n>CHANNEL_RESET_ATTRIBUTE_CO_CTR_TIMEBASE_DIG_FLTR_TIMEBASE_RATE\x10\xf9\x44\x12<\n7CHANNEL_RESET_ATTRIBUTE_CO_CTR_TIMEBASE_DIG_SYNC_ENABLE\x10\xfa\x44\x12?\n:CHANNEL_RESET_ATTRIBUTE_AI_ENHANCED_ALIAS_REJECTION_ENABLE\x10\x94\x45\x12\x33\n.CHANNEL_RESET_ATTRIBUTE_AI_CHAN_CAL_ENABLE_CAL\x10\x98\x45\x12\x39\n4CHANNEL_RESET_ATTRIBUTE_AI_CHAN_CAL_APPLY_CAL_IF_EXP\x10\x99\x45\x12\x33\n.CHANNEL_RESET_ATTRIBUTE_AI_CHAN_CAL_SCALE_TYPE\x10\x9c\x45\x12>\n9CHANNEL_RESET_ATTRIBUTE_AI_CHAN_CAL_TABLE_PRE_SCALED_VALS\x10\x9d\x45\x12:\n5CHANNEL_RESET_ATTRIBUTE_AI_CHAN_CAL_TABLE_SCALED_VALS\x10\x9e\x45\x12;\n6CHANNEL_RESET_ATTRIBUTE_AI_CHAN_CAL_POLY_FORWARD_COEFF\x10\x9f\x45\x12;\n6CHANNEL_RESET_ATTRIBUTE_AI_CHAN_CAL_POLY_REVERSE_COEFF\x10\xa0\x45\x12\x37\n2CHANNEL_RESET_ATTRIBUTE_AI_CHAN_CAL_VERIF_REF_VALS\x10\xa1\x45\x12\x37\n2CHANNEL_RESET_ATTRIBUTE_AI_CHAN_CAL_VERIF_ACQ_VALS\x10\xa2\x45\x12\x36\n1CHANNEL_RESET_ATTRIBUTE_AI_CHAN_CAL_OPERATOR_NAME\x10\xa3\x45\x12-\n(CHANNEL_RESET_ATTRIBUTE_AI_CHAN_CAL_DESC\x10\xa4\x45\x12/\n*CHANNEL_RESET_ATTRIBUTE_CI_TIMESTAMP_UNITS\x10\xb3\x45\x12\x39\n4CHANNEL_RESET_ATTRIBUTE_CI_TIMESTAMP_INITIAL_SECONDS\x10\xb4\x45\x12\x39\n4CHANNEL_RESET_ATTRIBUTE_AI_RAW_DATA_COMPRESSION_TYPE\x10\xd8\x45\x12\x46\nACHANNEL_RESET_ATTRIBUTE_AI_LOSSY_LSB_REMOVAL_COMPRESSED_SAMP_SIZE\x10\xd9\x45\x12\x39\n4CHANNEL_RESET_ATTRIBUTE_CI_SEMI_PERIOD_STARTING_EDGE\x10\xfe\x45\x12:\n5CHANNEL_RESET_ATTRIBUTE_AI_DATA_XFER_CUSTOM_THRESHOLD\x10\x8c\x46\x12*\n%CHANNEL_RESET_ATTRIBUTE_DI_ACQUIRE_ON\x10\xe6R\x12\x38\n3CHANNEL_RESET_ATTRIBUTE_DO_LINE_STATES_PAUSED_STATE\x10\xe7R\x12\x36\n1CHANNEL_RESET_ATTRIBUTE_DO_LINE_STATES_DONE_STATE\x10\xe8R\x12+\n&CHANNEL_RESET_ATTRIBUTE_DO_GENERATE_ON\x10\xe9R\x12.\n)CHANNEL_RESET_ATTRIBUTE_DI_MEM_MAP_ENABLE\x10\xeaR\x12.\n)CHANNEL_RESET_ATTRIBUTE_DO_MEM_MAP_ENABLE\x10\xebR\x12,\n\'CHANNEL_RESET_ATTRIBUTE_DI_LOGIC_FAMILY\x10\xedR\x12,\n\'CHANNEL_RESET_ATTRIBUTE_DO_LOGIC_FAMILY\x10\xeeR\x12\x37\n2CHANNEL_RESET_ATTRIBUTE_DO_LINE_STATES_START_STATE\x10\xf2R\x12.\n)CHANNEL_RESET_ATTRIBUTE_AI_VOLTAGE_DB_REF\x10\xb0S\x12\x35\n0CHANNEL_RESET_ATTRIBUTE_AI_SOUND_PRESSURE_DB_REF\x10\xb1S\x12,\n\'CHANNEL_RESET_ATTRIBUTE_AI_ACCEL_DB_REF\x10\xb2S\x12\x32\n-CHANNEL_RESET_ATTRIBUTE_AI_THRMCPL_SCALE_TYPE\x10\xd0S\x12\x34\n/CHANNEL_RESET_ATTRIBUTE_CO_CONSTRAINED_GEN_MODE\x10\xf2S\x12/\n*CHANNEL_RESET_ATTRIBUTE_AI_ADC_TIMING_MODE\x10\xf9S\x12-\n(CHANNEL_RESET_ATTRIBUTE_AO_FUNC_GEN_TYPE\x10\x98T\x12-\n(CHANNEL_RESET_ATTRIBUTE_AO_FUNC_GEN_FREQ\x10\x99T\x12\x32\n-CHANNEL_RESET_ATTRIBUTE_AO_FUNC_GEN_AMPLITUDE\x10\x9aT\x12/\n*CHANNEL_RESET_ATTRIBUTE_AO_FUNC_GEN_OFFSET\x10\x9bT\x12:\n5CHANNEL_RESET_ATTRIBUTE_AO_FUNC_GEN_SQUARE_DUTY_CYCLE\x10\x9cT\x12\x35\n0CHANNEL_RESET_ATTRIBUTE_AO_VOLTAGE_CURRENT_LIMIT\x10\x9dT\x12\x38\n3CHANNEL_RESET_ATTRIBUTE_AO_FUNC_GEN_MODULATION_TYPE\x10\xa2T\x12\x35\n0CHANNEL_RESET_ATTRIBUTE_AO_FUNC_GEN_FM_DEVIATION\x10\xa3T\x12\x31\n,CHANNEL_RESET_ATTRIBUTE_DO_OVERCURRENT_LIMIT\x10\x85U\x12\x39\n4CHANNEL_RESET_ATTRIBUTE_DO_OVERCURRENT_AUTO_REENABLE\x10\x86U\x12;\n6CHANNEL_RESET_ATTRIBUTE_DO_OVERCURRENT_REENABLE_PERIOD\x10\x87U\x12+\n&CHANNEL_RESET_ATTRIBUTE_AI_PROBE_ATTEN\x10\x88U\x12)\n$CHANNEL_RESET_ATTRIBUTE_AI_DC_OFFSET\x10\x89U\x12\x31\n,CHANNEL_RESET_ATTRIBUTE_AI_USB_XFER_REQ_SIZE\x10\x8eU\x12\x31\n,CHANNEL_RESET_ATTRIBUTE_AO_USB_XFER_REQ_SIZE\x10\x8fU\x12\x31\n,CHANNEL_RESET_ATTRIBUTE_DI_USB_XFER_REQ_SIZE\x10\x90U\x12\x31\n,CHANNEL_RESET_ATTRIBUTE_DO_USB_XFER_REQ_SIZE\x10\x91U\x12\x31\n,CHANNEL_RESET_ATTRIBUTE_CI_USB_XFER_REQ_SIZE\x10\x92U\x12\x31\n,CHANNEL_RESET_ATTRIBUTE_CO_USB_XFER_REQ_SIZE\x10\x93U\x12\x43\n>CHANNEL_RESET_ATTRIBUTE_AI_EDDY_CURRENT_PROX_PROBE_SENSITIVITY\x10\xbeU\x12I\nDCHANNEL_RESET_ATTRIBUTE_AI_EDDY_CURRENT_PROX_PROBE_SENSITIVITY_UNITS\x10\xbfU\x12=\n8CHANNEL_RESET_ATTRIBUTE_AI_EDDY_CURRENT_PROX_PROBE_UNITS\x10\xc0U\x12\x41\nCHANNEL_RESET_ATTRIBUTE_CI_PULSE_FREQ_DIG_FLTR_MIN_PULSE_WIDTH\x10\x87^\x12@\n;CHANNEL_RESET_ATTRIBUTE_CI_PULSE_FREQ_DIG_FLTR_TIMEBASE_SRC\x10\x88^\x12\x41\nCHANNEL_RESET_ATTRIBUTE_CI_PULSE_TIME_DIG_FLTR_MIN_PULSE_WIDTH\x10\x8f^\x12@\n;CHANNEL_RESET_ATTRIBUTE_CI_PULSE_TIME_DIG_FLTR_TIMEBASE_SRC\x10\x90^\x12\x41\nCHANNEL_RESET_ATTRIBUTE_AI_FORCE_IEPE_SENSOR_SENSITIVITY_UNITS\x10\x82_\x12\x34\n/CHANNEL_RESET_ATTRIBUTE_AI_BRIDGE_INITIAL_RATIO\x10\x86_\x12\x37\n2CHANNEL_RESET_ATTRIBUTE_AI_BRIDGE_ELECTRICAL_UNITS\x10\x87_\x12\x35\n0CHANNEL_RESET_ATTRIBUTE_AI_BRIDGE_PHYSICAL_UNITS\x10\x88_\x12\x31\n,CHANNEL_RESET_ATTRIBUTE_AI_BRIDGE_SCALE_TYPE\x10\x89_\x12I\nDCHANNEL_RESET_ATTRIBUTE_AI_BRIDGE_TWO_POINT_LIN_FIRST_ELECTRICAL_VAL\x10\x8a_\x12G\nBCHANNEL_RESET_ATTRIBUTE_AI_BRIDGE_TWO_POINT_LIN_FIRST_PHYSICAL_VAL\x10\x8b_\x12J\nECHANNEL_RESET_ATTRIBUTE_AI_BRIDGE_TWO_POINT_LIN_SECOND_ELECTRICAL_VAL\x10\x8c_\x12H\nCCHANNEL_RESET_ATTRIBUTE_AI_BRIDGE_TWO_POINT_LIN_SECOND_PHYSICAL_VAL\x10\x8d_\x12<\n7CHANNEL_RESET_ATTRIBUTE_AI_BRIDGE_TABLE_ELECTRICAL_VALS\x10\x8e_\x12:\n5CHANNEL_RESET_ATTRIBUTE_AI_BRIDGE_TABLE_PHYSICAL_VALS\x10\x8f_\x12\x39\n4CHANNEL_RESET_ATTRIBUTE_AI_BRIDGE_POLY_FORWARD_COEFF\x10\x90_\x12\x39\n4CHANNEL_RESET_ATTRIBUTE_AI_BRIDGE_POLY_REVERSE_COEFF\x10\x91_\x12,\n\'CHANNEL_RESET_ATTRIBUTE_AI_BRIDGE_UNITS\x10\x92_\x12>\n9CHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_COUNT_RESET_ENABLE\x10\xaf_\x12\x43\n>CHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_COUNT_RESET_RESET_COUNT\x10\xb0_\x12<\n7CHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_COUNT_RESET_TERM\x10\xb1_\x12\x43\n>CHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_COUNT_RESET_ACTIVE_EDGE\x10\xb2_\x12G\nBCHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_COUNT_RESET_DIG_FLTR_ENABLE\x10\xb3_\x12P\nKCHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_COUNT_RESET_DIG_FLTR_MIN_PULSE_WIDTH\x10\xb4_\x12M\nHCHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_COUNT_RESET_DIG_FLTR_TIMEBASE_SRC\x10\xb5_\x12N\nICHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_COUNT_RESET_DIG_FLTR_TIMEBASE_RATE\x10\xb6_\x12G\nBCHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_COUNT_RESET_DIG_SYNC_ENABLE\x10\xb7_\x12;\n6CHANNEL_RESET_ATTRIBUTE_AI_THRMCPL_LEAD_OFFSET_VOLTAGE\x10\xb8_\x12\x33\n.CHANNEL_RESET_ATTRIBUTE_AI_REMOVE_FILTER_DELAY\x10\xbd_\x12\x32\n-CHANNEL_RESET_ATTRIBUTE_AI_AVERAGING_WIN_SIZE\x10\xee_\x12.\n)CHANNEL_RESET_ATTRIBUTE_AI_VELOCITY_UNITS\x10\xf4_\x12;\n6CHANNEL_RESET_ATTRIBUTE_AI_VELOCITY_IEPE_SENSOR_DB_REF\x10\xf5_\x12@\n;CHANNEL_RESET_ATTRIBUTE_AI_VELOCITY_IEPE_SENSOR_SENSITIVITY\x10\xf6_\x12\x46\nACHANNEL_RESET_ATTRIBUTE_AI_VELOCITY_IEPE_SENSOR_SENSITIVITY_UNITS\x10\xf7_\x12@\n;CHANNEL_RESET_ATTRIBUTE_AI_STRAIN_GAGE_FORCE_READ_FROM_CHAN\x10\xfa_\x12?\n:CHANNEL_RESET_ATTRIBUTE_AI_ROSETTE_STRAIN_GAGE_ORIENTATION\x10\xfc_\x12\x45\n@CHANNEL_RESET_ATTRIBUTE_AI_ROSETTE_STRAIN_GAGE_ROSETTE_MEAS_TYPE\x10\xfd_\x12\x32\n-CHANNEL_RESET_ATTRIBUTE_AI_USB_XFER_REQ_COUNT\x10\x80`\x12\x32\n-CHANNEL_RESET_ATTRIBUTE_AO_USB_XFER_REQ_COUNT\x10\x81`\x12\x32\n-CHANNEL_RESET_ATTRIBUTE_DI_USB_XFER_REQ_COUNT\x10\x82`\x12\x32\n-CHANNEL_RESET_ATTRIBUTE_DO_USB_XFER_REQ_COUNT\x10\x83`\x12\x32\n-CHANNEL_RESET_ATTRIBUTE_CI_USB_XFER_REQ_COUNT\x10\x84`\x12\x32\n-CHANNEL_RESET_ATTRIBUTE_CO_USB_XFER_REQ_COUNT\x10\x85`\x12.\n)CHANNEL_RESET_ATTRIBUTE_CI_TIMESTAMP_TERM\x10\xb9`\x12.\n)CHANNEL_RESET_ATTRIBUTE_CI_TIMESTAMP_EDGE\x10\xba`\x12\x33\n.CHANNEL_RESET_ATTRIBUTE_CI_TIMESTAMP_TIMESCALE\x10\xbb`\x12\x32\n-CHANNEL_RESET_ATTRIBUTE_NAV_CUSTOM_SCALE_NAME\x10\xbc`\x12*\n%CHANNEL_RESET_ATTRIBUTE_NAV_ALT_UNITS\x10\xbe`\x12*\n%CHANNEL_RESET_ATTRIBUTE_NAV_LAT_UNITS\x10\xbf`\x12+\n&CHANNEL_RESET_ATTRIBUTE_NAV_LONG_UNITS\x10\xc0`\x12\x38\n3CHANNEL_RESET_ATTRIBUTE_NAV_SPEED_OVER_GROUND_UNITS\x10\xc1`\x12,\n\'CHANNEL_RESET_ATTRIBUTE_NAV_TRACK_UNITS\x10\xc2`\x12\x34\n/CHANNEL_RESET_ATTRIBUTE_NAV_VERT_VELOCITY_UNITS\x10\xc3`\x12\x30\n+CHANNEL_RESET_ATTRIBUTE_NAV_TIMESTAMP_UNITS\x10\xc4`\x12\x34\n/CHANNEL_RESET_ATTRIBUTE_NAV_TIMESTAMP_TIMESCALE\x10\xc5`\x12\x32\n-CHANNEL_RESET_ATTRIBUTE_AI_FILTER_DELAY_UNITS\x10\xf1`\x12\x37\n2CHANNEL_RESET_ATTRIBUTE_AO_FILTER_DELAY_ADJUSTMENT\x10\xf2`\x12\x37\n2CHANNEL_RESET_ATTRIBUTE_AI_FILTER_DELAY_ADJUSTMENT\x10\xf4`\x12,\n\'CHANNEL_RESET_ATTRIBUTE_AO_FILTER_DELAY\x10\xf5`\x12\x32\n-CHANNEL_RESET_ATTRIBUTE_AO_FILTER_DELAY_UNITS\x10\xf6`\x12/\n*CHANNEL_RESET_ATTRIBUTE_CI_DUTY_CYCLE_TERM\x10\x8d\x61\x12:\n5CHANNEL_RESET_ATTRIBUTE_CI_DUTY_CYCLE_DIG_FLTR_ENABLE\x10\x8e\x61\x12\x43\n>CHANNEL_RESET_ATTRIBUTE_CI_DUTY_CYCLE_DIG_FLTR_MIN_PULSE_WIDTH\x10\x8f\x61\x12@\n;CHANNEL_RESET_ATTRIBUTE_CI_DUTY_CYCLE_DIG_FLTR_TIMEBASE_SRC\x10\x90\x61\x12\x41\n\n9CHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_LOGIC_LVL_BEHAVIOR\x10\x9c\x61\x12>\n9CHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_COUNT_DIR_TERM_CFG\x10\x9d\x61\x12H\nCCHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_COUNT_DIR_LOGIC_LVL_BEHAVIOR\x10\x9e\x61\x12@\n;CHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_COUNT_RESET_TERM_CFG\x10\x9f\x61\x12J\nECHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_COUNT_RESET_LOGIC_LVL_BEHAVIOR\x10\xa0\x61\x12\x33\n.CHANNEL_RESET_ATTRIBUTE_CI_DUTY_CYCLE_TERM_CFG\x10\xa1\x61\x12=\n8CHANNEL_RESET_ATTRIBUTE_CI_DUTY_CYCLE_LOGIC_LVL_BEHAVIOR\x10\xa2\x61\x12\x38\n3CHANNEL_RESET_ATTRIBUTE_CI_ENCODER_A_INPUT_TERM_CFG\x10\xa3\x61\x12\x42\n=CHANNEL_RESET_ATTRIBUTE_CI_ENCODER_A_INPUT_LOGIC_LVL_BEHAVIOR\x10\xa4\x61\x12\x38\n3CHANNEL_RESET_ATTRIBUTE_CI_ENCODER_B_INPUT_TERM_CFG\x10\xa5\x61\x12\x42\n=CHANNEL_RESET_ATTRIBUTE_CI_ENCODER_B_INPUT_LOGIC_LVL_BEHAVIOR\x10\xa6\x61\x12\x38\n3CHANNEL_RESET_ATTRIBUTE_CI_ENCODER_Z_INPUT_TERM_CFG\x10\xa7\x61\x12\x42\n=CHANNEL_RESET_ATTRIBUTE_CI_ENCODER_Z_INPUT_LOGIC_LVL_BEHAVIOR\x10\xa8\x61\x12\x34\n/CHANNEL_RESET_ATTRIBUTE_CI_PULSE_WIDTH_TERM_CFG\x10\xa9\x61\x12>\n9CHANNEL_RESET_ATTRIBUTE_CI_PULSE_WIDTH_LOGIC_LVL_BEHAVIOR\x10\xaa\x61\x12;\n6CHANNEL_RESET_ATTRIBUTE_CI_TWO_EDGE_SEP_FIRST_TERM_CFG\x10\xab\x61\x12\x45\n@CHANNEL_RESET_ATTRIBUTE_CI_TWO_EDGE_SEP_FIRST_LOGIC_LVL_BEHAVIOR\x10\xac\x61\x12<\n7CHANNEL_RESET_ATTRIBUTE_CI_TWO_EDGE_SEP_SECOND_TERM_CFG\x10\xad\x61\x12\x46\nACHANNEL_RESET_ATTRIBUTE_CI_TWO_EDGE_SEP_SECOND_LOGIC_LVL_BEHAVIOR\x10\xae\x61\x12\x34\n/CHANNEL_RESET_ATTRIBUTE_CI_SEMI_PERIOD_TERM_CFG\x10\xaf\x61\x12>\n9CHANNEL_RESET_ATTRIBUTE_CI_SEMI_PERIOD_LOGIC_LVL_BEHAVIOR\x10\xb0\x61\x12\x33\n.CHANNEL_RESET_ATTRIBUTE_CI_PULSE_FREQ_TERM_CFG\x10\xb1\x61\x12=\n8CHANNEL_RESET_ATTRIBUTE_CI_PULSE_FREQ_LOGIC_LVL_BEHAVIOR\x10\xb2\x61\x12\x33\n.CHANNEL_RESET_ATTRIBUTE_CI_PULSE_TIME_TERM_CFG\x10\xb3\x61\x12=\n8CHANNEL_RESET_ATTRIBUTE_CI_PULSE_TIME_LOGIC_LVL_BEHAVIOR\x10\xb4\x61\x12\x34\n/CHANNEL_RESET_ATTRIBUTE_CI_PULSE_TICKS_TERM_CFG\x10\xb5\x61\x12>\n9CHANNEL_RESET_ATTRIBUTE_CI_PULSE_TICKS_LOGIC_LVL_BEHAVIOR\x10\xb6\x61\x12.\n)CHANNEL_RESET_ATTRIBUTE_CI_THRESH_VOLTAGE\x10\xb7\x61\x12:\n5CHANNEL_RESET_ATTRIBUTE_AI_EXCIT_IDLE_OUTPUT_BEHAVIOR\x10\xb8\x61\x12/\n*CHANNEL_RESET_ATTRIBUTE_AI_DIG_FLTR_ENABLE\x10\xbd\x61\x12-\n(CHANNEL_RESET_ATTRIBUTE_AI_DIG_FLTR_TYPE\x10\xbe\x61\x12\x31\n,CHANNEL_RESET_ATTRIBUTE_AI_DIG_FLTR_RESPONSE\x10\xbf\x61\x12.\n)CHANNEL_RESET_ATTRIBUTE_AI_DIG_FLTR_ORDER\x10\xc0\x61\x12<\n7CHANNEL_RESET_ATTRIBUTE_AI_DIG_FLTR_LOWPASS_CUTOFF_FREQ\x10\xc1\x61\x12=\n8CHANNEL_RESET_ATTRIBUTE_AI_DIG_FLTR_HIGHPASS_CUTOFF_FREQ\x10\xc2\x61\x12=\n8CHANNEL_RESET_ATTRIBUTE_AI_DIG_FLTR_BANDPASS_CENTER_FREQ\x10\xc3\x61\x12\x37\n2CHANNEL_RESET_ATTRIBUTE_AI_DIG_FLTR_BANDPASS_WIDTH\x10\xc4\x61\x12:\n5CHANNEL_RESET_ATTRIBUTE_AI_DIG_FLTR_NOTCH_CENTER_FREQ\x10\xc5\x61\x12\x34\n/CHANNEL_RESET_ATTRIBUTE_AI_DIG_FLTR_NOTCH_WIDTH\x10\xc6\x61\x12.\n)CHANNEL_RESET_ATTRIBUTE_AI_DIG_FLTR_COEFF\x10\xc7\x61\x12@\n;CHANNEL_RESET_ATTRIBUTE_AI_BRIDGE_SHUNT_CAL_SHUNT_CAL_A_SRC\x10\xca\x61\x12:\n5CHANNEL_RESET_ATTRIBUTE_CI_VELOCITY_ANG_ENCODER_UNITS\x10\xd8\x61\x12\x43\n>CHANNEL_RESET_ATTRIBUTE_CI_VELOCITY_ANG_ENCODER_PULSES_PER_REV\x10\xd9\x61\x12:\n5CHANNEL_RESET_ATTRIBUTE_CI_VELOCITY_LIN_ENCODER_UNITS\x10\xda\x61\x12\x43\n>CHANNEL_RESET_ATTRIBUTE_CI_VELOCITY_LIN_ENCODER_DIST_PER_PULSE\x10\xdb\x61\x12>\n9CHANNEL_RESET_ATTRIBUTE_CI_VELOCITY_ENCODER_DECODING_TYPE\x10\xdc\x61\x12=\n8CHANNEL_RESET_ATTRIBUTE_CI_VELOCITY_ENCODER_A_INPUT_TERM\x10\xdd\x61\x12\x41\nCHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_GATE_LOGIC_LVL_BEHAVIOR\x10\xf0\x61\x12@\n;CHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_GATE_DIG_FLTR_ENABLE\x10\xf1\x61\x12I\nDCHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_GATE_DIG_FLTR_MIN_PULSE_WIDTH\x10\xf2\x61\x12\x46\nACHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_GATE_DIG_FLTR_TIMEBASE_SRC\x10\xf3\x61\x12G\nBCHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_GATE_DIG_FLTR_TIMEBASE_RATE\x10\xf4\x61\x12\x35\n0CHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_GATE_WHEN\x10\xf5\x61\x12@\n;CHANNEL_RESET_ATTRIBUTE_AI_BRIDGE_SHUNT_CAL_SHUNT_CAL_B_SRC\x10\xf7\x61\x12+\n&CHANNEL_RESET_ATTRIBUTE_AI_EXCIT_SENSE\x10\xfd\x61\x12\x37\n2CHANNEL_RESET_ATTRIBUTE_AI_OPEN_CHAN_DETECT_ENABLE\x10\xff\x61\x12,\n\'CHANNEL_RESET_ATTRIBUTE_AI_CHARGE_UNITS\x10\x92\x62\x12\x38\n3CHANNEL_RESET_ATTRIBUTE_AI_ACCEL_CHARGE_SENSITIVITY\x10\x93\x62\x12>\n9CHANNEL_RESET_ATTRIBUTE_AI_ACCEL_CHARGE_SENSITIVITY_UNITS\x10\x94\x62\x12\x43\n>CHANNEL_RESET_ATTRIBUTE_AI_ACCEL_4_WIRE_DC_VOLTAGE_SENSITIVITY\x10\x95\x62\x12I\nDCHANNEL_RESET_ATTRIBUTE_AI_ACCEL_4_WIRE_DC_VOLTAGE_SENSITIVITY_UNITS\x10\x96\x62\x12\x32\n-CHANNEL_RESET_ATTRIBUTE_AI_DATA_XFER_MAX_RATE\x10\x97\x62\x12\x36\n1CHANNEL_RESET_ATTRIBUTE_CHAN_SYNC_UNLOCK_BEHAVIOR\x10\xbc\x62\x12+\n&CHANNEL_RESET_ATTRIBUTE_AI_CHOP_ENABLE\x10\xc3\x62\x12\x34\n/CHANNEL_RESET_ATTRIBUTE_AI_SENSOR_POWER_VOLTAGE\x10\xe9\x62\x12\x30\n+CHANNEL_RESET_ATTRIBUTE_AI_SENSOR_POWER_CFG\x10\xea\x62\x12\x31\n,CHANNEL_RESET_ATTRIBUTE_AI_SENSOR_POWER_TYPE\x10\xeb\x62\x12-\n(CHANNEL_RESET_ATTRIBUTE_AI_FILTER_ENABLE\x10\xf3\x62\x12+\n&CHANNEL_RESET_ATTRIBUTE_AI_FILTER_FREQ\x10\xf4\x62\x12/\n*CHANNEL_RESET_ATTRIBUTE_AI_FILTER_RESPONSE\x10\xf5\x62\x12,\n\'CHANNEL_RESET_ATTRIBUTE_AI_FILTER_ORDER\x10\xf6\x62\x12\x45\n@CHANNEL_RESET_ATTRIBUTE_AI_INPUT_LIMITS_FAULT_DETECT_UPPER_LIMIT\x10\x8c\x63\x12\x45\n@CHANNEL_RESET_ATTRIBUTE_AI_INPUT_LIMITS_FAULT_DETECT_LOWER_LIMIT\x10\x8d\x63\x12@\n;CHANNEL_RESET_ATTRIBUTE_AI_INPUT_LIMITS_FAULT_DETECT_ENABLE\x10\x8e\x63\x12@\n;CHANNEL_RESET_ATTRIBUTE_AI_POWER_SUPPLY_FAULT_DETECT_ENABLE\x10\x91\x63\x12\x39\n4CHANNEL_RESET_ATTRIBUTE_AI_OVERCURRENT_DETECT_ENABLE\x10\x94\x63\x12\x33\n.CHANNEL_RESET_ATTRIBUTE_CI_FREQ_THRESH_VOLTAGE\x10\xab\x63\x12)\n$CHANNEL_RESET_ATTRIBUTE_CI_FREQ_HYST\x10\xac\x63\x12\x35\n0CHANNEL_RESET_ATTRIBUTE_CI_PERIOD_THRESH_VOLTAGE\x10\xad\x63\x12+\n&CHANNEL_RESET_ATTRIBUTE_CI_PERIOD_HYST\x10\xae\x63\x12:\n5CHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_THRESH_VOLTAGE\x10\xaf\x63\x12\x30\n+CHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_HYST\x10\xb0\x63\x12\x44\n?CHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_COUNT_DIR_THRESH_VOLTAGE\x10\xb1\x63\x12:\n5CHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_COUNT_DIR_HYST\x10\xb2\x63\x12\x46\nACHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_COUNT_RESET_THRESH_VOLTAGE\x10\xb3\x63\x12<\n7CHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_COUNT_RESET_HYST\x10\xb4\x63\x12?\n:CHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_GATE_THRESH_VOLTAGE\x10\xb5\x63\x12\x35\n0CHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_GATE_HYST\x10\xb6\x63\x12-\n(CHANNEL_RESET_ATTRIBUTE_CI_FILTER_ENABLE\x10\xb7\x63\x12+\n&CHANNEL_RESET_ATTRIBUTE_CI_FILTER_FREQ\x10\xb8\x63\x12/\n*CHANNEL_RESET_ATTRIBUTE_CI_FILTER_RESPONSE\x10\xb9\x63\x12,\n\'CHANNEL_RESET_ATTRIBUTE_CI_FILTER_ORDER\x10\xba\x63\x12\x32\n-CHANNEL_RESET_ATTRIBUTE_CI_FILTER_DELAY_UNITS\x10\xbc\x63\x12\x34\n/CHANNEL_RESET_ATTRIBUTE_AO_FUNC_GEN_START_PHASE\x10\xc4\x63\x12\x32\n-CHANNEL_RESET_ATTRIBUTE_AO_COMMON_MODE_OFFSET\x10\xcc\x63\x12\x31\n,CHANNEL_RESET_ATTRIBUTE_PWR_VOLTAGE_SETPOINT\x10\xd4\x63\x12\x31\n,CHANNEL_RESET_ATTRIBUTE_PWR_CURRENT_SETPOINT\x10\xd5\x63\x12.\n)CHANNEL_RESET_ATTRIBUTE_PWR_OUTPUT_ENABLE\x10\xd6\x63\x12\x35\n0CHANNEL_RESET_ATTRIBUTE_PWR_IDLE_OUTPUT_BEHAVIOR\x10\xd8\x63\x12-\n(CHANNEL_RESET_ATTRIBUTE_PWR_REMOTE_SENSE\x10\xdb\x63*\x9a\'\n\x14\x43hannelBoolAttribute\x12&\n\"CHANNEL_BOOL_ATTRIBUTE_UNSPECIFIED\x10\x00\x12&\n\"CHANNEL_ATTRIBUTE_AI_DITHER_ENABLE\x10h\x12\x31\n,CHANNEL_ATTRIBUTE_AI_BRIDGE_SHUNT_CAL_ENABLE\x10\x94\x01\x12.\n)CHANNEL_ATTRIBUTE_AI_AC_EXCIT_SYNC_ENABLE\x10\x82\x02\x12-\n(CHANNEL_ATTRIBUTE_AO_DAC_REF_CONN_TO_GND\x10\xb0\x02\x12)\n$CHANNEL_ATTRIBUTE_AO_REGLITCH_ENABLE\x10\xb3\x02\x12$\n\x1f\x43HANNEL_ATTRIBUTE_CI_TC_REACHED\x10\xd0\x02\x12&\n!CHANNEL_ATTRIBUTE_DI_INVERT_LINES\x10\x93\x0f\x12\x30\n+CHANNEL_ATTRIBUTE_CI_ENCODER_Z_INDEX_ENABLE\x10\x90\x11\x12&\n!CHANNEL_ATTRIBUTE_DO_INVERT_LINES\x10\xb3\"\x12/\n*CHANNEL_ATTRIBUTE_AI_EXCIT_USE_FOR_SCALING\x10\xfc/\x12(\n#CHANNEL_ATTRIBUTE_AI_LOWPASS_ENABLE\x10\x82\x30\x12)\n$CHANNEL_ATTRIBUTE_AI_HIGHPASS_ENABLE\x10\x86\x30\x12)\n$CHANNEL_ATTRIBUTE_AI_BANDPASS_ENABLE\x10\x8b\x30\x12.\n)CHANNEL_ATTRIBUTE_AI_SAMP_AND_HOLD_ENABLE\x10\x9a\x30\x12\x33\n.CHANNEL_ATTRIBUTE_AO_DAC_REF_ALLOW_CONN_TO_GND\x10\xb0\x30\x12-\n(CHANNEL_ATTRIBUTE_AO_USE_ONLY_ON_BRD_MEM\x10\xba\x30\x12(\n#CHANNEL_ATTRIBUTE_AI_MEM_MAP_ENABLE\x10\x8c\x31\x12(\n#CHANNEL_ATTRIBUTE_AO_MEM_MAP_ENABLE\x10\x8f\x31\x12\"\n\x1d\x43HANNEL_ATTRIBUTE_DI_TRISTATE\x10\x90\x31\x12\"\n\x1d\x43HANNEL_ATTRIBUTE_DO_TRISTATE\x10\xf3\x31\x12.\n)CHANNEL_ATTRIBUTE_AI_FORCE_READ_FROM_CHAN\x10\xf8\x31\x12$\n\x1f\x43HANNEL_ATTRIBUTE_CO_PULSE_DONE\x10\x8e\x32\x12/\n*CHANNEL_ATTRIBUTE_AI_EXCIT_USE_MULTIPLEXED\x10\x80\x43\x12+\n&CHANNEL_ATTRIBUTE_CI_DUP_COUNT_PREVENT\x10\xac\x43\x12)\n$CHANNEL_ATTRIBUTE_DI_DIG_FLTR_ENABLE\x10\xd6\x43\x12.\n)CHANNEL_ATTRIBUTE_CI_FREQ_DIG_FLTR_ENABLE\x10\xe7\x43\x12.\n)CHANNEL_ATTRIBUTE_CI_FREQ_DIG_SYNC_ENABLE\x10\xeb\x43\x12\x30\n+CHANNEL_ATTRIBUTE_CI_PERIOD_DIG_FLTR_ENABLE\x10\xec\x43\x12\x30\n+CHANNEL_ATTRIBUTE_CI_PERIOD_DIG_SYNC_ENABLE\x10\xf0\x43\x12?\n:CHANNEL_ATTRIBUTE_CI_COUNT_EDGES_COUNT_DIR_DIG_FLTR_ENABLE\x10\xf1\x43\x12?\n:CHANNEL_ATTRIBUTE_CI_COUNT_EDGES_COUNT_DIR_DIG_SYNC_ENABLE\x10\xf5\x43\x12\x35\n0CHANNEL_ATTRIBUTE_CI_COUNT_EDGES_DIG_FLTR_ENABLE\x10\xf6\x43\x12\x35\n0CHANNEL_ATTRIBUTE_CI_COUNT_EDGES_DIG_SYNC_ENABLE\x10\xfa\x43\x12\x39\n4CHANNEL_ATTRIBUTE_CI_ENCODER_A_INPUT_DIG_FLTR_ENABLE\x10\xfb\x43\x12\x39\n4CHANNEL_ATTRIBUTE_CI_ENCODER_A_INPUT_DIG_SYNC_ENABLE\x10\xff\x43\x12\x39\n4CHANNEL_ATTRIBUTE_CI_ENCODER_B_INPUT_DIG_FLTR_ENABLE\x10\x80\x44\x12\x39\n4CHANNEL_ATTRIBUTE_CI_ENCODER_B_INPUT_DIG_SYNC_ENABLE\x10\x84\x44\x12\x39\n4CHANNEL_ATTRIBUTE_CI_ENCODER_Z_INPUT_DIG_FLTR_ENABLE\x10\x85\x44\x12\x39\n4CHANNEL_ATTRIBUTE_CI_ENCODER_Z_INPUT_DIG_SYNC_ENABLE\x10\x89\x44\x12\x35\n0CHANNEL_ATTRIBUTE_CI_PULSE_WIDTH_DIG_FLTR_ENABLE\x10\x8a\x44\x12\x35\n0CHANNEL_ATTRIBUTE_CI_PULSE_WIDTH_DIG_SYNC_ENABLE\x10\x8e\x44\x12<\n7CHANNEL_ATTRIBUTE_CI_TWO_EDGE_SEP_FIRST_DIG_FLTR_ENABLE\x10\x8f\x44\x12<\n7CHANNEL_ATTRIBUTE_CI_TWO_EDGE_SEP_FIRST_DIG_SYNC_ENABLE\x10\x93\x44\x12=\n8CHANNEL_ATTRIBUTE_CI_TWO_EDGE_SEP_SECOND_DIG_FLTR_ENABLE\x10\x94\x44\x12=\n8CHANNEL_ATTRIBUTE_CI_TWO_EDGE_SEP_SECOND_DIG_SYNC_ENABLE\x10\x98\x44\x12\x35\n0CHANNEL_ATTRIBUTE_CI_SEMI_PERIOD_DIG_FLTR_ENABLE\x10\x99\x44\x12\x35\n0CHANNEL_ATTRIBUTE_CI_SEMI_PERIOD_DIG_SYNC_ENABLE\x10\x9d\x44\x12\x39\n4CHANNEL_ATTRIBUTE_AO_ENHANCED_IMAGE_REJECTION_ENABLE\x10\xc1\x44\x12-\n(CHANNEL_ATTRIBUTE_DO_USE_ONLY_ON_BRD_MEM\x10\xe5\x44\x12\x36\n1CHANNEL_ATTRIBUTE_CI_CTR_TIMEBASE_DIG_FLTR_ENABLE\x10\xf1\x44\x12\x36\n1CHANNEL_ATTRIBUTE_CI_CTR_TIMEBASE_DIG_SYNC_ENABLE\x10\xf5\x44\x12\x36\n1CHANNEL_ATTRIBUTE_CO_CTR_TIMEBASE_DIG_FLTR_ENABLE\x10\xf6\x44\x12\x36\n1CHANNEL_ATTRIBUTE_CO_CTR_TIMEBASE_DIG_SYNC_ENABLE\x10\xfa\x44\x12\x39\n4CHANNEL_ATTRIBUTE_AI_ENHANCED_ALIAS_REJECTION_ENABLE\x10\x94\x45\x12\x35\n0CHANNEL_ATTRIBUTE_AI_CHAN_CAL_HAS_VALID_CAL_INFO\x10\x97\x45\x12-\n(CHANNEL_ATTRIBUTE_AI_CHAN_CAL_ENABLE_CAL\x10\x98\x45\x12\x33\n.CHANNEL_ATTRIBUTE_AI_CHAN_CAL_APPLY_CAL_IF_EXP\x10\x99\x45\x12)\n$CHANNEL_ATTRIBUTE_CO_RDY_FOR_NEW_VAL\x10\xff\x45\x12%\n CHANNEL_ATTRIBUTE_CHAN_IS_GLOBAL\x10\x84\x46\x12(\n#CHANNEL_ATTRIBUTE_DI_MEM_MAP_ENABLE\x10\xeaR\x12(\n#CHANNEL_ATTRIBUTE_DO_MEM_MAP_ENABLE\x10\xebR\x12!\n\x1c\x43HANNEL_ATTRIBUTE_AI_IS_TEDS\x10\x83S\x12\x33\n.CHANNEL_ATTRIBUTE_DO_OVERCURRENT_AUTO_REENABLE\x10\x86U\x12;\n6CHANNEL_ATTRIBUTE_CO_ENABLE_INITIAL_DELAY_ON_RETRIGGER\x10\xc9]\x12-\n(CHANNEL_ATTRIBUTE_CO_USE_ONLY_ON_BRD_MEM\x10\xcb]\x12/\n*CHANNEL_ATTRIBUTE_CI_FREQ_ENABLE_AVERAGING\x10\xd0]\x12\x31\n,CHANNEL_ATTRIBUTE_CI_PERIOD_ENABLE_AVERAGING\x10\xd1]\x12(\n#CHANNEL_ATTRIBUTE_CI_MEM_MAP_ENABLE\x10\xd2]\x12(\n#CHANNEL_ATTRIBUTE_CO_MEM_MAP_ENABLE\x10\xd3]\x12)\n$CHANNEL_ATTRIBUTE_DI_DIG_SYNC_ENABLE\x10\xd6]\x12\x32\n-CHANNEL_ATTRIBUTE_DI_DIG_FLTR_ENABLE_BUS_MODE\x10\xfe]\x12\x34\n/CHANNEL_ATTRIBUTE_CI_PULSE_FREQ_DIG_FLTR_ENABLE\x10\x86^\x12\x34\n/CHANNEL_ATTRIBUTE_CI_PULSE_FREQ_DIG_SYNC_ENABLE\x10\x8a^\x12\x34\n/CHANNEL_ATTRIBUTE_CI_PULSE_TIME_DIG_FLTR_ENABLE\x10\x8e^\x12\x34\n/CHANNEL_ATTRIBUTE_CI_PULSE_TIME_DIG_SYNC_ENABLE\x10\x92^\x12\x35\n0CHANNEL_ATTRIBUTE_CI_PULSE_TICKS_DIG_FLTR_ENABLE\x10\x96^\x12\x35\n0CHANNEL_ATTRIBUTE_CI_PULSE_TICKS_DIG_SYNC_ENABLE\x10\x9a^\x12\x34\n/CHANNEL_ATTRIBUTE_AI_OPEN_THRMCPL_DETECT_ENABLE\x10\xf2^\x12\x38\n3CHANNEL_ATTRIBUTE_CI_COUNT_EDGES_COUNT_RESET_ENABLE\x10\xaf_\x12\x41\nCHANNEL_ATTRIBUTE_CI_TWO_EDGE_SEP_SECOND_DIG_FLTR_TIMEBASE_SRC\x10\x96\x44\x12;\n6CHANNEL_ATTRIBUTE_CI_SEMI_PERIOD_DIG_FLTR_TIMEBASE_SRC\x10\x9b\x44\x12)\n$CHANNEL_ATTRIBUTE_AO_DAC_REF_EXT_SRC\x10\xd2\x44\x12,\n\'CHANNEL_ATTRIBUTE_AO_DAC_OFFSET_EXT_SRC\x10\xd4\x44\x12<\n7CHANNEL_ATTRIBUTE_CI_CTR_TIMEBASE_DIG_FLTR_TIMEBASE_SRC\x10\xf3\x44\x12<\n7CHANNEL_ATTRIBUTE_CO_CTR_TIMEBASE_DIG_FLTR_TIMEBASE_SRC\x10\xf8\x44\x12\x30\n+CHANNEL_ATTRIBUTE_AI_CHAN_CAL_OPERATOR_NAME\x10\xa3\x45\x12\'\n\"CHANNEL_ATTRIBUTE_AI_CHAN_CAL_DESC\x10\xa4\x45\x12/\n*CHANNEL_ATTRIBUTE_DI_DIG_FLTR_TIMEBASE_SRC\x10\xd4]\x12)\n$CHANNEL_ATTRIBUTE_CI_PULSE_FREQ_TERM\x10\x84^\x12:\n5CHANNEL_ATTRIBUTE_CI_PULSE_FREQ_DIG_FLTR_TIMEBASE_SRC\x10\x88^\x12)\n$CHANNEL_ATTRIBUTE_CI_PULSE_TIME_TERM\x10\x8c^\x12:\n5CHANNEL_ATTRIBUTE_CI_PULSE_TIME_DIG_FLTR_TIMEBASE_SRC\x10\x90^\x12*\n%CHANNEL_ATTRIBUTE_CI_PULSE_TICKS_TERM\x10\x94^\x12;\n6CHANNEL_ATTRIBUTE_CI_PULSE_TICKS_DIG_FLTR_TIMEBASE_SRC\x10\x98^\x12\x36\n1CHANNEL_ATTRIBUTE_CI_COUNT_EDGES_COUNT_RESET_TERM\x10\xb1_\x12G\nBCHANNEL_ATTRIBUTE_CI_COUNT_EDGES_COUNT_RESET_DIG_FLTR_TIMEBASE_SRC\x10\xb5_\x12:\n5CHANNEL_ATTRIBUTE_AI_ROSETTE_STRAIN_GAGE_STRAIN_CHANS\x10\xfb_\x12(\n#CHANNEL_ATTRIBUTE_CI_TIMESTAMP_TERM\x10\xb9`\x12,\n\'CHANNEL_ATTRIBUTE_NAV_CUSTOM_SCALE_NAME\x10\xbc`\x12)\n$CHANNEL_ATTRIBUTE_CI_DUTY_CYCLE_TERM\x10\x8d\x61\x12:\n5CHANNEL_ATTRIBUTE_CI_DUTY_CYCLE_DIG_FLTR_TIMEBASE_SRC\x10\x90\x61\x12\x37\n2CHANNEL_ATTRIBUTE_CI_VELOCITY_ENCODER_A_INPUT_TERM\x10\xdd\x61\x12H\nCCHANNEL_ATTRIBUTE_CI_VELOCITY_ENCODER_A_INPUT_DIG_FLTR_TIMEBASE_SRC\x10\xe2\x61\x12\x37\n2CHANNEL_ATTRIBUTE_CI_VELOCITY_ENCODER_B_INPUT_TERM\x10\xe4\x61\x12H\nCCHANNEL_ATTRIBUTE_CI_VELOCITY_ENCODER_B_INPUT_DIG_FLTR_TIMEBASE_SRC\x10\xe9\x61\x12/\n*CHANNEL_ATTRIBUTE_CI_COUNT_EDGES_GATE_TERM\x10\xee\x61\x12@\n;CHANNEL_ATTRIBUTE_CI_COUNT_EDGES_GATE_DIG_FLTR_TIMEBASE_SRC\x10\xf3\x61*\xc4\x10\n\x16\x43hannelUInt32Attribute\x12(\n$CHANNEL_UINT32_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\"\n\x1d\x43HANNEL_ATTRIBUTE_CI_FREQ_DIV\x10\xc7\x02\x12\x1f\n\x1a\x43HANNEL_ATTRIBUTE_CI_COUNT\x10\xc8\x02\x12\x1f\n\x1a\x43HANNEL_ATTRIBUTE_CO_COUNT\x10\x93\x05\x12\'\n\"CHANNEL_ATTRIBUTE_CO_AUTO_INCR_CNT\x10\x95\x05\x12\x33\n.CHANNEL_ATTRIBUTE_CO_PULSE_TICKS_INITIAL_DELAY\x10\x98\x05\x12\x31\n,CHANNEL_ATTRIBUTE_CI_COUNT_EDGES_INITIAL_CNT\x10\x98\r\x12\x34\n/CHANNEL_ATTRIBUTE_CI_ANG_ENCODER_PULSES_PER_REV\x10\xf5\x10\x12*\n%CHANNEL_ATTRIBUTE_CO_PULSE_HIGH_TICKS\x10\xe9\"\x12)\n$CHANNEL_ATTRIBUTE_CO_PULSE_LOW_TICKS\x10\xf1\"\x12(\n#CHANNEL_ATTRIBUTE_AI_HIGHPASS_ORDER\x10\x89\x30\x12\x38\n3CHANNEL_ATTRIBUTE_AI_LOWPASS_SWITCH_CAP_EXT_CLK_DIV\x10\x86\x31\x12\x38\n3CHANNEL_ATTRIBUTE_AI_LOWPASS_SWITCH_CAP_OUT_CLK_DIV\x10\x87\x31\x12:\n5CHANNEL_ATTRIBUTE_CI_CTR_TIMEBASE_MASTER_TIMEBASE_DIV\x10\xb3\x31\x12:\n5CHANNEL_ATTRIBUTE_CO_CTR_TIMEBASE_MASTER_TIMEBASE_DIV\x10\xc3\x31\x12$\n\x1f\x43HANNEL_ATTRIBUTE_CI_PERIOD_DIV\x10\xae\x32\x12\x34\n/CHANNEL_ATTRIBUTE_CI_NUM_POSSIBLY_INVALID_SAMPS\x10\xbc\x32\x12#\n\x1e\x43HANNEL_ATTRIBUTE_DI_NUM_LINES\x10\xf8\x42\x12#\n\x1e\x43HANNEL_ATTRIBUTE_DO_NUM_LINES\x10\xf9\x42\x12#\n\x1e\x43HANNEL_ATTRIBUTE_CI_PRESCALER\x10\xb9\x44\x12#\n\x1e\x43HANNEL_ATTRIBUTE_CO_PRESCALER\x10\xed\x44\x12\x33\n.CHANNEL_ATTRIBUTE_CI_TIMESTAMP_INITIAL_SECONDS\x10\xb4\x45\x12@\n;CHANNEL_ATTRIBUTE_AI_LOSSY_LSB_REMOVAL_COMPRESSED_SAMP_SIZE\x10\xd9\x45\x12\'\n\"CHANNEL_ATTRIBUTE_AI_RAW_SAMP_SIZE\x10\xda\x45\x12\x34\n/CHANNEL_ATTRIBUTE_AI_DATA_XFER_CUSTOM_THRESHOLD\x10\x8c\x46\x12+\n&CHANNEL_ATTRIBUTE_AI_USB_XFER_REQ_SIZE\x10\x8eU\x12+\n&CHANNEL_ATTRIBUTE_AO_USB_XFER_REQ_SIZE\x10\x8fU\x12+\n&CHANNEL_ATTRIBUTE_DI_USB_XFER_REQ_SIZE\x10\x90U\x12+\n&CHANNEL_ATTRIBUTE_DO_USB_XFER_REQ_SIZE\x10\x91U\x12+\n&CHANNEL_ATTRIBUTE_CI_USB_XFER_REQ_SIZE\x10\x92U\x12+\n&CHANNEL_ATTRIBUTE_CO_USB_XFER_REQ_SIZE\x10\x93U\x12\x30\n+CHANNEL_ATTRIBUTE_AI_ADC_CUSTOM_TIMING_MODE\x10\xeb^\x12=\n8CHANNEL_ATTRIBUTE_CI_COUNT_EDGES_COUNT_RESET_RESET_COUNT\x10\xb0_\x12,\n\'CHANNEL_ATTRIBUTE_AI_AVERAGING_WIN_SIZE\x10\xee_\x12,\n\'CHANNEL_ATTRIBUTE_AI_USB_XFER_REQ_COUNT\x10\x80`\x12,\n\'CHANNEL_ATTRIBUTE_AO_USB_XFER_REQ_COUNT\x10\x81`\x12,\n\'CHANNEL_ATTRIBUTE_DI_USB_XFER_REQ_COUNT\x10\x82`\x12,\n\'CHANNEL_ATTRIBUTE_DO_USB_XFER_REQ_COUNT\x10\x83`\x12,\n\'CHANNEL_ATTRIBUTE_CI_USB_XFER_REQ_COUNT\x10\x84`\x12,\n\'CHANNEL_ATTRIBUTE_CO_USB_XFER_REQ_COUNT\x10\x85`\x12(\n#CHANNEL_ATTRIBUTE_AI_DIG_FLTR_ORDER\x10\xc0\x61\x12=\n8CHANNEL_ATTRIBUTE_CI_VELOCITY_ANG_ENCODER_PULSES_PER_REV\x10\xd9\x61\x12&\n!CHANNEL_ATTRIBUTE_CI_VELOCITY_DIV\x10\xec\x61\x12&\n!CHANNEL_ATTRIBUTE_AI_FILTER_ORDER\x10\xf6\x62\x12&\n!CHANNEL_ATTRIBUTE_CI_FILTER_ORDER\x10\xba\x63*\xd9\x06\n\x1b\x43hannelDoubleArrayAttribute\x12.\n*CHANNEL_DOUBLE_ARRAY_ATTRIBUTE_UNSPECIFIED\x10\x00\x12+\n&CHANNEL_ATTRIBUTE_AI_DEV_SCALING_COEFF\x10\xb0\x32\x12+\n&CHANNEL_ATTRIBUTE_AO_DEV_SCALING_COEFF\x10\xb1\x32\x12\x38\n3CHANNEL_ATTRIBUTE_AI_CHAN_CAL_TABLE_PRE_SCALED_VALS\x10\x9d\x45\x12\x34\n/CHANNEL_ATTRIBUTE_AI_CHAN_CAL_TABLE_SCALED_VALS\x10\x9e\x45\x12\x35\n0CHANNEL_ATTRIBUTE_AI_CHAN_CAL_POLY_FORWARD_COEFF\x10\x9f\x45\x12\x35\n0CHANNEL_ATTRIBUTE_AI_CHAN_CAL_POLY_REVERSE_COEFF\x10\xa0\x45\x12\x31\n,CHANNEL_ATTRIBUTE_AI_CHAN_CAL_VERIF_REF_VALS\x10\xa1\x45\x12\x31\n,CHANNEL_ATTRIBUTE_AI_CHAN_CAL_VERIF_ACQ_VALS\x10\xa2\x45\x12\x36\n1CHANNEL_ATTRIBUTE_AI_BRIDGE_TABLE_ELECTRICAL_VALS\x10\x8e_\x12\x34\n/CHANNEL_ATTRIBUTE_AI_BRIDGE_TABLE_PHYSICAL_VALS\x10\x8f_\x12\x33\n.CHANNEL_ATTRIBUTE_AI_BRIDGE_POLY_FORWARD_COEFF\x10\x90_\x12\x33\n.CHANNEL_ATTRIBUTE_AI_BRIDGE_POLY_REVERSE_COEFF\x10\x91_\x12(\n#CHANNEL_ATTRIBUTE_AI_DIG_FLTR_COEFF\x10\xc7\x61\x12\x34\n/CHANNEL_ATTRIBUTE_PWR_VOLTAGE_DEV_SCALING_COEFF\x10\xd9\x63\x12\x34\n/CHANNEL_ATTRIBUTE_PWR_CURRENT_DEV_SCALING_COEFF\x10\xda\x63*\xc2\x07\n\x15\x44\x65viceStringAttribute\x12\'\n#DEVICE_STRING_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\"\n\x1d\x44\x45VICE_ATTRIBUTE_PRODUCT_TYPE\x10\xb1\x0c\x12\'\n\"DEVICE_ATTRIBUTE_AI_PHYSICAL_CHANS\x10\x9e\x46\x12\'\n\"DEVICE_ATTRIBUTE_AO_PHYSICAL_CHANS\x10\x9f\x46\x12\x1e\n\x19\x44\x45VICE_ATTRIBUTE_DI_LINES\x10\xa0\x46\x12\x1e\n\x19\x44\x45VICE_ATTRIBUTE_DI_PORTS\x10\xa1\x46\x12\x1e\n\x19\x44\x45VICE_ATTRIBUTE_DO_LINES\x10\xa2\x46\x12\x1e\n\x19\x44\x45VICE_ATTRIBUTE_DO_PORTS\x10\xa3\x46\x12\'\n\"DEVICE_ATTRIBUTE_CI_PHYSICAL_CHANS\x10\xa4\x46\x12\'\n\"DEVICE_ATTRIBUTE_CO_PHYSICAL_CHANS\x10\xa5\x46\x12.\n)DEVICE_ATTRIBUTE_CHASSIS_MODULE_DEV_NAMES\x10\xb6S\x12\x32\n-DEVICE_ATTRIBUTE_COMPACT_DAQ_CHASSIS_DEV_NAME\x10\xb7S\x12\x1f\n\x1a\x44\x45VICE_ATTRIBUTE_TERMINALS\x10\xc0T\x12$\n\x1f\x44\x45VICE_ATTRIBUTE_TCPIP_HOSTNAME\x10\x8bU\x12\'\n\"DEVICE_ATTRIBUTE_TCPIP_ETHERNET_IP\x10\x8cU\x12\'\n\"DEVICE_ATTRIBUTE_TCPIP_WIRELESS_IP\x10\x8dU\x12-\n(DEVICE_ATTRIBUTE_ACCESSORY_PRODUCT_TYPES\x10\xed^\x12(\n#DEVICE_ATTRIBUTE_NAV_PHYSICAL_CHANS\x10\xa2`\x12\x32\n-DEVICE_ATTRIBUTE_COMPACT_RIO_CHASSIS_DEV_NAME\x10\xe1\x62\x12(\n#DEVICE_ATTRIBUTE_FIELD_DAQ_DEV_NAME\x10\xf1\x62\x12.\n)DEVICE_ATTRIBUTE_FIELD_DAQ_BANK_DEV_NAMES\x10\xf8\x62\x12&\n!DEVICE_ATTRIBUTE_ID_PIN_PIN_NAMES\x10\xf1\x63\x12,\n\'DEVICE_ATTRIBUTE_ID_PIN_MEM_SERIAL_NUMS\x10\xf4\x63*\xfc\x07\n\x15\x44\x65viceUInt32Attribute\x12\'\n#DEVICE_UINT32_ATTRIBUTE_UNSPECIFIED\x10\x00\x12 \n\x1b\x44\x45VICE_ATTRIBUTE_SERIAL_NUM\x10\xb2\x0c\x12!\n\x1c\x44\x45VICE_ATTRIBUTE_PRODUCT_NUM\x10\x9d\x46\x12!\n\x1c\x44\x45VICE_ATTRIBUTE_PCI_BUS_NUM\x10\xa7\x46\x12!\n\x1c\x44\x45VICE_ATTRIBUTE_PCI_DEV_NUM\x10\xa8\x46\x12%\n DEVICE_ATTRIBUTE_PXI_CHASSIS_NUM\x10\xa9\x46\x12\"\n\x1d\x44\x45VICE_ATTRIBUTE_PXI_SLOT_NUM\x10\xaa\x46\x12#\n\x1e\x44\x45VICE_ATTRIBUTE_NUM_DMA_CHANS\x10\xbc\x46\x12!\n\x1c\x44\x45VICE_ATTRIBUTE_CI_MAX_SIZE\x10\x9fS\x12!\n\x1c\x44\x45VICE_ATTRIBUTE_CO_MAX_SIZE\x10\xa1S\x12*\n%DEVICE_ATTRIBUTE_COMPACT_DAQ_SLOT_NUM\x10\xb8S\x12(\n#DEVICE_ATTRIBUTE_CARRIER_SERIAL_NUM\x10\x8aU\x12*\n%DEVICE_ATTRIBUTE_NAV_NUM_SURVEY_FIXES\x10\xab`\x12\x30\n+DEVICE_ATTRIBUTE_NAV_REMAINING_SURVEY_FIXES\x10\xac`\x12\"\n\x1d\x44\x45VICE_ATTRIBUTE_NAV_NUM_SATS\x10\xb1`\x12$\n\x1f\x44\x45VICE_ATTRIBUTE_NUM_TIME_TRIGS\x10\xc1\x62\x12+\n&DEVICE_ATTRIBUTE_NUM_TIMESTAMP_ENGINES\x10\xc2\x62\x12*\n%DEVICE_ATTRIBUTE_COMPACT_RIO_SLOT_NUM\x10\xe2\x62\x12\x30\n+DEVICE_ATTRIBUTE_AI_NUM_SAMP_TIMING_ENGINES\x10\xe3\x62\x12,\n\'DEVICE_ATTRIBUTE_AI_NUM_SYNC_PULSE_SRCS\x10\xe4\x62\x12\x30\n+DEVICE_ATTRIBUTE_AO_NUM_SAMP_TIMING_ENGINES\x10\xe5\x62\x12,\n\'DEVICE_ATTRIBUTE_AO_NUM_SYNC_PULSE_SRCS\x10\xe6\x62\x12\x30\n+DEVICE_ATTRIBUTE_DI_NUM_SAMP_TIMING_ENGINES\x10\xe7\x62\x12\x30\n+DEVICE_ATTRIBUTE_DO_NUM_SAMP_TIMING_ENGINES\x10\xe8\x62*\xc8\x04\n\x13\x44\x65viceBoolAttribute\x12%\n!DEVICE_BOOL_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\"\n\x1d\x44\x45VICE_ATTRIBUTE_IS_SIMULATED\x10\xca\x45\x12)\n$DEVICE_ATTRIBUTE_ANLG_TRIG_SUPPORTED\x10\x84S\x12(\n#DEVICE_ATTRIBUTE_DIG_TRIG_SUPPORTED\x10\x85S\x12\x38\n3DEVICE_ATTRIBUTE_AI_SIMULTANEOUS_SAMPLING_SUPPORTED\x10\x8fS\x12+\n&DEVICE_ATTRIBUTE_AO_SAMP_CLK_SUPPORTED\x10\x96S\x12+\n&DEVICE_ATTRIBUTE_CI_SAMP_CLK_SUPPORTED\x10\x9eS\x12+\n&DEVICE_ATTRIBUTE_CO_SAMP_CLK_SUPPORTED\x10\xdb^\x12+\n&DEVICE_ATTRIBUTE_TEDS_HWTEDS_SUPPORTED\x10\xd6_\x12)\n$DEVICE_ATTRIBUTE_TIME_TRIG_SUPPORTED\x10\x9f`\x12)\n$DEVICE_ATTRIBUTE_CI_UTC_OFFSET_READY\x10\xa1`\x12!\n\x1c\x44\x45VICE_ATTRIBUTE_NAV_HAS_FIX\x10\xad`\x12*\n%DEVICE_ATTRIBUTE_NAV_UTC_OFFSET_READY\x10\xaf`*\xcc\x04\n\x14\x44\x65viceInt32Attribute\x12&\n\"DEVICE_INT32_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\x1e\n\x19\x44\x45VICE_ATTRIBUTE_BUS_TYPE\x10\xa6\x46\x12#\n\x1e\x44\x45VICE_ATTRIBUTE_AI_TRIG_USAGE\x10\x86S\x12#\n\x1e\x44\x45VICE_ATTRIBUTE_AO_TRIG_USAGE\x10\x87S\x12#\n\x1e\x44\x45VICE_ATTRIBUTE_DI_TRIG_USAGE\x10\x88S\x12#\n\x1e\x44\x45VICE_ATTRIBUTE_DO_TRIG_USAGE\x10\x89S\x12#\n\x1e\x44\x45VICE_ATTRIBUTE_CI_TRIG_USAGE\x10\x8aS\x12#\n\x1e\x44\x45VICE_ATTRIBUTE_CO_TRIG_USAGE\x10\x8bS\x12\"\n\x1d\x44\x45VICE_ATTRIBUTE_AI_COUPLINGS\x10\x94S\x12&\n!DEVICE_ATTRIBUTE_PRODUCT_CATEGORY\x10\xa9S\x12+\n&DEVICE_ATTRIBUTE_CI_CURRENT_UTC_OFFSET\x10\xa0`\x12\x1e\n\x19\x44\x45VICE_ATTRIBUTE_NAV_MODE\x10\xa5`\x12!\n\x1c\x44\x45VICE_ATTRIBUTE_NAV_ALT_REF\x10\xa9`\x12$\n\x1f\x44\x45VICE_ATTRIBUTE_NAV_ANT_STATUS\x10\xae`\x12,\n\'DEVICE_ATTRIBUTE_NAV_CURRENT_UTC_OFFSET\x10\xb0`*\x93\x05\n\x15\x44\x65viceDoubleAttribute\x12\'\n#DEVICE_DOUBLE_ATTRIBUTE_UNSPECIFIED\x10\x00\x12-\n(DEVICE_ATTRIBUTE_AI_MAX_SINGLE_CHAN_RATE\x10\x8cS\x12,\n\'DEVICE_ATTRIBUTE_AI_MAX_MULTI_CHAN_RATE\x10\x8dS\x12!\n\x1c\x44\x45VICE_ATTRIBUTE_AI_MIN_RATE\x10\x8eS\x12!\n\x1c\x44\x45VICE_ATTRIBUTE_AO_MAX_RATE\x10\x97S\x12!\n\x1c\x44\x45VICE_ATTRIBUTE_AO_MIN_RATE\x10\x98S\x12!\n\x1c\x44\x45VICE_ATTRIBUTE_DI_MAX_RATE\x10\x99S\x12!\n\x1c\x44\x45VICE_ATTRIBUTE_DO_MAX_RATE\x10\x9aS\x12%\n DEVICE_ATTRIBUTE_CI_MAX_TIMEBASE\x10\xa0S\x12%\n DEVICE_ATTRIBUTE_CO_MAX_TIMEBASE\x10\xa2S\x12$\n\x1f\x44\x45VICE_ATTRIBUTE_NAV_PRESET_LAT\x10\xa6`\x12%\n DEVICE_ATTRIBUTE_NAV_PRESET_LONG\x10\xa7`\x12$\n\x1f\x44\x45VICE_ATTRIBUTE_NAV_PRESET_ALT\x10\xa8`\x12$\n\x1f\x44\x45VICE_ATTRIBUTE_NAV_PPS_COMPEN\x10\xaa`\x12\x1e\n\x19\x44\x45VICE_ATTRIBUTE_NAV_PDOP\x10\xb2`\x12\x1e\n\x19\x44\x45VICE_ATTRIBUTE_NAV_HDOP\x10\xb3`\x12\x1e\n\x19\x44\x45VICE_ATTRIBUTE_NAV_VDOP\x10\xb4`*\xe8\x06\n\x1a\x44\x65viceDoubleArrayAttribute\x12-\n)DEVICE_DOUBLE_ARRAY_ATTRIBUTE_UNSPECIFIED\x10\x00\x12%\n DEVICE_ATTRIBUTE_AI_VOLTAGE_RNGS\x10\x90S\x12%\n DEVICE_ATTRIBUTE_AI_CURRENT_RNGS\x10\x91S\x12\"\n\x1d\x44\x45VICE_ATTRIBUTE_AI_FREQ_RNGS\x10\x92S\x12\x1e\n\x19\x44\x45VICE_ATTRIBUTE_AI_GAINS\x10\x93S\x12:\n5DEVICE_ATTRIBUTE_AI_LOWPASS_CUTOFF_FREQ_DISCRETE_VALS\x10\x95S\x12%\n DEVICE_ATTRIBUTE_AO_VOLTAGE_RNGS\x10\x9bS\x12%\n DEVICE_ATTRIBUTE_AO_CURRENT_RNGS\x10\x9cS\x12\x1e\n\x19\x44\x45VICE_ATTRIBUTE_AO_GAINS\x10\x9dS\x12\x38\n3DEVICE_ATTRIBUTE_AI_VOLTAGE_INT_EXCIT_DISCRETE_VALS\x10\xc9S\x12\x35\n0DEVICE_ATTRIBUTE_AI_VOLTAGE_INT_EXCIT_RANGE_VALS\x10\xcaS\x12\x38\n3DEVICE_ATTRIBUTE_AI_CURRENT_INT_EXCIT_DISCRETE_VALS\x10\xcbS\x12\x37\n2DEVICE_ATTRIBUTE_AI_LOWPASS_CUTOFF_FREQ_RANGE_VALS\x10\xcfS\x12(\n#DEVICE_ATTRIBUTE_AI_RESISTANCE_RNGS\x10\x95T\x12$\n\x1f\x44\x45VICE_ATTRIBUTE_AI_BRIDGE_RNGS\x10\xd0_\x12\x43\n>DEVICE_ATTRIBUTE_AI_DIG_FLTR_LOWPASS_CUTOFF_FREQ_DISCRETE_VALS\x10\xc8\x61\x12@\n;DEVICE_ATTRIBUTE_AI_DIG_FLTR_LOWPASS_CUTOFF_FREQ_RANGE_VALS\x10\xc9\x61\x12$\n\x1f\x44\x45VICE_ATTRIBUTE_AI_CHARGE_RNGS\x10\x91\x62*\xfd\x01\n\x1a\x44\x65viceUInt32ArrayAttribute\x12-\n)DEVICE_UINT32_ARRAY_ATTRIBUTE_UNSPECIFIED\x10\x00\x12,\n\'DEVICE_ATTRIBUTE_ACCESSORY_PRODUCT_NUMS\x10\xee^\x12+\n&DEVICE_ATTRIBUTE_ACCESSORY_SERIAL_NUMS\x10\xef^\x12-\n(DEVICE_ATTRIBUTE_ID_PIN_MEM_FAMILY_CODES\x10\xf3\x63\x12&\n!DEVICE_ATTRIBUTE_ID_PIN_MEM_SIZES\x10\xf5\x63*\xc7\x04\n\x19\x44\x65viceInt32ArrayAttribute\x12,\n(DEVICE_INT32_ARRAY_ATTRIBUTE_UNSPECIFIED\x10\x00\x12-\n(DEVICE_ATTRIBUTE_AI_SUPPORTED_MEAS_TYPES\x10\xd2_\x12/\n*DEVICE_ATTRIBUTE_AO_SUPPORTED_OUTPUT_TYPES\x10\xd3_\x12-\n(DEVICE_ATTRIBUTE_CI_SUPPORTED_MEAS_TYPES\x10\xd4_\x12/\n*DEVICE_ATTRIBUTE_CO_SUPPORTED_OUTPUT_TYPES\x10\xd5_\x12#\n\x1e\x44\x45VICE_ATTRIBUTE_AI_SAMP_MODES\x10\xdc_\x12#\n\x1e\x44\x45VICE_ATTRIBUTE_AO_SAMP_MODES\x10\xdd_\x12#\n\x1e\x44\x45VICE_ATTRIBUTE_CI_SAMP_MODES\x10\xde_\x12#\n\x1e\x44\x45VICE_ATTRIBUTE_CO_SAMP_MODES\x10\xdf_\x12.\n)DEVICE_ATTRIBUTE_NAV_SUPPORTED_MEAS_TYPES\x10\xa3`\x12$\n\x1f\x44\x45VICE_ATTRIBUTE_NAV_TRIG_USAGE\x10\xa4`\x12\'\n\"DEVICE_ATTRIBUTE_AI_DIG_FLTR_TYPES\x10\x87\x62\x12)\n$DEVICE_ATTRIBUTE_ID_PIN_PIN_STATUSES\x10\xf2\x63*\x9d\x07\n\x1b\x45xportSignalDoubleAttribute\x12-\n)EXPORTSIGNAL_DOUBLE_ATTRIBUTE_UNSPECIFIED\x10\x00\x12,\n\'EXPORTSIGNAL_ATTRIBUTE_START_TRIG_DELAY\x10\x81\x0b\x12\x32\n-EXPORTSIGNAL_ATTRIBUTE_START_TRIG_PULSE_WIDTH\x10\x86\x0b\x12\x39\n4EXPORTSIGNAL_ATTRIBUTE_RDY_FOR_REF_EVENT_PULSE_WIDTH\x10\xa4,\x12\x30\n+EXPORTSIGNAL_ATTRIBUTE_ADV_TRIG_PULSE_WIDTH\x10\xc8,\x12\x37\n2EXPORTSIGNAL_ATTRIBUTE_ADV_CMPLT_EVENT_PULSE_WIDTH\x10\xd4,\x12\x37\n2EXPORTSIGNAL_ATTRIBUTE_20_MHZ_TIMEBASE_PULSE_WIDTH\x10\xe0,\x12\x30\n+EXPORTSIGNAL_ATTRIBUTE_SAMP_CLK_PULSE_WIDTH\x10\xe6,\x12\x33\n.EXPORTSIGNAL_ATTRIBUTE_AI_CONV_CLK_PULSE_WIDTH\x10\x90-\x12\x34\n/EXPORTSIGNAL_ATTRIBUTE_FREQ_OUT_CLK_PULSE_WIDTH\x10\x94.\x12\x35\n0EXPORTSIGNAL_ATTRIBUTE_CTR_OUT_EVENT_PULSE_WIDTH\x10\xa0.\x12/\n*EXPORTSIGNAL_ATTRIBUTE_REF_CLK_PULSE_WIDTH\x10\xb8.\x12\x31\n,EXPORTSIGNAL_ATTRIBUTE_ADV_CMPLT_EVENT_DELAY\x10\xd7.\x12\x31\n,EXPORTSIGNAL_ATTRIBUTE_SAMP_CLK_DELAY_OFFSET\x10\xc4\x43\x12,\n\'EXPORTSIGNAL_ATTRIBUTE_HSHK_EVENT_DELAY\x10\xbc\x45\x12\x41\n\n9EXPORTSIGNAL_ATTRIBUTE_WATCHDOG_EXPIRED_EVENT_OUTPUT_TERM\x10\xaa\x43\x12\x38\n3EXPORTSIGNAL_ATTRIBUTE_SYNC_PULSE_EVENT_OUTPUT_TERM\x10\xbc\x44\x12\x36\n1EXPORTSIGNAL_ATTRIBUTE_10_MHZ_REF_CLK_OUTPUT_TERM\x10\xee\x44\x12:\n5EXPORTSIGNAL_ATTRIBUTE_RDY_FOR_XFER_EVENT_OUTPUT_TERM\x10\xb5\x45\x12\x32\n-EXPORTSIGNAL_ATTRIBUTE_HSHK_EVENT_OUTPUT_TERM\x10\xba\x45*\xcb\x1f\n\x1a\x45xportSignalResetAttribute\x12,\n(EXPORTSIGNAL_RESET_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\x38\n3EXPORTSIGNAL_RESET_ATTRIBUTE_START_TRIG_OUTPUT_TERM\x10\x84\x0b\x12;\n6EXPORTSIGNAL_RESET_ATTRIBUTE_START_TRIG_PULSE_POLARITY\x10\x85\x0b\x12\x36\n1EXPORTSIGNAL_RESET_ATTRIBUTE_REF_TRIG_OUTPUT_TERM\x10\x90\x0b\x12\x39\n4EXPORTSIGNAL_RESET_ATTRIBUTE_REF_TRIG_PULSE_POLARITY\x10\x91\x0b\x12>\n9EXPORTSIGNAL_RESET_ATTRIBUTE_START_TRIG_PULSE_WIDTH_UNITS\x10\x82,\x12\x41\nEXPORTSIGNAL_RESET_ATTRIBUTE_ADV_CMPLT_EVENT_PULSE_WIDTH_UNITS\x10\xd3,\x12=\n8EXPORTSIGNAL_RESET_ATTRIBUTE_ADV_CMPLT_EVENT_PULSE_WIDTH\x10\xd4,\x12\x42\n=EXPORTSIGNAL_RESET_ATTRIBUTE_20_MHZ_TIMEBASE_DIVIDE_DOWN_BY_N\x10\xd6,\x12=\n8EXPORTSIGNAL_RESET_ATTRIBUTE_20_MHZ_TIMEBASE_OUTPUT_TERM\x10\xd7,\x12\x43\n>EXPORTSIGNAL_RESET_ATTRIBUTE_20_MHZ_TIMEBASE_PULSE_WIDTH_UNITS\x10\xd9,\x12\x36\n1EXPORTSIGNAL_RESET_ATTRIBUTE_SAMP_CLK_OUTPUT_TERM\x10\xe3,\x12\x39\n4EXPORTSIGNAL_RESET_ATTRIBUTE_SAMP_CLK_PULSE_POLARITY\x10\xe4,\x12<\n7EXPORTSIGNAL_RESET_ATTRIBUTE_SAMP_CLK_PULSE_WIDTH_UNITS\x10\xe5,\x12\x39\n4EXPORTSIGNAL_RESET_ATTRIBUTE_AI_CONV_CLK_OUTPUT_TERM\x10\x87-\x12?\n:EXPORTSIGNAL_RESET_ATTRIBUTE_AI_CONV_CLK_PULSE_WIDTH_UNITS\x10\x89-\x12@\n;EXPORTSIGNAL_RESET_ATTRIBUTE_FREQ_OUT_CLK_PULSE_WIDTH_UNITS\x10\x93.\x12;\n6EXPORTSIGNAL_RESET_ATTRIBUTE_CTR_OUT_EVENT_OUTPUT_TERM\x10\x97.\x12>\n9EXPORTSIGNAL_RESET_ATTRIBUTE_CTR_OUT_EVENT_PULSE_POLARITY\x10\x98.\x12\x41\n\n9EXPORTSIGNAL_RESET_ATTRIBUTE_SYNC_PULSE_EVENT_OUTPUT_TERM\x10\xbc\x44\x12<\n7EXPORTSIGNAL_RESET_ATTRIBUTE_10_MHZ_REF_CLK_OUTPUT_TERM\x10\xee\x44\x12@\n;EXPORTSIGNAL_RESET_ATTRIBUTE_RDY_FOR_XFER_EVENT_OUTPUT_TERM\x10\xb5\x45\x12\x43\n>EXPORTSIGNAL_RESET_ATTRIBUTE_RDY_FOR_XFER_EVENT_LVL_ACTIVE_LVL\x10\xb6\x45\x12\x38\n3EXPORTSIGNAL_RESET_ATTRIBUTE_HSHK_EVENT_OUTPUT_TERM\x10\xba\x45\x12<\n7EXPORTSIGNAL_RESET_ATTRIBUTE_HSHK_EVENT_OUTPUT_BEHAVIOR\x10\xbb\x45\x12\x32\n-EXPORTSIGNAL_RESET_ATTRIBUTE_HSHK_EVENT_DELAY\x10\xbc\x45\x12\x45\n@EXPORTSIGNAL_RESET_ATTRIBUTE_HSHK_EVENT_INTERLOCKED_ASSERTED_LVL\x10\xbd\x45\x12H\nCEXPORTSIGNAL_RESET_ATTRIBUTE_HSHK_EVENT_INTERLOCKED_ASSERT_ON_START\x10\xbe\x45\x12G\nBEXPORTSIGNAL_RESET_ATTRIBUTE_HSHK_EVENT_INTERLOCKED_DEASSERT_DELAY\x10\xbf\x45\x12;\n6EXPORTSIGNAL_RESET_ATTRIBUTE_HSHK_EVENT_PULSE_POLARITY\x10\xc0\x45\x12\x38\n3EXPORTSIGNAL_RESET_ATTRIBUTE_HSHK_EVENT_PULSE_WIDTH\x10\xc1\x45\x12\x44\n?EXPORTSIGNAL_RESET_ATTRIBUTE_CHANGE_DETECT_EVENT_PULSE_POLARITY\x10\x83\x46\x12\x42\n=EXPORTSIGNAL_RESET_ATTRIBUTE_RDY_FOR_XFER_EVENT_DEASSERT_COND\x10\xe3R\x12S\nNEXPORTSIGNAL_RESET_ATTRIBUTE_RDY_FOR_XFER_EVENT_DEASSERT_COND_CUSTOM_THRESHOLD\x10\xe4R*\xfa\x11\n\x1a\x45xportSignalInt32Attribute\x12,\n(EXPORTSIGNAL_INT32_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\x35\n0EXPORTSIGNAL_ATTRIBUTE_START_TRIG_PULSE_POLARITY\x10\x85\x0b\x12\x33\n.EXPORTSIGNAL_ATTRIBUTE_REF_TRIG_PULSE_POLARITY\x10\x91\x0b\x12\x38\n3EXPORTSIGNAL_ATTRIBUTE_START_TRIG_PULSE_WIDTH_UNITS\x10\x82,\x12\x35\n0EXPORTSIGNAL_ATTRIBUTE_PAUSE_TRIG_LVL_ACTIVE_LVL\x10\x96,\x12<\n7EXPORTSIGNAL_ATTRIBUTE_RDY_FOR_REF_EVENT_PULSE_POLARITY\x10\xa2,\x12?\n:EXPORTSIGNAL_ATTRIBUTE_RDY_FOR_REF_EVENT_PULSE_WIDTH_UNITS\x10\xa3,\x12<\n7EXPORTSIGNAL_ATTRIBUTE_DATA_ACTIVE_EVENT_LVL_ACTIVE_LVL\x10\xb4,\x12\x33\n.EXPORTSIGNAL_ATTRIBUTE_ADV_TRIG_PULSE_POLARITY\x10\xc6,\x12\x36\n1EXPORTSIGNAL_ATTRIBUTE_ADV_TRIG_PULSE_WIDTH_UNITS\x10\xc7,\x12:\n5EXPORTSIGNAL_ATTRIBUTE_ADV_CMPLT_EVENT_PULSE_POLARITY\x10\xd2,\x12=\n8EXPORTSIGNAL_ATTRIBUTE_ADV_CMPLT_EVENT_PULSE_WIDTH_UNITS\x10\xd3,\x12:\n5EXPORTSIGNAL_ATTRIBUTE_20_MHZ_TIMEBASE_PULSE_POLARITY\x10\xd8,\x12=\n8EXPORTSIGNAL_ATTRIBUTE_20_MHZ_TIMEBASE_PULSE_WIDTH_UNITS\x10\xd9,\x12\x33\n.EXPORTSIGNAL_ATTRIBUTE_SAMP_CLK_PULSE_POLARITY\x10\xe4,\x12\x36\n1EXPORTSIGNAL_ATTRIBUTE_SAMP_CLK_PULSE_WIDTH_UNITS\x10\xe5,\x12\x36\n1EXPORTSIGNAL_ATTRIBUTE_AI_CONV_CLK_PULSE_POLARITY\x10\x88-\x12\x39\n4EXPORTSIGNAL_ATTRIBUTE_AI_CONV_CLK_PULSE_WIDTH_UNITS\x10\x89-\x12\x37\n2EXPORTSIGNAL_ATTRIBUTE_FREQ_OUT_CLK_PULSE_POLARITY\x10\x92.\x12:\n5EXPORTSIGNAL_ATTRIBUTE_FREQ_OUT_CLK_PULSE_WIDTH_UNITS\x10\x93.\x12\x38\n3EXPORTSIGNAL_ATTRIBUTE_CTR_OUT_EVENT_PULSE_POLARITY\x10\x98.\x12;\n6EXPORTSIGNAL_ATTRIBUTE_CTR_OUT_EVENT_PULSE_WIDTH_UNITS\x10\x99.\x12\x32\n-EXPORTSIGNAL_ATTRIBUTE_REF_CLK_PULSE_POLARITY\x10\xb6.\x12\x35\n0EXPORTSIGNAL_ATTRIBUTE_REF_CLK_PULSE_WIDTH_UNITS\x10\xb7.\x12\x36\n1EXPORTSIGNAL_ATTRIBUTE_START_TRIG_OUTPUT_BEHAVIOR\x10\xc3.\x12;\n6EXPORTSIGNAL_ATTRIBUTE_START_TRIG_TOGGLE_INITIAL_STATE\x10\xc4.\x12\x32\n-EXPORTSIGNAL_ATTRIBUTE_START_TRIG_DELAY_UNITS\x10\xcd.\x12\x39\n4EXPORTSIGNAL_ATTRIBUTE_CTR_OUT_EVENT_OUTPUT_BEHAVIOR\x10\xcf.\x12\x36\n1EXPORTSIGNAL_ATTRIBUTE_CTR_OUT_EVENT_LVL_POLARITY\x10\xd0.\x12>\n9EXPORTSIGNAL_ATTRIBUTE_RDY_FOR_START_EVENT_LVL_ACTIVE_LVL\x10\xd1.\x12;\n6EXPORTSIGNAL_ATTRIBUTE_CTR_OUT_EVENT_TOGGLE_IDLE_STATE\x10\xea\x30\x12\x34\n/EXPORTSIGNAL_ATTRIBUTE_SAMP_CLK_OUTPUT_BEHAVIOR\x10\xeb\x30\x12>\n9EXPORTSIGNAL_ATTRIBUTE_AI_HOLD_CMPLT_EVENT_PULSE_POLARITY\x10\xee\x31\x12=\n8EXPORTSIGNAL_ATTRIBUTE_RDY_FOR_XFER_EVENT_LVL_ACTIVE_LVL\x10\xb6\x45\x12\x36\n1EXPORTSIGNAL_ATTRIBUTE_HSHK_EVENT_OUTPUT_BEHAVIOR\x10\xbb\x45\x12?\n:EXPORTSIGNAL_ATTRIBUTE_HSHK_EVENT_INTERLOCKED_ASSERTED_LVL\x10\xbd\x45\x12\x35\n0EXPORTSIGNAL_ATTRIBUTE_HSHK_EVENT_PULSE_POLARITY\x10\xc0\x45\x12>\n9EXPORTSIGNAL_ATTRIBUTE_CHANGE_DETECT_EVENT_PULSE_POLARITY\x10\x83\x46\x12<\n7EXPORTSIGNAL_ATTRIBUTE_RDY_FOR_XFER_EVENT_DEASSERT_COND\x10\xe3R*\xc0\x01\n\x19\x45xportSignalBoolAttribute\x12+\n\'EXPORTSIGNAL_BOOL_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\x32\n-EXPORTSIGNAL_ATTRIBUTE_ADV_CMPLT_EVENT_ENABLE\x10\xca,\x12\x42\n=EXPORTSIGNAL_ATTRIBUTE_HSHK_EVENT_INTERLOCKED_ASSERT_ON_START\x10\xbe\x45*\xd9\x01\n\x1b\x45xportSignalUInt32Attribute\x12-\n)EXPORTSIGNAL_UINT32_ATTRIBUTE_UNSPECIFIED\x10\x00\x12<\n7EXPORTSIGNAL_ATTRIBUTE_20_MHZ_TIMEBASE_DIVIDE_DOWN_BY_N\x10\xd6,\x12M\nHEXPORTSIGNAL_ATTRIBUTE_RDY_FOR_XFER_EVENT_DEASSERT_COND_CUSTOM_THRESHOLD\x10\xe4R*\xa9\x01\n\x1fPersistedChannelStringAttribute\x12\x31\n-PERSISTEDCHANNEL_STRING_ATTRIBUTE_UNSPECIFIED\x10\x00\x12+\n&PERSISTEDCHANNEL_ATTRIBUTE_ACTIVE_CHAN\x10\xcf\x45\x12&\n!PERSISTEDCHANNEL_ATTRIBUTE_AUTHOR\x10\xd0\x45*\xc7\x01\n\x1dPersistedChannelBoolAttribute\x12/\n+PERSISTEDCHANNEL_BOOL_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\x39\n4PERSISTEDCHANNEL_ATTRIBUTE_ALLOW_INTERACTIVE_EDITING\x10\xd1\x45\x12:\n5PERSISTEDCHANNEL_ATTRIBUTE_ALLOW_INTERACTIVE_DELETION\x10\xd2\x45*\xa2\x01\n\x1dPersistedScaleStringAttribute\x12/\n+PERSISTEDSCALE_STRING_ATTRIBUTE_UNSPECIFIED\x10\x00\x12*\n%PERSISTEDSCALE_ATTRIBUTE_ACTIVE_SCALE\x10\xd3\x45\x12$\n\x1fPERSISTEDSCALE_ATTRIBUTE_AUTHOR\x10\xd4\x45*\xbf\x01\n\x1bPersistedScaleBoolAttribute\x12-\n)PERSISTEDSCALE_BOOL_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\x37\n2PERSISTEDSCALE_ATTRIBUTE_ALLOW_INTERACTIVE_EDITING\x10\xd5\x45\x12\x38\n3PERSISTEDSCALE_ATTRIBUTE_ALLOW_INTERACTIVE_DELETION\x10\xd6\x45*\x9d\x01\n\x1cPersistedTaskStringAttribute\x12.\n*PERSISTEDTASK_STRING_ATTRIBUTE_UNSPECIFIED\x10\x00\x12(\n#PERSISTEDTASK_ATTRIBUTE_ACTIVE_TASK\x10\xcb\x45\x12#\n\x1ePERSISTEDTASK_ATTRIBUTE_AUTHOR\x10\xcc\x45*\xbb\x01\n\x1aPersistedTaskBoolAttribute\x12,\n(PERSISTEDTASK_BOOL_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\x36\n1PERSISTEDTASK_ATTRIBUTE_ALLOW_INTERACTIVE_EDITING\x10\xcd\x45\x12\x37\n2PERSISTEDTASK_ATTRIBUTE_ALLOW_INTERACTIVE_DELETION\x10\xce\x45*\xbe\x03\n\x1ePhysicalChannelUInt32Attribute\x12\x30\n,PHYSICALCHANNEL_UINT32_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\x38\n3PHYSICALCHANNEL_ATTRIBUTE_PHYSICAL_CHAN_TEDS_MFG_ID\x10\xda\x43\x12;\n6PHYSICALCHANNEL_ATTRIBUTE_PHYSICAL_CHAN_TEDS_MODEL_NUM\x10\xdb\x43\x12<\n7PHYSICALCHANNEL_ATTRIBUTE_PHYSICAL_CHAN_TEDS_SERIAL_NUM\x10\xdc\x43\x12=\n8PHYSICALCHANNEL_ATTRIBUTE_PHYSICAL_CHAN_TEDS_VERSION_NUM\x10\xdd\x43\x12:\n5PHYSICALCHANNEL_ATTRIBUTE_PHYSICAL_CHAN_DI_PORT_WIDTH\x10\xa4S\x12:\n5PHYSICALCHANNEL_ATTRIBUTE_PHYSICAL_CHAN_DO_PORT_WIDTH\x10\xa7S*\xd0\x01\n\x1ePhysicalChannelStringAttribute\x12\x30\n,PHYSICALCHANNEL_STRING_ATTRIBUTE_UNSPECIFIED\x10\x00\x12@\n;PHYSICALCHANNEL_ATTRIBUTE_PHYSICAL_CHAN_TEDS_VERSION_LETTER\x10\xde\x43\x12:\n5PHYSICALCHANNEL_ATTRIBUTE_PHYSICAL_CHAN_AI_INPUT_SRCS\x10\xd8_*\x8e\x01\n\x1dPhysicalChannelBytesAttribute\x12/\n+PHYSICALCHANNEL_BYTES_ATTRIBUTE_UNSPECIFIED\x10\x00\x12<\n7PHYSICALCHANNEL_ATTRIBUTE_PHYSICAL_CHAN_TEDS_BIT_STREAM\x10\xdf\x43*\x9e\x01\n#PhysicalChannelUInt32ArrayAttribute\x12\x36\n2PHYSICALCHANNEL_UINT32_ARRAY_ATTRIBUTE_UNSPECIFIED\x10\x00\x12?\n:PHYSICALCHANNEL_ATTRIBUTE_PHYSICAL_CHAN_TEDS_TEMPLATE_I_DS\x10\x8f\x45*\xce\x02\n\x1dPhysicalChannelInt32Attribute\x12/\n+PHYSICALCHANNEL_INT32_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\x39\n4PHYSICALCHANNEL_ATTRIBUTE_PHYSICAL_CHAN_AI_TERM_CFGS\x10\xc2\x46\x12\x39\n4PHYSICALCHANNEL_ATTRIBUTE_PHYSICAL_CHAN_AO_TERM_CFGS\x10\xa3S\x12\x42\n=PHYSICALCHANNEL_ATTRIBUTE_PHYSICAL_CHAN_AI_POWER_CONTROL_TYPE\x10\xee\x62\x12\x42\n=PHYSICALCHANNEL_ATTRIBUTE_PHYSICAL_CHAN_DIG_PORT_LOGIC_FAMILY\x10\xeb\x63*\x82\x06\n\x1cPhysicalChannelBoolAttribute\x12.\n*PHYSICALCHANNEL_BOOL_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\x42\n=PHYSICALCHANNEL_ATTRIBUTE_PHYSICAL_CHAN_DI_SAMP_CLK_SUPPORTED\x10\xa5S\x12G\nBPHYSICALCHANNEL_ATTRIBUTE_PHYSICAL_CHAN_DI_CHANGE_DETECT_SUPPORTED\x10\xa6S\x12\x42\n=PHYSICALCHANNEL_ATTRIBUTE_PHYSICAL_CHAN_DO_SAMP_CLK_SUPPORTED\x10\xa8S\x12\x45\n@PHYSICALCHANNEL_ATTRIBUTE_PHYSICAL_CHAN_AO_MANUAL_CONTROL_ENABLE\x10\x9eT\x12M\nHPHYSICALCHANNEL_ATTRIBUTE_PHYSICAL_CHAN_AO_MANUAL_CONTROL_SHORT_DETECTED\x10\xc3]\x12:\n5PHYSICALCHANNEL_ATTRIBUTE_AO_POWER_AMP_CHANNEL_ENABLE\x10\xe2`\x12\x37\n2PHYSICALCHANNEL_ATTRIBUTE_AO_POWER_AMP_OVERCURRENT\x10\xe4`\x12\x44\n?PHYSICALCHANNEL_ATTRIBUTE_PHYSICAL_CHAN_AI_POWER_CONTROL_ENABLE\x10\xed\x62\x12\x46\nAPHYSICALCHANNEL_ATTRIBUTE_PHYSICAL_CHAN_AI_SENSOR_POWER_OPEN_CHAN\x10\xfc\x62\x12H\nCPHYSICALCHANNEL_ATTRIBUTE_PHYSICAL_CHAN_AI_SENSOR_POWER_OVERCURRENT\x10\xfd\x62*\x8c\x04\n\x1dPhysicalChannelResetAttribute\x12/\n+PHYSICALCHANNEL_RESET_ATTRIBUTE_UNSPECIFIED\x10\x00\x12K\nFPHYSICALCHANNEL_RESET_ATTRIBUTE_PHYSICAL_CHAN_AO_MANUAL_CONTROL_ENABLE\x10\x9eT\x12@\n;PHYSICALCHANNEL_RESET_ATTRIBUTE_AO_POWER_AMP_CHANNEL_ENABLE\x10\xe2`\x12K\nFPHYSICALCHANNEL_RESET_ATTRIBUTE_PHYSICAL_CHAN_AI_POWER_CONTROL_VOLTAGE\x10\xec\x62\x12J\nEPHYSICALCHANNEL_RESET_ATTRIBUTE_PHYSICAL_CHAN_AI_POWER_CONTROL_ENABLE\x10\xed\x62\x12H\nCPHYSICALCHANNEL_RESET_ATTRIBUTE_PHYSICAL_CHAN_AI_POWER_CONTROL_TYPE\x10\xee\x62\x12H\nCPHYSICALCHANNEL_RESET_ATTRIBUTE_PHYSICAL_CHAN_DIG_PORT_LOGIC_FAMILY\x10\xeb\x63*\x8e\x03\n\x1ePhysicalChannelDoubleAttribute\x12\x30\n,PHYSICALCHANNEL_DOUBLE_ATTRIBUTE_UNSPECIFIED\x10\x00\x12H\nCPHYSICALCHANNEL_ATTRIBUTE_PHYSICAL_CHAN_AO_MANUAL_CONTROL_AMPLITUDE\x10\x9fT\x12\x43\n>PHYSICALCHANNEL_ATTRIBUTE_PHYSICAL_CHAN_AO_MANUAL_CONTROL_FREQ\x10\xa0T\x12\x30\n+PHYSICALCHANNEL_ATTRIBUTE_AO_POWER_AMP_GAIN\x10\xe5`\x12\x32\n-PHYSICALCHANNEL_ATTRIBUTE_AO_POWER_AMP_OFFSET\x10\xe6`\x12\x45\n@PHYSICALCHANNEL_ATTRIBUTE_PHYSICAL_CHAN_AI_POWER_CONTROL_VOLTAGE\x10\xec\x62*\xcb\x05\n\"PhysicalChannelInt32ArrayAttribute\x12\x35\n1PHYSICALCHANNEL_INT32_ARRAY_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\x44\n?PHYSICALCHANNEL_ATTRIBUTE_PHYSICAL_CHAN_AI_SUPPORTED_MEAS_TYPES\x10\xd7_\x12\x46\nAPHYSICALCHANNEL_ATTRIBUTE_PHYSICAL_CHAN_AO_SUPPORTED_OUTPUT_TYPES\x10\xd9_\x12\x44\n?PHYSICALCHANNEL_ATTRIBUTE_PHYSICAL_CHAN_CI_SUPPORTED_MEAS_TYPES\x10\xda_\x12\x46\nAPHYSICALCHANNEL_ATTRIBUTE_PHYSICAL_CHAN_CO_SUPPORTED_OUTPUT_TYPES\x10\xdb_\x12:\n5PHYSICALCHANNEL_ATTRIBUTE_PHYSICAL_CHAN_DI_SAMP_MODES\x10\xe0_\x12:\n5PHYSICALCHANNEL_ATTRIBUTE_PHYSICAL_CHAN_DO_SAMP_MODES\x10\xe1_\x12\x45\n@PHYSICALCHANNEL_ATTRIBUTE_PHYSICAL_CHAN_NAV_SUPPORTED_MEAS_TYPES\x10\xb7`\x12O\nJPHYSICALCHANNEL_ATTRIBUTE_PHYSICAL_CHAN_AO_SUPPORTED_POWER_UP_OUTPUT_TYPES\x10\xce`\x12\x42\n=PHYSICALCHANNEL_ATTRIBUTE_PHYSICAL_CHAN_AI_SENSOR_POWER_TYPES\x10\xf9\x62*\xe9\x01\n#PhysicalChannelDoubleArrayAttribute\x12\x36\n2PHYSICALCHANNEL_DOUBLE_ARRAY_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\x39\n4PHYSICALCHANNEL_ATTRIBUTE_AO_POWER_AMP_SCALING_COEFF\x10\xe3`\x12O\nJPHYSICALCHANNEL_ATTRIBUTE_PHYSICAL_CHAN_AI_SENSOR_POWER_VOLTAGE_RANGE_VALS\x10\xfa\x62*\x83\x02\n\x12ReadInt32Attribute\x12$\n READ_INT32_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\x1d\n\x18READ_ATTRIBUTE_OVERWRITE\x10\x91$\x12\x1f\n\x1aREAD_ATTRIBUTE_RELATIVE_TO\x10\x8a\x32\x12\x1a\n\x15READ_ATTRIBUTE_OFFSET\x10\x8b\x32\x12\x1d\n\x18READ_ATTRIBUTE_WAIT_MODE\x10\xb2\x44\x12 \n\x1bREAD_ATTRIBUTE_LOGGING_MODE\x10\xc5]\x12*\n%READ_ATTRIBUTE_LOGGING_TDMS_OPERATION\x10\xc7]*\xf7\x05\n\x12ReadResetAttribute\x12$\n READ_RESET_ATTRIBUTE_UNSPECIFIED\x10\x00\x12#\n\x1eREAD_RESET_ATTRIBUTE_OVERWRITE\x10\x91$\x12-\n(READ_RESET_ATTRIBUTE_READ_ALL_AVAIL_SAMP\x10\x95$\x12*\n%READ_RESET_ATTRIBUTE_CHANNELS_TO_READ\x10\xa3\x30\x12$\n\x1fREAD_RESET_ATTRIBUTE_AUTO_START\x10\xa6\x30\x12%\n READ_RESET_ATTRIBUTE_RELATIVE_TO\x10\x8a\x32\x12 \n\x1bREAD_RESET_ATTRIBUTE_OFFSET\x10\x8b\x32\x12#\n\x1eREAD_RESET_ATTRIBUTE_WAIT_MODE\x10\xb2\x44\x12$\n\x1fREAD_RESET_ATTRIBUTE_SLEEP_TIME\x10\xb0\x45\x12+\n&READ_RESET_ATTRIBUTE_LOGGING_FILE_PATH\x10\xc4]\x12&\n!READ_RESET_ATTRIBUTE_LOGGING_MODE\x10\xc5]\x12\x31\n,READ_RESET_ATTRIBUTE_LOGGING_TDMS_GROUP_NAME\x10\xc6]\x12\x30\n+READ_RESET_ATTRIBUTE_LOGGING_TDMS_OPERATION\x10\xc7]\x12\x31\n,READ_RESET_ATTRIBUTE_LOGGING_FILE_WRITE_SIZE\x10\xc3_\x12\x39\n4READ_RESET_ATTRIBUTE_LOGGING_FILE_PREALLOCATION_SIZE\x10\xc6_\x12\'\n\"READ_RESET_ATTRIBUTE_LOGGING_PAUSE\x10\xe3_\x12\x30\n+READ_RESET_ATTRIBUTE_LOGGING_SAMPS_PER_FILE\x10\xe4_*\x8d\x08\n\x11ReadBoolAttribute\x12#\n\x1fREAD_BOOL_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\'\n\"READ_ATTRIBUTE_READ_ALL_AVAIL_SAMP\x10\x95$\x12\x1e\n\x19READ_ATTRIBUTE_AUTO_START\x10\xa6\x30\x12*\n%READ_ATTRIBUTE_OVERLOADED_CHANS_EXIST\x10\xf4\x42\x12\x30\n+READ_ATTRIBUTE_CHANGE_DETECT_HAS_OVERFLOWED\x10\x94\x43\x12+\n&READ_ATTRIBUTE_OVERCURRENT_CHANS_EXIST\x10\xe6S\x12\x31\n,READ_ATTRIBUTE_OPEN_CURRENT_LOOP_CHANS_EXIST\x10\x89T\x12,\n\'READ_ATTRIBUTE_OPEN_THRMCPL_CHANS_EXIST\x10\x96U\x12\x37\n2READ_ATTRIBUTE_COMMON_MODE_RANGE_ERROR_CHANS_EXIST\x10\x98U\x12;\n6READ_ATTRIBUTE_ACCESSORY_INSERTION_OR_REMOVAL_DETECTED\x10\xf0^\x12!\n\x1cREAD_ATTRIBUTE_LOGGING_PAUSE\x10\xe3_\x12 \n\x1bREAD_ATTRIBUTE_NAV_FIX_LOST\x10\xb5`\x12/\n*READ_ATTRIBUTE_OVERTEMPERATURE_CHANS_EXIST\x10\x81\x61\x12+\n&READ_ATTRIBUTE_EXCIT_FAULT_CHANS_EXIST\x10\x88\x61\x12$\n\x1fREAD_ATTRIBUTE_OPEN_CHANS_EXIST\x10\x80\x62\x12,\n\'READ_ATTRIBUTE_PLL_UNLOCKED_CHANS_EXIST\x10\x98\x62\x12-\n(READ_ATTRIBUTE_SYNC_UNLOCKED_CHANS_EXIST\x10\xbd\x62\x12\x32\n-READ_ATTRIBUTE_INPUT_LIMITS_FAULT_CHANS_EXIST\x10\x8f\x63\x12\x32\n-READ_ATTRIBUTE_POWER_SUPPLY_FAULT_CHANS_EXIST\x10\x92\x63\x12\x32\n-READ_ATTRIBUTE_REMOTE_SENSE_ERROR_CHANS_EXIST\x10\xdd\x63\x12/\n*READ_ATTRIBUTE_AUX_POWER_ERROR_CHANS_EXIST\x10\xdf\x63\x12\x35\n0READ_ATTRIBUTE_REVERSE_VOLTAGE_ERROR_CHANS_EXIST\x10\xe6\x63*\xf2\x01\n\x13ReadUInt64Attribute\x12%\n!READ_UINT64_ATTRIBUTE_UNSPECIFIED\x10\x00\x12!\n\x1cREAD_ATTRIBUTE_CURR_READ_POS\x10\xa1$\x12\x30\n+READ_ATTRIBUTE_TOTAL_SAMP_PER_CHAN_ACQUIRED\x10\xaa\x32\x12\x33\n.READ_ATTRIBUTE_LOGGING_FILE_PREALLOCATION_SIZE\x10\xc6_\x12*\n%READ_ATTRIBUTE_LOGGING_SAMPS_PER_FILE\x10\xe4_*\x87\x02\n\x13ReadUInt32Attribute\x12%\n!READ_UINT32_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\'\n\"READ_ATTRIBUTE_AVAIL_SAMP_PER_CHAN\x10\xa3$\x12\"\n\x1dREAD_ATTRIBUTE_RAW_DATA_WIDTH\x10\xfa\x42\x12\x1d\n\x18READ_ATTRIBUTE_NUM_CHANS\x10\xfb\x42\x12\x30\n+READ_ATTRIBUTE_DIGITAL_LINES_BYTES_PER_CHAN\x10\xfc\x42\x12+\n&READ_ATTRIBUTE_LOGGING_FILE_WRITE_SIZE\x10\xc3_*\x9b\x07\n\x13ReadStringAttribute\x12%\n!READ_STRING_ATTRIBUTE_UNSPECIFIED\x10\x00\x12$\n\x1fREAD_ATTRIBUTE_CHANNELS_TO_READ\x10\xa3\x30\x12$\n\x1fREAD_ATTRIBUTE_OVERLOADED_CHANS\x10\xf5\x42\x12%\n READ_ATTRIBUTE_OVERCURRENT_CHANS\x10\xe7S\x12+\n&READ_ATTRIBUTE_OPEN_CURRENT_LOOP_CHANS\x10\x8aT\x12&\n!READ_ATTRIBUTE_OPEN_THRMCPL_CHANS\x10\x97U\x12\x31\n,READ_ATTRIBUTE_COMMON_MODE_RANGE_ERROR_CHANS\x10\x99U\x12%\n READ_ATTRIBUTE_LOGGING_FILE_PATH\x10\xc4]\x12+\n&READ_ATTRIBUTE_LOGGING_TDMS_GROUP_NAME\x10\xc6]\x12=\n8READ_ATTRIBUTE_DEVS_WITH_INSERTED_OR_REMOVED_ACCESSORIES\x10\xf1^\x12)\n$READ_ATTRIBUTE_OVERTEMPERATURE_CHANS\x10\x82\x61\x12%\n READ_ATTRIBUTE_EXCIT_FAULT_CHANS\x10\x89\x61\x12\x1e\n\x19READ_ATTRIBUTE_OPEN_CHANS\x10\x81\x62\x12&\n!READ_ATTRIBUTE_OPEN_CHANS_DETAILS\x10\x82\x62\x12&\n!READ_ATTRIBUTE_PLL_UNLOCKED_CHANS\x10\x99\x62\x12\'\n\"READ_ATTRIBUTE_SYNC_UNLOCKED_CHANS\x10\xbe\x62\x12,\n\'READ_ATTRIBUTE_INPUT_LIMITS_FAULT_CHANS\x10\x90\x63\x12,\n\'READ_ATTRIBUTE_POWER_SUPPLY_FAULT_CHANS\x10\x93\x63\x12,\n\'READ_ATTRIBUTE_REMOTE_SENSE_ERROR_CHANS\x10\xde\x63\x12)\n$READ_ATTRIBUTE_AUX_POWER_ERROR_CHANS\x10\xe0\x63\x12/\n*READ_ATTRIBUTE_REVERSE_VOLTAGE_ERROR_CHANS\x10\xe7\x63*\\\n\x13ReadDoubleAttribute\x12%\n!READ_DOUBLE_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\x1e\n\x19READ_ATTRIBUTE_SLEEP_TIME\x10\xb0\x45*q\n\x17RealTimeUInt32Attribute\x12)\n%REALTIME_UINT32_ATTRIBUTE_UNSPECIFIED\x10\x00\x12+\n&REALTIME_ATTRIBUTE_NUM_OF_WARMUP_ITERS\x10\xed\x45*\xd6\x02\n\x16RealTimeResetAttribute\x12(\n$REALTIME_RESET_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\x31\n,REALTIME_RESET_ATTRIBUTE_NUM_OF_WARMUP_ITERS\x10\xed\x45\x12:\n5REALTIME_RESET_ATTRIBUTE_CONV_LATE_ERRORS_TO_WARNINGS\x10\xee\x45\x12>\n9REALTIME_RESET_ATTRIBUTE_WAIT_FOR_NEXT_SAMP_CLK_WAIT_MODE\x10\xef\x45\x12\x30\n+REALTIME_RESET_ATTRIBUTE_REPORT_MISSED_SAMP\x10\x99\x46\x12\x31\n,REALTIME_RESET_ATTRIBUTE_WRITE_RECOVERY_MODE\x10\x9a\x46*\xa2\x01\n\x15RealTimeBoolAttribute\x12\'\n#REALTIME_BOOL_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\x34\n/REALTIME_ATTRIBUTE_CONV_LATE_ERRORS_TO_WARNINGS\x10\xee\x45\x12*\n%REALTIME_ATTRIBUTE_REPORT_MISSED_SAMP\x10\x99\x46*\xa9\x01\n\x16RealTimeInt32Attribute\x12(\n$REALTIME_INT32_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\x38\n3REALTIME_ATTRIBUTE_WAIT_FOR_NEXT_SAMP_CLK_WAIT_MODE\x10\xef\x45\x12+\n&REALTIME_ATTRIBUTE_WRITE_RECOVERY_MODE\x10\x9a\x46*}\n\x14ScaleStringAttribute\x12&\n\"SCALE_STRING_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\x1a\n\x15SCALE_ATTRIBUTE_DESCR\x10\xa6$\x12!\n\x1cSCALE_ATTRIBUTE_SCALED_UNITS\x10\x9b\x32*\xa0\x02\n\x14ScaleDoubleAttribute\x12&\n\"SCALE_DOUBLE_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\x1e\n\x19SCALE_ATTRIBUTE_LIN_SLOPE\x10\xa7$\x12$\n\x1fSCALE_ATTRIBUTE_LIN_Y_INTERCEPT\x10\xa8$\x12#\n\x1eSCALE_ATTRIBUTE_MAP_SCALED_MAX\x10\xa9$\x12#\n\x1eSCALE_ATTRIBUTE_MAP_SCALED_MIN\x10\xb0$\x12\'\n\"SCALE_ATTRIBUTE_MAP_PRE_SCALED_MAX\x10\xb1$\x12\'\n\"SCALE_ATTRIBUTE_MAP_PRE_SCALED_MIN\x10\xb2$*\xef\x01\n\x19ScaleDoubleArrayAttribute\x12,\n(SCALE_DOUBLE_ARRAY_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\'\n\"SCALE_ATTRIBUTE_POLY_FORWARD_COEFF\x10\xb4$\x12\'\n\"SCALE_ATTRIBUTE_POLY_REVERSE_COEFF\x10\xb5$\x12&\n!SCALE_ATTRIBUTE_TABLE_SCALED_VALS\x10\xb6$\x12*\n%SCALE_ATTRIBUTE_TABLE_PRE_SCALED_VALS\x10\xb7$*~\n\x13ScaleInt32Attribute\x12%\n!SCALE_INT32_ATTRIBUTE_UNSPECIFIED\x10\x00\x12%\n SCALE_ATTRIBUTE_PRE_SCALED_UNITS\x10\xf7\x31\x12\x19\n\x14SCALE_ATTRIBUTE_TYPE\x10\xa9\x32*\xc0\x01\n\x15SystemStringAttribute\x12\'\n#SYSTEM_STRING_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\"\n\x1dSYSTEM_ATTRIBUTE_GLOBAL_CHANS\x10\xe5$\x12\x1c\n\x17SYSTEM_ATTRIBUTE_SCALES\x10\xe6$\x12\x1b\n\x16SYSTEM_ATTRIBUTE_TASKS\x10\xe7$\x12\x1f\n\x1aSYSTEM_ATTRIBUTE_DEV_NAMES\x10\xbb\x32*\xc2\x01\n\x15SystemUInt32Attribute\x12\'\n#SYSTEM_UINT32_ATTRIBUTE_UNSPECIFIED\x10\x00\x12)\n$SYSTEM_ATTRIBUTE_NIDAQ_MAJOR_VERSION\x10\xf2$\x12)\n$SYSTEM_ATTRIBUTE_NIDAQ_MINOR_VERSION\x10\xa3\x32\x12*\n%SYSTEM_ATTRIBUTE_NIDAQ_UPDATE_VERSION\x10\xa2^*\x91\x01\n\x13TaskStringAttribute\x12%\n!TASK_STRING_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\x1c\n\x17TASK_ATTRIBUTE_CHANNELS\x10\xf3$\x12\x18\n\x13TASK_ATTRIBUTE_NAME\x10\xf6$\x12\x1b\n\x16TASK_ATTRIBUTE_DEVICES\x10\x8e\x46*V\n\x11TaskBoolAttribute\x12#\n\x1fTASK_BOOL_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\x1c\n\x17TASK_ATTRIBUTE_COMPLETE\x10\xf4$*|\n\x13TaskUInt32Attribute\x12%\n!TASK_UINT32_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\x1d\n\x18TASK_ATTRIBUTE_NUM_CHANS\x10\x81\x43\x12\x1f\n\x1aTASK_ATTRIBUTE_NUM_DEVICES\x10\xbaS*\xb0\x06\n\x14TimingInt32Attribute\x12&\n\"TIMING_INT32_ATTRIBUTE_UNSPECIFIED\x10\x00\x12*\n%TIMING_ATTRIBUTE_SAMP_QUANT_SAMP_MODE\x10\x80&\x12*\n%TIMING_ATTRIBUTE_SAMP_CLK_ACTIVE_EDGE\x10\x81&\x12\x35\n0TIMING_ATTRIBUTE_DELAY_FROM_SAMP_CLK_DELAY_UNITS\x10\x84&\x12*\n%TIMING_ATTRIBUTE_AI_CONV_TIMEBASE_SRC\x10\xb9&\x12&\n!TIMING_ATTRIBUTE_SAMP_TIMING_TYPE\x10\xc7&\x12)\n$TIMING_ATTRIBUTE_AI_CONV_ACTIVE_EDGE\x10\xd3\x30\x12\x33\n.TIMING_ATTRIBUTE_SAMP_CLK_TIMEBASE_ACTIVE_EDGE\x10\xec\x31\x12%\n TIMING_ATTRIBUTE_HSHK_START_COND\x10\xc3\x45\x12\x31\n,TIMING_ATTRIBUTE_HSHK_SAMPLE_INPUT_DATA_WHEN\x10\xc4\x45\x12\x31\n,TIMING_ATTRIBUTE_SAMP_CLK_UNDERFLOW_BEHAVIOR\x10\xe1R\x12/\n*TIMING_ATTRIBUTE_SAMP_CLK_OVERRUN_BEHAVIOR\x10\xfc]\x12\x31\n,TIMING_ATTRIBUTE_IMPLICIT_UNDERFLOW_BEHAVIOR\x10\xfd]\x12%\n TIMING_ATTRIBUTE_SYNC_PULSE_TYPE\x10\xb6\x62\x12/\n*TIMING_ATTRIBUTE_SYNC_PULSE_TIME_TIMESCALE\x10\xb8\x62\x12\x34\n/TIMING_ATTRIBUTE_FIRST_SAMP_TIMESTAMP_TIMESCALE\x10\xbb\x62\x12.\n)TIMING_ATTRIBUTE_FIRST_SAMP_CLK_TIMESCALE\x10\x83\x63*\xa9\x18\n\x14TimingResetAttribute\x12&\n\"TIMING_RESET_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\x30\n+TIMING_RESET_ATTRIBUTE_SAMP_QUANT_SAMP_MODE\x10\x80&\x12\x30\n+TIMING_RESET_ATTRIBUTE_SAMP_CLK_ACTIVE_EDGE\x10\x81&\x12\x32\n-TIMING_RESET_ATTRIBUTE_SAMP_CLK_TIMEBASE_RATE\x10\x83&\x12;\n6TIMING_RESET_ATTRIBUTE_DELAY_FROM_SAMP_CLK_DELAY_UNITS\x10\x84&\x12\x41\n\n9TRIGGER_RESET_ATTRIBUTE_DIG_EDGE_ADV_TRIG_DIG_FLTR_ENABLE\x10\xb8\x44\x12+\n&TRIGGER_RESET_ATTRIBUTE_HSHK_TRIG_TYPE\x10\xb7\x45\x12\x36\n1TRIGGER_RESET_ATTRIBUTE_INTERLOCKED_HSHK_TRIG_SRC\x10\xb8\x45\x12?\n:TRIGGER_RESET_ATTRIBUTE_INTERLOCKED_HSHK_TRIG_ASSERTED_LVL\x10\xb9\x45\x12\x36\n1TRIGGER_RESET_ATTRIBUTE_REF_TRIG_AUTO_TRIG_ENABLE\x10\xc1]\x12>\n9TRIGGER_RESET_ATTRIBUTE_DIG_EDGE_REF_TRIG_DIG_FLTR_ENABLE\x10\xd7]\x12G\nBTRIGGER_RESET_ATTRIBUTE_DIG_EDGE_REF_TRIG_DIG_FLTR_MIN_PULSE_WIDTH\x10\xd8]\x12\x44\n?TRIGGER_RESET_ATTRIBUTE_DIG_EDGE_REF_TRIG_DIG_FLTR_TIMEBASE_SRC\x10\xd9]\x12\x45\n@TRIGGER_RESET_ATTRIBUTE_DIG_EDGE_REF_TRIG_DIG_FLTR_TIMEBASE_RATE\x10\xda]\x12>\n9TRIGGER_RESET_ATTRIBUTE_DIG_EDGE_REF_TRIG_DIG_SYNC_ENABLE\x10\xdb]\x12\x41\n\n9TRIGGER_RESET_ATTRIBUTE_ANLG_WIN_REF_TRIG_DIG_FLTR_ENABLE\x10\xeb]\x12G\nBTRIGGER_RESET_ATTRIBUTE_ANLG_WIN_REF_TRIG_DIG_FLTR_MIN_PULSE_WIDTH\x10\xec]\x12\x44\n?TRIGGER_RESET_ATTRIBUTE_ANLG_WIN_REF_TRIG_DIG_FLTR_TIMEBASE_SRC\x10\xed]\x12\x45\n@TRIGGER_RESET_ATTRIBUTE_ANLG_WIN_REF_TRIG_DIG_FLTR_TIMEBASE_RATE\x10\xee]\x12>\n9TRIGGER_RESET_ATTRIBUTE_ANLG_WIN_REF_TRIG_DIG_SYNC_ENABLE\x10\xef]\x12@\n;TRIGGER_RESET_ATTRIBUTE_ANLG_LVL_PAUSE_TRIG_DIG_FLTR_ENABLE\x10\xf0]\x12I\nDTRIGGER_RESET_ATTRIBUTE_ANLG_LVL_PAUSE_TRIG_DIG_FLTR_MIN_PULSE_WIDTH\x10\xf1]\x12\x46\nATRIGGER_RESET_ATTRIBUTE_ANLG_LVL_PAUSE_TRIG_DIG_FLTR_TIMEBASE_SRC\x10\xf2]\x12G\nBTRIGGER_RESET_ATTRIBUTE_ANLG_LVL_PAUSE_TRIG_DIG_FLTR_TIMEBASE_RATE\x10\xf3]\x12@\n;TRIGGER_RESET_ATTRIBUTE_ANLG_LVL_PAUSE_TRIG_DIG_SYNC_ENABLE\x10\xf4]\x12@\n;TRIGGER_RESET_ATTRIBUTE_ANLG_WIN_PAUSE_TRIG_DIG_FLTR_ENABLE\x10\xf5]\x12I\nDTRIGGER_RESET_ATTRIBUTE_ANLG_WIN_PAUSE_TRIG_DIG_FLTR_MIN_PULSE_WIDTH\x10\xf6]\x12\x46\nATRIGGER_RESET_ATTRIBUTE_ANLG_WIN_PAUSE_TRIG_DIG_FLTR_TIMEBASE_SRC\x10\xf7]\x12G\nBTRIGGER_RESET_ATTRIBUTE_ANLG_WIN_PAUSE_TRIG_DIG_FLTR_TIMEBASE_RATE\x10\xf8]\x12@\n;TRIGGER_RESET_ATTRIBUTE_ANLG_WIN_PAUSE_TRIG_DIG_SYNC_ENABLE\x10\xf9]\x12@\n;TRIGGER_RESET_ATTRIBUTE_ANLG_WIN_START_TRIG_DIG_FLTR_ENABLE\x10\xff]\x12I\nDTRIGGER_RESET_ATTRIBUTE_ANLG_WIN_START_TRIG_DIG_FLTR_MIN_PULSE_WIDTH\x10\x80^\x12\x46\nATRIGGER_RESET_ATTRIBUTE_ANLG_WIN_START_TRIG_DIG_FLTR_TIMEBASE_SRC\x10\x81^\x12G\nBTRIGGER_RESET_ATTRIBUTE_ANLG_WIN_START_TRIG_DIG_FLTR_TIMEBASE_RATE\x10\x82^\x12@\n;TRIGGER_RESET_ATTRIBUTE_ANLG_WIN_START_TRIG_DIG_SYNC_ENABLE\x10\x83^\x12.\n)TRIGGER_RESET_ATTRIBUTE_TRIGGER_SYNC_TYPE\x10\x80_\x12\x30\n+TRIGGER_RESET_ATTRIBUTE_TIME_START_TRIG_SRC\x10\x9d`\x12\x31\n,TRIGGER_RESET_ATTRIBUTE_START_TRIG_TIMESCALE\x10\xb6`\x12\x31\n,TRIGGER_RESET_ATTRIBUTE_START_TRIG_TRIG_WHEN\x10\xcd`\x12\x30\n+TRIGGER_RESET_ATTRIBUTE_START_TRIG_TRIG_WIN\x10\x9a\x62\x12\x35\n0TRIGGER_RESET_ATTRIBUTE_START_TRIG_RETRIGGER_WIN\x10\x9b\x62\x12?\n:TRIGGER_RESET_ATTRIBUTE_START_TRIG_MAX_NUM_TRIGS_TO_DETECT\x10\x9c\x62\x12\x33\n.TRIGGER_RESET_ATTRIBUTE_REF_TRIG_RETRIGGERABLE\x10\x9d\x62\x12.\n)TRIGGER_RESET_ATTRIBUTE_REF_TRIG_TRIG_WIN\x10\x9e\x62\x12\x33\n.TRIGGER_RESET_ATTRIBUTE_REF_TRIG_RETRIGGER_WIN\x10\x9f\x62\x12=\n8TRIGGER_RESET_ATTRIBUTE_REF_TRIG_MAX_NUM_TRIGS_TO_DETECT\x10\xa0\x62\x12<\n7TRIGGER_RESET_ATTRIBUTE_ANLG_MULTI_EDGE_START_TRIG_SRCS\x10\xa1\x62\x12>\n9TRIGGER_RESET_ATTRIBUTE_ANLG_MULTI_EDGE_START_TRIG_SLOPES\x10\xa2\x62\x12<\n7TRIGGER_RESET_ATTRIBUTE_ANLG_MULTI_EDGE_START_TRIG_LVLS\x10\xa3\x62\x12=\n8TRIGGER_RESET_ATTRIBUTE_ANLG_MULTI_EDGE_START_TRIG_HYSTS\x10\xa4\x62\x12\x41\n\n9TRIGGER_ATTRIBUTE_DIG_EDGE_REF_TRIG_DIG_FLTR_TIMEBASE_SRC\x10\xd9]\x12\x41\n\n9TRIGGER_ATTRIBUTE_ANLG_WIN_REF_TRIG_DIG_FLTR_TIMEBASE_SRC\x10\xed]\x12@\n;TRIGGER_ATTRIBUTE_ANLG_LVL_PAUSE_TRIG_DIG_FLTR_TIMEBASE_SRC\x10\xf2]\x12@\n;TRIGGER_ATTRIBUTE_ANLG_WIN_PAUSE_TRIG_DIG_FLTR_TIMEBASE_SRC\x10\xf7]\x12@\n;TRIGGER_ATTRIBUTE_ANLG_WIN_START_TRIG_DIG_FLTR_TIMEBASE_SRC\x10\x81^\x12&\n!TRIGGER_ATTRIBUTE_START_TRIG_TERM\x10\x9e^\x12$\n\x1fTRIGGER_ATTRIBUTE_REF_TRIG_TERM\x10\x9f^\x12&\n!TRIGGER_ATTRIBUTE_PAUSE_TRIG_TERM\x10\xa0^\x12%\n TRIGGER_ATTRIBUTE_ARM_START_TERM\x10\xff^\x12*\n%TRIGGER_ATTRIBUTE_TIME_START_TRIG_SRC\x10\x9d`\x12\x36\n1TRIGGER_ATTRIBUTE_ANLG_MULTI_EDGE_START_TRIG_SRCS\x10\xa1\x62\x12\x34\n/TRIGGER_ATTRIBUTE_ANLG_MULTI_EDGE_REF_TRIG_SRCS\x10\xa6\x62*\xd5\x11\n\x16TriggerDoubleAttribute\x12(\n$TRIGGER_DOUBLE_ATTRIBUTE_UNSPECIFIED\x10\x00\x12/\n*TRIGGER_ATTRIBUTE_ANLG_LVL_PAUSE_TRIG_HYST\x10\xe8&\x12.\n)TRIGGER_ATTRIBUTE_ANLG_LVL_PAUSE_TRIG_LVL\x10\xe9&\x12.\n)TRIGGER_ATTRIBUTE_ANLG_WIN_PAUSE_TRIG_BTM\x10\xf5&\x12.\n)TRIGGER_ATTRIBUTE_ANLG_WIN_PAUSE_TRIG_TOP\x10\xf6&\x12\x30\n+TRIGGER_ATTRIBUTE_ANLG_EDGE_START_TRIG_HYST\x10\x95\'\x12/\n*TRIGGER_ATTRIBUTE_ANLG_EDGE_START_TRIG_LVL\x10\x96\'\x12.\n)TRIGGER_ATTRIBUTE_ANLG_WIN_START_TRIG_BTM\x10\x82(\x12.\n)TRIGGER_ATTRIBUTE_ANLG_WIN_START_TRIG_TOP\x10\x83(\x12.\n)TRIGGER_ATTRIBUTE_ANLG_EDGE_REF_TRIG_HYST\x10\xa1(\x12-\n(TRIGGER_ATTRIBUTE_ANLG_EDGE_REF_TRIG_LVL\x10\xa2(\x12,\n\'TRIGGER_ATTRIBUTE_ANLG_WIN_REF_TRIG_BTM\x10\xa8(\x12,\n\'TRIGGER_ATTRIBUTE_ANLG_WIN_REF_TRIG_TOP\x10\xa9(\x12%\n TRIGGER_ATTRIBUTE_REF_TRIG_DELAY\x10\x83)\x12\'\n\"TRIGGER_ATTRIBUTE_START_TRIG_DELAY\x10\xd6\x30\x12\x43\n>TRIGGER_ATTRIBUTE_DIG_EDGE_START_TRIG_DIG_FLTR_MIN_PULSE_WIDTH\x10\xa4\x44\x12\x41\nTRIGGER_ATTRIBUTE_ANLG_LVL_PAUSE_TRIG_DIG_FLTR_MIN_PULSE_WIDTH\x10\xf1]\x12\x41\nTRIGGER_ATTRIBUTE_ANLG_WIN_PAUSE_TRIG_DIG_FLTR_MIN_PULSE_WIDTH\x10\xf6]\x12\x41\nTRIGGER_ATTRIBUTE_ANLG_WIN_START_TRIG_DIG_FLTR_MIN_PULSE_WIDTH\x10\x80^\x12\x41\n\n9TRIGGER_ATTRIBUTE_DIG_EDGE_ARM_START_TRIG_DIG_FLTR_ENABLE\x10\xad\x44\x12>\n9TRIGGER_ATTRIBUTE_DIG_EDGE_ARM_START_TRIG_DIG_SYNC_ENABLE\x10\xb1\x44\x12\x38\n3TRIGGER_ATTRIBUTE_DIG_EDGE_ADV_TRIG_DIG_FLTR_ENABLE\x10\xb8\x44\x12\x30\n+TRIGGER_ATTRIBUTE_REF_TRIG_AUTO_TRIG_ENABLE\x10\xc1]\x12.\n)TRIGGER_ATTRIBUTE_REF_TRIG_AUTO_TRIGGERED\x10\xc2]\x12\x38\n3TRIGGER_ATTRIBUTE_DIG_EDGE_REF_TRIG_DIG_FLTR_ENABLE\x10\xd7]\x12\x38\n3TRIGGER_ATTRIBUTE_DIG_EDGE_REF_TRIG_DIG_SYNC_ENABLE\x10\xdb]\x12;\n6TRIGGER_ATTRIBUTE_ANLG_EDGE_START_TRIG_DIG_FLTR_ENABLE\x10\xe1]\x12;\n6TRIGGER_ATTRIBUTE_ANLG_EDGE_START_TRIG_DIG_SYNC_ENABLE\x10\xe5]\x12\x39\n4TRIGGER_ATTRIBUTE_ANLG_EDGE_REF_TRIG_DIG_FLTR_ENABLE\x10\xe6]\x12\x39\n4TRIGGER_ATTRIBUTE_ANLG_EDGE_REF_TRIG_DIG_SYNC_ENABLE\x10\xea]\x12\x38\n3TRIGGER_ATTRIBUTE_ANLG_WIN_REF_TRIG_DIG_FLTR_ENABLE\x10\xeb]\x12\x38\n3TRIGGER_ATTRIBUTE_ANLG_WIN_REF_TRIG_DIG_SYNC_ENABLE\x10\xef]\x12:\n5TRIGGER_ATTRIBUTE_ANLG_LVL_PAUSE_TRIG_DIG_FLTR_ENABLE\x10\xf0]\x12:\n5TRIGGER_ATTRIBUTE_ANLG_LVL_PAUSE_TRIG_DIG_SYNC_ENABLE\x10\xf4]\x12:\n5TRIGGER_ATTRIBUTE_ANLG_WIN_PAUSE_TRIG_DIG_FLTR_ENABLE\x10\xf5]\x12:\n5TRIGGER_ATTRIBUTE_ANLG_WIN_PAUSE_TRIG_DIG_SYNC_ENABLE\x10\xf9]\x12:\n5TRIGGER_ATTRIBUTE_ANLG_WIN_START_TRIG_DIG_FLTR_ENABLE\x10\xff]\x12:\n5TRIGGER_ATTRIBUTE_ANLG_WIN_START_TRIG_DIG_SYNC_ENABLE\x10\x83^\x12-\n(TRIGGER_ATTRIBUTE_REF_TRIG_RETRIGGERABLE\x10\x9d\x62\x12\x30\n+TRIGGER_ATTRIBUTE_REF_TRIG_TIMESTAMP_ENABLE\x10\xae\x62\x12\x36\n1TRIGGER_ATTRIBUTE_ARM_START_TRIG_TIMESTAMP_ENABLE\x10\xb3\x62\x12\x32\n-TRIGGER_ATTRIBUTE_START_TRIG_TIMESTAMP_ENABLE\x10\xca\x62*\xbb\x02\n\x19TriggerTimestampAttribute\x12+\n\'TRIGGER_TIMESTAMP_ATTRIBUTE_UNSPECIFIED\x10\x00\x12+\n&TRIGGER_ATTRIBUTE_START_TRIG_TRIG_WHEN\x10\xcd`\x12-\n(TRIGGER_ATTRIBUTE_REF_TRIG_TIMESTAMP_VAL\x10\xaf\x62\x12/\n*TRIGGER_ATTRIBUTE_ARM_START_TRIG_TRIG_WHEN\x10\xb1\x62\x12\x33\n.TRIGGER_ATTRIBUTE_ARM_START_TRIG_TIMESTAMP_VAL\x10\xb4\x62\x12/\n*TRIGGER_ATTRIBUTE_START_TRIG_TIMESTAMP_VAL\x10\xcb\x62*\xb5\x02\n\x1aTriggerInt32ArrayAttribute\x12-\n)TRIGGER_INT32_ARRAY_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\x38\n3TRIGGER_ATTRIBUTE_ANLG_MULTI_EDGE_START_TRIG_SLOPES\x10\xa2\x62\x12;\n6TRIGGER_ATTRIBUTE_ANLG_MULTI_EDGE_START_TRIG_COUPLINGS\x10\xa5\x62\x12\x36\n1TRIGGER_ATTRIBUTE_ANLG_MULTI_EDGE_REF_TRIG_SLOPES\x10\xa7\x62\x12\x39\n4TRIGGER_ATTRIBUTE_ANLG_MULTI_EDGE_REF_TRIG_COUPLINGS\x10\xaa\x62*\xab\x02\n\x1bTriggerDoubleArrayAttribute\x12.\n*TRIGGER_DOUBLE_ARRAY_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\x36\n1TRIGGER_ATTRIBUTE_ANLG_MULTI_EDGE_START_TRIG_LVLS\x10\xa3\x62\x12\x37\n2TRIGGER_ATTRIBUTE_ANLG_MULTI_EDGE_START_TRIG_HYSTS\x10\xa4\x62\x12\x34\n/TRIGGER_ATTRIBUTE_ANLG_MULTI_EDGE_REF_TRIG_LVLS\x10\xa8\x62\x12\x35\n0TRIGGER_ATTRIBUTE_ANLG_MULTI_EDGE_REF_TRIG_HYSTS\x10\xa9\x62*\x9e\x02\n\x16WatchdogInt32Attribute\x12(\n$WATCHDOG_INT32_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\'\n\"WATCHDOG_ATTRIBUTE_EXPIR_TRIG_TYPE\x10\xa3\x43\x12\x39\n4WATCHDOG_ATTRIBUTE_DIG_EDGE_WATCHDOG_EXPIR_TRIG_EDGE\x10\xa5\x43\x12&\n!WATCHDOG_ATTRIBUTE_DO_EXPIR_STATE\x10\xa7\x43\x12&\n!WATCHDOG_ATTRIBUTE_AO_OUTPUT_TYPE\x10\xde`\x12&\n!WATCHDOG_ATTRIBUTE_CO_EXPIR_STATE\x10\xe0`*\x95\x04\n\x16WatchdogResetAttribute\x12(\n$WATCHDOG_RESET_ATTRIBUTE_UNSPECIFIED\x10\x00\x12-\n(WATCHDOG_RESET_ATTRIBUTE_EXPIR_TRIG_TYPE\x10\xa3\x43\x12>\n9WATCHDOG_RESET_ATTRIBUTE_DIG_EDGE_WATCHDOG_EXPIR_TRIG_SRC\x10\xa4\x43\x12?\n:WATCHDOG_RESET_ATTRIBUTE_DIG_EDGE_WATCHDOG_EXPIR_TRIG_EDGE\x10\xa5\x43\x12,\n\'WATCHDOG_RESET_ATTRIBUTE_DO_EXPIR_STATE\x10\xa7\x43\x12%\n WATCHDOG_RESET_ATTRIBUTE_TIMEOUT\x10\xa9\x43\x12\x42\n=WATCHDOG_RESET_ATTRIBUTE_EXPIR_TRIG_TRIG_ON_NETWORK_CONN_LOSS\x10\xdd`\x12,\n\'WATCHDOG_RESET_ATTRIBUTE_AO_OUTPUT_TYPE\x10\xde`\x12,\n\'WATCHDOG_RESET_ATTRIBUTE_AO_EXPIR_STATE\x10\xdf`\x12,\n\'WATCHDOG_RESET_ATTRIBUTE_CO_EXPIR_STATE\x10\xe0`*~\n\x17WatchdogStringAttribute\x12)\n%WATCHDOG_STRING_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\x38\n3WATCHDOG_ATTRIBUTE_DIG_EDGE_WATCHDOG_EXPIR_TRIG_SRC\x10\xa4\x43*\xa3\x01\n\x15WatchdogBoolAttribute\x12\'\n#WATCHDOG_BOOL_ATTRIBUTE_UNSPECIFIED\x10\x00\x12#\n\x1eWATCHDOG_ATTRIBUTE_HAS_EXPIRED\x10\xa8\x43\x12<\n7WATCHDOG_ATTRIBUTE_EXPIR_TRIG_TRIG_ON_NETWORK_CONN_LOSS\x10\xdd`*\x8d\x01\n\x17WatchdogDoubleAttribute\x12)\n%WATCHDOG_DOUBLE_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\x1f\n\x1aWATCHDOG_ATTRIBUTE_TIMEOUT\x10\xa9\x43\x12&\n!WATCHDOG_ATTRIBUTE_AO_EXPIR_STATE\x10\xdf`*\xbc\x01\n\x13WriteInt32Attribute\x12%\n!WRITE_INT32_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\x1f\n\x1aWRITE_ATTRIBUTE_REGEN_MODE\x10\xd3(\x12 \n\x1bWRITE_ATTRIBUTE_RELATIVE_TO\x10\x8c\x32\x12\x1b\n\x16WRITE_ATTRIBUTE_OFFSET\x10\x8d\x32\x12\x1e\n\x19WRITE_ATTRIBUTE_WAIT_MODE\x10\xb1\x45*\xaa\x02\n\x13WriteResetAttribute\x12%\n!WRITE_RESET_ATTRIBUTE_UNSPECIFIED\x10\x00\x12%\n WRITE_RESET_ATTRIBUTE_REGEN_MODE\x10\xd3(\x12&\n!WRITE_RESET_ATTRIBUTE_RELATIVE_TO\x10\x8c\x32\x12!\n\x1cWRITE_RESET_ATTRIBUTE_OFFSET\x10\x8d\x32\x12$\n\x1fWRITE_RESET_ATTRIBUTE_WAIT_MODE\x10\xb1\x45\x12%\n WRITE_RESET_ATTRIBUTE_SLEEP_TIME\x10\xb2\x45\x12-\n(WRITE_RESET_ATTRIBUTE_NEXT_WRITE_IS_LAST\x10\xecR*\x97\x01\n\x14WriteUInt64Attribute\x12&\n\"WRITE_UINT64_ATTRIBUTE_UNSPECIFIED\x10\x00\x12#\n\x1eWRITE_ATTRIBUTE_CURR_WRITE_POS\x10\xd8(\x12\x32\n-WRITE_ATTRIBUTE_TOTAL_SAMP_PER_CHAN_GENERATED\x10\xab\x32*\xd8\x01\n\x14WriteUInt32Attribute\x12&\n\"WRITE_UINT32_ATTRIBUTE_UNSPECIFIED\x10\x00\x12 \n\x1bWRITE_ATTRIBUTE_SPACE_AVAIL\x10\xe0(\x12#\n\x1eWRITE_ATTRIBUTE_RAW_DATA_WIDTH\x10\xfd\x42\x12\x1e\n\x19WRITE_ATTRIBUTE_NUM_CHANS\x10\xfe\x42\x12\x31\n,WRITE_ATTRIBUTE_DIGITAL_LINES_BYTES_PER_CHAN\x10\xff\x42*_\n\x14WriteDoubleAttribute\x12&\n\"WRITE_DOUBLE_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\x1f\n\x1aWRITE_ATTRIBUTE_SLEEP_TIME\x10\xb2\x45*\xfe\x03\n\x12WriteBoolAttribute\x12$\n WRITE_BOOL_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\'\n\"WRITE_ATTRIBUTE_NEXT_WRITE_IS_LAST\x10\xecR\x12,\n\'WRITE_ATTRIBUTE_OVERCURRENT_CHANS_EXIST\x10\xe8S\x12\x32\n-WRITE_ATTRIBUTE_OPEN_CURRENT_LOOP_CHANS_EXIST\x10\xeaS\x12\x33\n.WRITE_ATTRIBUTE_POWER_SUPPLY_FAULT_CHANS_EXIST\x10\xecS\x12\x30\n+WRITE_ATTRIBUTE_OVERTEMPERATURE_CHANS_EXIST\x10\x84U\x12<\n7WRITE_ATTRIBUTE_ACCESSORY_INSERTION_OR_REMOVAL_DETECTED\x10\xd3`\x12+\n&WRITE_ATTRIBUTE_OVERLOADED_CHANS_EXIST\x10\x84\x61\x12\x35\n0WRITE_ATTRIBUTE_EXTERNAL_OVERVOLTAGE_CHANS_EXIST\x10\xbb\x61\x12.\n)WRITE_ATTRIBUTE_SYNC_UNLOCKED_CHANS_EXIST\x10\xbf\x62*\xb1\x03\n\x14WriteStringAttribute\x12&\n\"WRITE_STRING_ATTRIBUTE_UNSPECIFIED\x10\x00\x12&\n!WRITE_ATTRIBUTE_OVERCURRENT_CHANS\x10\xe9S\x12,\n\'WRITE_ATTRIBUTE_OPEN_CURRENT_LOOP_CHANS\x10\xebS\x12-\n(WRITE_ATTRIBUTE_POWER_SUPPLY_FAULT_CHANS\x10\xedS\x12>\n9WRITE_ATTRIBUTE_DEVS_WITH_INSERTED_OR_REMOVED_ACCESSORIES\x10\xd4`\x12*\n%WRITE_ATTRIBUTE_OVERTEMPERATURE_CHANS\x10\x83\x61\x12%\n WRITE_ATTRIBUTE_OVERLOADED_CHANS\x10\x85\x61\x12/\n*WRITE_ATTRIBUTE_EXTERNAL_OVERVOLTAGE_CHANS\x10\xbc\x61\x12(\n#WRITE_ATTRIBUTE_SYNC_UNLOCKED_CHANS\x10\xc0\x62*\x92\x01\n\x0f\x41\x43\x45xcitWireMode\x12\"\n\x1e\x41\x43_EXCIT_WIRE_MODE_UNSPECIFIED\x10\x00\x12\x1d\n\x19\x41\x43_EXCIT_WIRE_MODE_4_WIRE\x10\x04\x12\x1d\n\x19\x41\x43_EXCIT_WIRE_MODE_5_WIRE\x10\x05\x12\x1d\n\x19\x41\x43_EXCIT_WIRE_MODE_6_WIRE\x10\x06*\xa8\x02\n\x1b\x41\x63\x63\x65lChargeSensitivityUnits\x12.\n*ACCEL_CHARGE_SENSITIVITY_UNITS_UNSPECIFIED\x10\x00\x12\x37\n2ACCEL_CHARGE_SENSITIVITY_UNITS_PICO_COULOMBS_PER_G\x10\xe3}\x12O\nJACCEL_CHARGE_SENSITIVITY_UNITS_PICO_COULOMBS_PER_METERS_PER_SECOND_SQUARED\x10\xe4}\x12O\nJACCEL_CHARGE_SENSITIVITY_UNITS_PICO_COULOMBS_PER_INCHES_PER_SECOND_SQUARED\x10\xe5}*\x9a\x01\n\x16\x41\x63\x63\x65lSensitivityUnits1\x12(\n$ACCEL_SENSITIVITY_UNITS1_UNSPECIFIED\x10\x00\x12+\n&ACCEL_SENSITIVITY_UNITS1_M_VOLTS_PER_G\x10\xdd\x61\x12)\n$ACCEL_SENSITIVITY_UNITS1_VOLTS_PER_G\x10\xde\x61*\xca\x01\n\x0b\x41\x63\x63\x65lUnits2\x12\x1c\n\x18\x41\x43\x43\x45L_UNITS2_UNSPECIFIED\x10\x00\x12\x1e\n\x19\x41\x43\x43\x45L_UNITS2_ACCEL_UNIT_G\x10\xcaO\x12+\n&ACCEL_UNITS2_METERS_PER_SECOND_SQUARED\x10\xb6\x61\x12+\n&ACCEL_UNITS2_INCHES_PER_SECOND_SQUARED\x10\xb7\x61\x12#\n\x1e\x41\x43\x43\x45L_UNITS2_FROM_CUSTOM_SCALE\x10\xd1N*\xa6\x01\n\x0f\x41\x63quisitionType\x12 \n\x1c\x41\x43QUISITION_TYPE_UNSPECIFIED\x10\x00\x12\"\n\x1d\x41\x43QUISITION_TYPE_FINITE_SAMPS\x10\xc2O\x12 \n\x1b\x41\x43QUISITION_TYPE_CONT_SAMPS\x10\x8bO\x12+\n&ACQUISITION_TYPE_HW_TIMED_SINGLE_POINT\x10\xea\x61*\x86\x01\n\x0b\x41ngleUnits1\x12\x1c\n\x18\x41NGLE_UNITS1_UNSPECIFIED\x10\x00\x12\x19\n\x14\x41NGLE_UNITS1_DEGREES\x10\xa2O\x12\x19\n\x14\x41NGLE_UNITS1_RADIANS\x10\xa1P\x12#\n\x1e\x41NGLE_UNITS1_FROM_CUSTOM_SCALE\x10\xd1N*\x9f\x01\n\x0b\x41ngleUnits2\x12\x1c\n\x18\x41NGLE_UNITS2_UNSPECIFIED\x10\x00\x12\x19\n\x14\x41NGLE_UNITS2_DEGREES\x10\xa2O\x12\x19\n\x14\x41NGLE_UNITS2_RADIANS\x10\xa1P\x12\x17\n\x12\x41NGLE_UNITS2_TICKS\x10\xc0P\x12#\n\x1e\x41NGLE_UNITS2_FROM_CUSTOM_SCALE\x10\xd1N*\xee\x01\n\x14\x41ngularVelocityUnits\x12&\n\"ANGULAR_VELOCITY_UNITS_UNSPECIFIED\x10\x00\x12\x1f\n\x1a\x41NGULAR_VELOCITY_UNITS_RPM\x10\xd0}\x12.\n)ANGULAR_VELOCITY_UNITS_RADIANS_PER_SECOND\x10\xd1}\x12.\n)ANGULAR_VELOCITY_UNITS_DEGREES_PER_SECOND\x10\xd2}\x12-\n(ANGULAR_VELOCITY_UNITS_FROM_CUSTOM_SCALE\x10\xd1N*\xde\x01\n\x14\x42ridgeConfiguration1\x12%\n!BRIDGE_CONFIGURATION1_UNSPECIFIED\x10\x00\x12&\n!BRIDGE_CONFIGURATION1_FULL_BRIDGE\x10\xc6O\x12&\n!BRIDGE_CONFIGURATION1_HALF_BRIDGE\x10\xcbO\x12)\n$BRIDGE_CONFIGURATION1_QUARTER_BRIDGE\x10\x9eP\x12$\n\x1f\x42RIDGE_CONFIGURATION1_NO_BRIDGE\x10\xf4O*\x9c\x01\n\x15\x42ridgeElectricalUnits\x12\'\n#BRIDGE_ELECTRICAL_UNITS_UNSPECIFIED\x10\x00\x12+\n&BRIDGE_ELECTRICAL_UNITS_VOLTS_PER_VOLT\x10\x98|\x12-\n(BRIDGE_ELECTRICAL_UNITS_M_VOLTS_PER_VOLT\x10\x99|*\xc7\x03\n\x13\x42ridgePhysicalUnits\x12%\n!BRIDGE_PHYSICAL_UNITS_UNSPECIFIED\x10\x00\x12\"\n\x1d\x42RIDGE_PHYSICAL_UNITS_NEWTONS\x10\x83|\x12!\n\x1c\x42RIDGE_PHYSICAL_UNITS_POUNDS\x10\x84|\x12)\n$BRIDGE_PHYSICAL_UNITS_KILOGRAM_FORCE\x10\x85|\x12\"\n\x1d\x42RIDGE_PHYSICAL_UNITS_PASCALS\x10\xe1N\x12\x31\n,BRIDGE_PHYSICAL_UNITS_POUNDS_PER_SQUARE_INCH\x10\x87|\x12\x1e\n\x19\x42RIDGE_PHYSICAL_UNITS_BAR\x10\x88|\x12(\n#BRIDGE_PHYSICAL_UNITS_NEWTON_METERS\x10\x89|\x12&\n!BRIDGE_PHYSICAL_UNITS_INCH_OUNCES\x10\x8a|\x12&\n!BRIDGE_PHYSICAL_UNITS_INCH_POUNDS\x10\x8b|\x12&\n!BRIDGE_PHYSICAL_UNITS_FOOT_POUNDS\x10\x8c|*\xb3\x01\n\x0b\x42ridgeUnits\x12\x1c\n\x18\x42RIDGE_UNITS_UNSPECIFIED\x10\x00\x12 \n\x1b\x42RIDGE_UNITS_VOLTS_PER_VOLT\x10\x98|\x12\"\n\x1d\x42RIDGE_UNITS_M_VOLTS_PER_VOLT\x10\x99|\x12#\n\x1e\x42RIDGE_UNITS_FROM_CUSTOM_SCALE\x10\xd1N\x12\x1b\n\x16\x42RIDGE_UNITS_FROM_TEDS\x10\xe4\x61*w\n\nCJCSource1\x12\x1b\n\x17\x43JC_SOURCE1_UNSPECIFIED\x10\x00\x12\x19\n\x14\x43JC_SOURCE1_BUILT_IN\x10\xd8O\x12\x1a\n\x15\x43JC_SOURCE1_CONST_VAL\x10\x84O\x12\x15\n\x10\x43JC_SOURCE1_CHAN\x10\x81O*\x8d\x01\n\x0b\x43hargeUnits\x12\x1c\n\x18\x43HARGE_UNITS_UNSPECIFIED\x10\x00\x12\x1a\n\x15\x43HARGE_UNITS_COULOMBS\x10\xe6}\x12\x1f\n\x1a\x43HARGE_UNITS_PICO_COULOMBS\x10\xe7}\x12#\n\x1e\x43HARGE_UNITS_FROM_CUSTOM_SCALE\x10\xd1N*\x9b\x01\n\x0f\x43ountDirection1\x12 \n\x1c\x43OUNT_DIRECTION1_UNSPECIFIED\x10\x00\x12\x1e\n\x19\x43OUNT_DIRECTION1_COUNT_UP\x10\x90O\x12 \n\x1b\x43OUNT_DIRECTION1_COUNT_DOWN\x10\x8cO\x12$\n\x1f\x43OUNT_DIRECTION1_EXT_CONTROLLED\x10\xd6P*\xf5\x01\n\x16\x43ounterFrequencyMethod\x12(\n$COUNTER_FREQUENCY_METHOD_UNSPECIFIED\x10\x00\x12,\n\'COUNTER_FREQUENCY_METHOD_LOW_FREQ_1_CTR\x10\xf9N\x12-\n(COUNTER_FREQUENCY_METHOD_HIGH_FREQ_2_CTR\x10\xadO\x12-\n(COUNTER_FREQUENCY_METHOD_LARGE_RNG_2_CTR\x10\xddO\x12%\n COUNTER_FREQUENCY_METHOD_DYN_AVG\x10\xc1}*\xa2\x02\n\'CurrentShuntResistorLocationWithDefault\x12<\n8CURRENT_SHUNT_RESISTOR_LOCATION_WITH_DEFAULT_UNSPECIFIED\x10\x00\x12\x41\n4CURRENT_SHUNT_RESISTOR_LOCATION_WITH_DEFAULT_DEFAULT\x10\xff\xff\xff\xff\xff\xff\xff\xff\xff\x01\x12:\n5CURRENT_SHUNT_RESISTOR_LOCATION_WITH_DEFAULT_INTERNAL\x10\xd8O\x12:\n5CURRENT_SHUNT_RESISTOR_LOCATION_WITH_DEFAULT_EXTERNAL\x10\xb7O*p\n\rCurrentUnits2\x12\x1e\n\x1a\x43URRENT_UNITS2_UNSPECIFIED\x10\x00\x12\x18\n\x13\x43URRENT_UNITS2_AMPS\x10\xe6P\x12%\n CURRENT_UNITS2_FROM_CUSTOM_SCALE\x10\xd1N*\xb6\x01\n\x10\x44igitalLineState\x12\"\n\x1e\x44IGITAL_LINE_STATE_UNSPECIFIED\x10\x00\x12\x1c\n\x17\x44IGITAL_LINE_STATE_HIGH\x10\xd0O\x12\x1b\n\x16\x44IGITAL_LINE_STATE_LOW\x10\xe6O\x12 \n\x1b\x44IGITAL_LINE_STATE_TRISTATE\x10\xc6P\x12!\n\x1c\x44IGITAL_LINE_STATE_NO_CHANGE\x10\xb0O*\xaf\x01\n\x18\x44igitalPatternCondition1\x12*\n&DIGITAL_PATTERN_CONDITION1_UNSPECIFIED\x10\x00\x12/\n*DIGITAL_PATTERN_CONDITION1_PATTERN_MATCHES\x10\x8eP\x12\x36\n1DIGITAL_PATTERN_CONDITION1_PATTERN_DOES_NOT_MATCH\x10\x8dP*]\n\x12\x44igitalWidthUnits3\x12$\n DIGITAL_WIDTH_UNITS3_UNSPECIFIED\x10\x00\x12!\n\x1c\x44IGITAL_WIDTH_UNITS3_SECONDS\x10\xfcP*\xae\x03\n$EddyCurrentProxProbeSensitivityUnits\x12\x39\n5EDDY_CURRENT_PROX_PROBE_SENSITIVITY_UNITS_UNSPECIFIED\x10\x00\x12>\n9EDDY_CURRENT_PROX_PROBE_SENSITIVITY_UNITS_M_VOLTS_PER_MIL\x10\xf4s\x12<\n7EDDY_CURRENT_PROX_PROBE_SENSITIVITY_UNITS_VOLTS_PER_MIL\x10\xf5s\x12\x45\n@EDDY_CURRENT_PROX_PROBE_SENSITIVITY_UNITS_M_VOLTS_PER_MILLIMETER\x10\xf6s\x12\x43\n>EDDY_CURRENT_PROX_PROBE_SENSITIVITY_UNITS_VOLTS_PER_MILLIMETER\x10\xf7s\x12\x41\nSTRAIN_GAGE_ROSETTE_MEASUREMENT_TYPE_CARTESIAN_SHEAR_STRAIN_XY\x10\xe8|\x12:\n5STRAIN_GAGE_ROSETTE_MEASUREMENT_TYPE_MAX_SHEAR_STRAIN\x10\xe9|\x12@\n;STRAIN_GAGE_ROSETTE_MEASUREMENT_TYPE_MAX_SHEAR_STRAIN_ANGLE\x10\xea|*\xcc\x01\n\x15StrainGageRosetteType\x12(\n$STRAIN_GAGE_ROSETTE_TYPE_UNSPECIFIED\x10\x00\x12\x31\n,STRAIN_GAGE_ROSETTE_TYPE_RECTANGULAR_ROSETTE\x10\xe0|\x12+\n&STRAIN_GAGE_ROSETTE_TYPE_DELTA_ROSETTE\x10\xe1|\x12)\n$STRAIN_GAGE_ROSETTE_TYPE_TEE_ROSETTE\x10\xe2|*n\n\x0cStrainUnits1\x12\x1d\n\x19STRAIN_UNITS1_UNSPECIFIED\x10\x00\x12\x19\n\x14STRAIN_UNITS1_STRAIN\x10\xbbP\x12$\n\x1fSTRAIN_UNITS1_FROM_CUSTOM_SCALE\x10\xd1N*e\n\tTEDSUnits\x12\x1a\n\x16TEDS_UNITS_UNSPECIFIED\x10\x00\x12!\n\x1cTEDS_UNITS_FROM_CUSTOM_SCALE\x10\xd1N\x12\x19\n\x14TEDS_UNITS_FROM_TEDS\x10\xe4\x61*\x96\x02\n\x11TaskControlAction\x12\"\n\x1eTASK_CONTROL_ACTION_TASK_START\x10\x00\x12!\n\x1dTASK_CONTROL_ACTION_TASK_STOP\x10\x01\x12#\n\x1fTASK_CONTROL_ACTION_TASK_VERIFY\x10\x02\x12#\n\x1fTASK_CONTROL_ACTION_TASK_COMMIT\x10\x03\x12$\n TASK_CONTROL_ACTION_TASK_RESERVE\x10\x04\x12&\n\"TASK_CONTROL_ACTION_TASK_UNRESERVE\x10\x05\x12\"\n\x1eTASK_CONTROL_ACTION_TASK_ABORT\x10\x06*\xaf\x01\n\x10TemperatureUnits\x12!\n\x1dTEMPERATURE_UNITS_UNSPECIFIED\x10\x00\x12\x1c\n\x17TEMPERATURE_UNITS_DEG_C\x10\x9fO\x12\x1c\n\x17TEMPERATURE_UNITS_DEG_F\x10\xa0O\x12\x1e\n\x19TEMPERATURE_UNITS_KELVINS\x10\xd5P\x12\x1c\n\x17TEMPERATURE_UNITS_DEG_R\x10\xa1O*\xcf\x02\n\x11ThermocoupleType1\x12\"\n\x1eTHERMOCOUPLE_TYPE1_UNSPECIFIED\x10\x00\x12!\n\x1cTHERMOCOUPLE_TYPE1_J_TYPE_TC\x10\xd8N\x12!\n\x1cTHERMOCOUPLE_TYPE1_K_TYPE_TC\x10\xd9N\x12!\n\x1cTHERMOCOUPLE_TYPE1_N_TYPE_TC\x10\xddN\x12!\n\x1cTHERMOCOUPLE_TYPE1_R_TYPE_TC\x10\xe2N\x12!\n\x1cTHERMOCOUPLE_TYPE1_S_TYPE_TC\x10\xe5N\x12!\n\x1cTHERMOCOUPLE_TYPE1_T_TYPE_TC\x10\xe6N\x12!\n\x1cTHERMOCOUPLE_TYPE1_B_TYPE_TC\x10\xbfN\x12!\n\x1cTHERMOCOUPLE_TYPE1_E_TYPE_TC\x10\xc7N*c\n\tTimeUnits\x12\x1a\n\x16TIME_UNITS_UNSPECIFIED\x10\x00\x12\x17\n\x12TIME_UNITS_SECONDS\x10\xfcP\x12!\n\x1cTIME_UNITS_FROM_CUSTOM_SCALE\x10\xd1N*\x7f\n\nTimeUnits3\x12\x1b\n\x17TIME_UNITS3_UNSPECIFIED\x10\x00\x12\x18\n\x13TIME_UNITS3_SECONDS\x10\xfcP\x12\x16\n\x11TIME_UNITS3_TICKS\x10\xc0P\x12\"\n\x1dTIME_UNITS3_FROM_CUSTOM_SCALE\x10\xd1N*c\n\nTimescale2\x12\x1a\n\x16TIMESCALE2_UNSPECIFIED\x10\x00\x12\x19\n\x14TIMESCALE2_HOST_TIME\x10\xfe}\x12\x1e\n\x19TIMESCALE2_IO_DEVICE_TIME\x10\xff}*\xd2\x01\n\x0eTimestampEvent\x12\x1f\n\x1bTIMESTAMP_EVENT_UNSPECIFIED\x10\x00\x12\"\n\x1dTIMESTAMP_EVENT_START_TRIGGER\x10\xcb\x61\x12&\n!TIMESTAMP_EVENT_REFERENCE_TRIGGER\x10\xca\x61\x12&\n!TIMESTAMP_EVENT_ARM_START_TRIGGER\x10\xb1r\x12+\n&TIMESTAMP_EVENT_FIRST_SAMPLE_TIMESTAMP\x10\x82~*\xce\x01\n\x0bTorqueUnits\x12\x1c\n\x18TORQUE_UNITS_UNSPECIFIED\x10\x00\x12\x1f\n\x1aTORQUE_UNITS_NEWTON_METERS\x10\x89|\x12\x1d\n\x18TORQUE_UNITS_INCH_OUNCES\x10\x8a|\x12\x1d\n\x18TORQUE_UNITS_INCH_POUNDS\x10\x8b|\x12\x1d\n\x18TORQUE_UNITS_FOOT_POUNDS\x10\x8c|\x12#\n\x1eTORQUE_UNITS_FROM_CUSTOM_SCALE\x10\xd1N*\xb4\n\n\x0eUnitsPreScaled\x12 \n\x1cUNITS_PRE_SCALED_UNSPECIFIED\x10\x00\x12\x1b\n\x16UNITS_PRE_SCALED_VOLTS\x10\xecP\x12\x1a\n\x15UNITS_PRE_SCALED_AMPS\x10\xe6P\x12\x1b\n\x16UNITS_PRE_SCALED_DEG_F\x10\xa0O\x12\x1b\n\x16UNITS_PRE_SCALED_DEG_C\x10\x9fO\x12\x1b\n\x16UNITS_PRE_SCALED_DEG_R\x10\xa1O\x12\x1d\n\x18UNITS_PRE_SCALED_KELVINS\x10\xd5P\x12\x1c\n\x17UNITS_PRE_SCALED_STRAIN\x10\xbbP\x12\x1a\n\x15UNITS_PRE_SCALED_OHMS\x10\x90Q\x12\x18\n\x13UNITS_PRE_SCALED_HZ\x10\x85Q\x12\x1d\n\x18UNITS_PRE_SCALED_SECONDS\x10\xfcP\x12\x1c\n\x17UNITS_PRE_SCALED_METERS\x10\xebO\x12\x1c\n\x17UNITS_PRE_SCALED_INCHES\x10\x8bQ\x12\x1d\n\x18UNITS_PRE_SCALED_DEGREES\x10\xa2O\x12\x1d\n\x18UNITS_PRE_SCALED_RADIANS\x10\xa1P\x12\x1b\n\x16UNITS_PRE_SCALED_TICKS\x10\xc0P\x12\x19\n\x14UNITS_PRE_SCALED_RPM\x10\xd0}\x12(\n#UNITS_PRE_SCALED_RADIANS_PER_SECOND\x10\xd1}\x12(\n#UNITS_PRE_SCALED_DEGREES_PER_SECOND\x10\xd2}\x12\x17\n\x12UNITS_PRE_SCALED_G\x10\xcaO\x12/\n*UNITS_PRE_SCALED_METERS_PER_SECOND_SQUARED\x10\xb6\x61\x12/\n*UNITS_PRE_SCALED_INCHES_PER_SECOND_SQUARED\x10\xb7\x61\x12\'\n\"UNITS_PRE_SCALED_METERS_PER_SECOND\x10\xd7|\x12\'\n\"UNITS_PRE_SCALED_INCHES_PER_SECOND\x10\xd8|\x12\x1d\n\x18UNITS_PRE_SCALED_PASCALS\x10\xe1N\x12\x1d\n\x18UNITS_PRE_SCALED_NEWTONS\x10\x83|\x12\x1c\n\x17UNITS_PRE_SCALED_POUNDS\x10\x84|\x12$\n\x1fUNITS_PRE_SCALED_KILOGRAM_FORCE\x10\x85|\x12,\n\'UNITS_PRE_SCALED_POUNDS_PER_SQUARE_INCH\x10\x87|\x12\x19\n\x14UNITS_PRE_SCALED_BAR\x10\x88|\x12#\n\x1eUNITS_PRE_SCALED_NEWTON_METERS\x10\x89|\x12!\n\x1cUNITS_PRE_SCALED_INCH_OUNCES\x10\x8a|\x12!\n\x1cUNITS_PRE_SCALED_INCH_POUNDS\x10\x8b|\x12!\n\x1cUNITS_PRE_SCALED_FOOT_POUNDS\x10\x8c|\x12$\n\x1fUNITS_PRE_SCALED_VOLTS_PER_VOLT\x10\x98|\x12&\n!UNITS_PRE_SCALED_M_VOLTS_PER_VOLT\x10\x99|\x12\x1e\n\x19UNITS_PRE_SCALED_COULOMBS\x10\xe6}\x12#\n\x1eUNITS_PRE_SCALED_PICO_COULOMBS\x10\xe7}\x12\x1f\n\x1aUNITS_PRE_SCALED_FROM_TEDS\x10\xe4\x61*\xfb\x01\n\"VelocityIEPESensorSensitivityUnits\x12\x36\n2VELOCITY_IEPE_SENSOR_SENSITIVITY_UNITS_UNSPECIFIED\x10\x00\x12P\nKVELOCITY_IEPE_SENSOR_SENSITIVITY_UNITS_MILLIVOLTS_PER_MILLIMETER_PER_SECOND\x10\xdb|\x12K\nFVELOCITY_IEPE_SENSOR_SENSITIVITY_UNITS_MILLI_VOLTS_PER_INCH_PER_SECOND\x10\xdc|*\xa4\x01\n\rVelocityUnits\x12\x1e\n\x1aVELOCITY_UNITS_UNSPECIFIED\x10\x00\x12%\n VELOCITY_UNITS_METERS_PER_SECOND\x10\xd7|\x12%\n VELOCITY_UNITS_INCHES_PER_SECOND\x10\xd8|\x12%\n VELOCITY_UNITS_FROM_CUSTOM_SCALE\x10\xd1N*q\n\rVoltageUnits2\x12\x1e\n\x1aVOLTAGE_UNITS2_UNSPECIFIED\x10\x00\x12\x19\n\x14VOLTAGE_UNITS2_VOLTS\x10\xecP\x12%\n VOLTAGE_UNITS2_FROM_CUSTOM_SCALE\x10\xd1N*\xb3\x01\n\x14WatchdogAOOutputType\x12\'\n#WATCHDOG_AO_OUTPUT_TYPE_UNSPECIFIED\x10\x00\x12$\n\x1fWATCHDOG_AO_OUTPUT_TYPE_VOLTAGE\x10\xd2P\x12$\n\x1fWATCHDOG_AO_OUTPUT_TYPE_CURRENT\x10\x96O\x12&\n!WATCHDOG_AO_OUTPUT_TYPE_NO_CHANGE\x10\xb0O*\xac\x01\n\x14WatchdogCOExpirState\x12\'\n#WATCHDOG_CO_EXPIR_STATE_UNSPECIFIED\x10\x00\x12 \n\x1bWATCHDOG_CO_EXPIR_STATE_LOW\x10\xe6O\x12!\n\x1cWATCHDOG_CO_EXPIR_STATE_HIGH\x10\xd0O\x12&\n!WATCHDOG_CO_EXPIR_STATE_NO_CHANGE\x10\xb0O*n\n\x15WatchdogControlAction\x12\'\n#WATCHDOG_CONTROL_ACTION_RESET_TIMER\x10\x00\x12,\n(WATCHDOG_CONTROL_ACTION_CLEAR_EXPIRATION\x10\x01*\x9d\x01\n\x17WindowTriggerCondition1\x12)\n%WINDOW_TRIGGER_CONDITION1_UNSPECIFIED\x10\x00\x12+\n&WINDOW_TRIGGER_CONDITION1_ENTERING_WIN\x10\xb3O\x12*\n%WINDOW_TRIGGER_CONDITION1_LEAVING_WIN\x10\xe0O*\xc9\x01\n\x15WriteBasicTEDSOptions\x12(\n$WRITE_BASIC_TEDS_OPTIONS_UNSPECIFIED\x10\x00\x12-\n(WRITE_BASIC_TEDS_OPTIONS_WRITE_TO_EEPROM\x10\xfa\x61\x12+\n&WRITE_BASIC_TEDS_OPTIONS_WRITE_TO_PROM\x10\xfb\x61\x12*\n%WRITE_BASIC_TEDS_OPTIONS_DO_NOT_WRITE\x10\xfc\x61*\xc1\x99\x01\n\x1b\x43hannelInt32AttributeValues\x12\x1d\n\x19\x43HANNEL_INT32_UNSPECIFIED\x10\x00\x12+\n\'CHANNEL_INT32_AC_EXCIT_WIRE_MODE_4_WIRE\x10\x04\x12+\n\'CHANNEL_INT32_AC_EXCIT_WIRE_MODE_5_WIRE\x10\x05\x12+\n\'CHANNEL_INT32_AC_EXCIT_WIRE_MODE_6_WIRE\x10\x06\x12,\n\'CHANNEL_INT32_ADC_TIMING_MODE_AUTOMATIC\x10\xe1}\x12\x32\n-CHANNEL_INT32_ADC_TIMING_MODE_HIGH_RESOLUTION\x10\xd3O\x12-\n(CHANNEL_INT32_ADC_TIMING_MODE_HIGH_SPEED\x10\xf8r\x12\x37\n2CHANNEL_INT32_ADC_TIMING_MODE_BEST_50_HZ_REJECTION\x10\xf9r\x12\x37\n2CHANNEL_INT32_ADC_TIMING_MODE_BEST_60_HZ_REJECTION\x10\xfar\x12)\n$CHANNEL_INT32_ADC_TIMING_MODE_CUSTOM\x10\x99O\x12.\n)CHANNEL_INT32_AI_MEASUREMENT_TYPE_VOLTAGE\x10\xd2P\x12\x32\n-CHANNEL_INT32_AI_MEASUREMENT_TYPE_VOLTAGE_RMS\x10\xeeP\x12.\n)CHANNEL_INT32_AI_MEASUREMENT_TYPE_CURRENT\x10\x96O\x12\x32\n-CHANNEL_INT32_AI_MEASUREMENT_TYPE_CURRENT_RMS\x10\xefP\x12\x45\n@CHANNEL_INT32_AI_MEASUREMENT_TYPE_VOLTAGE_CUSTOM_WITH_EXCITATION\x10\xd3P\x12-\n(CHANNEL_INT32_AI_MEASUREMENT_TYPE_BRIDGE\x10\xa4|\x12\x33\n.CHANNEL_INT32_AI_MEASUREMENT_TYPE_FREQ_VOLTAGE\x10\xc5O\x12\x31\n,CHANNEL_INT32_AI_MEASUREMENT_TYPE_RESISTANCE\x10\xa6P\x12.\n)CHANNEL_INT32_AI_MEASUREMENT_TYPE_TEMP_TC\x10\xbfP\x12\x33\n.CHANNEL_INT32_AI_MEASUREMENT_TYPE_TEMP_THRMSTR\x10\xbeP\x12/\n*CHANNEL_INT32_AI_MEASUREMENT_TYPE_TEMP_RTD\x10\xbdP\x12;\n6CHANNEL_INT32_AI_MEASUREMENT_TYPE_TEMP_BUILT_IN_SENSOR\x10\xc7P\x12\x32\n-CHANNEL_INT32_AI_MEASUREMENT_TYPE_STRAIN_GAGE\x10\xbcP\x12:\n5CHANNEL_INT32_AI_MEASUREMENT_TYPE_ROSETTE_STRAIN_GAGE\x10\xec|\x12\x34\n/CHANNEL_INT32_AI_MEASUREMENT_TYPE_POSITION_LVDT\x10\xf0P\x12\x34\n/CHANNEL_INT32_AI_MEASUREMENT_TYPE_POSITION_RVDT\x10\xf1P\x12L\nGCHANNEL_INT32_AI_MEASUREMENT_TYPE_POSITION_EDDY_CURRENT_PROXIMITY_PROBE\x10\xf3s\x12\x34\n/CHANNEL_INT32_AI_MEASUREMENT_TYPE_ACCELEROMETER\x10\xf4P\x12:\n5CHANNEL_INT32_AI_MEASUREMENT_TYPE_ACCELERATION_CHARGE\x10\xe8}\x12\x45\n@CHANNEL_INT32_AI_MEASUREMENT_TYPE_ACCELERATION_4_WIRE_DC_VOLTAGE\x10\xea}\x12;\n6CHANNEL_INT32_AI_MEASUREMENT_TYPE_VELOCITY_IEPE_SENSOR\x10\xde|\x12\x33\n.CHANNEL_INT32_AI_MEASUREMENT_TYPE_FORCE_BRIDGE\x10\x9b|\x12\x38\n3CHANNEL_INT32_AI_MEASUREMENT_TYPE_FORCE_IEPE_SENSOR\x10\x97|\x12\x36\n1CHANNEL_INT32_AI_MEASUREMENT_TYPE_PRESSURE_BRIDGE\x10\x9e|\x12@\n;CHANNEL_INT32_AI_MEASUREMENT_TYPE_SOUND_PRESSURE_MICROPHONE\x10\xf2P\x12\x34\n/CHANNEL_INT32_AI_MEASUREMENT_TYPE_TORQUE_BRIDGE\x10\xa1|\x12\x32\n-CHANNEL_INT32_AI_MEASUREMENT_TYPE_TEDS_SENSOR\x10\xf3\x61\x12-\n(CHANNEL_INT32_AI_MEASUREMENT_TYPE_CHARGE\x10\xe9}\x12,\n\'CHANNEL_INT32_AI_MEASUREMENT_TYPE_POWER\x10\xc9~\x12\x37\n2CHANNEL_INT32_AI_MEASUREMENT_TYPE_CALCULATED_POWER\x10\xcc~\x12\x35\n0CHANNEL_INT32_AO_IDLE_OUTPUT_BEHAVIOR_ZERO_VOLTS\x10\xee\x61\x12\x39\n4CHANNEL_INT32_AO_IDLE_OUTPUT_BEHAVIOR_HIGH_IMPEDANCE\x10\xef\x61\x12\x42\n=CHANNEL_INT32_AO_IDLE_OUTPUT_BEHAVIOR_MAINTAIN_EXISTING_VALUE\x10\xf0\x61\x12\x31\n,CHANNEL_INT32_AO_OUTPUT_CHANNEL_TYPE_VOLTAGE\x10\xd2P\x12\x31\n,CHANNEL_INT32_AO_OUTPUT_CHANNEL_TYPE_CURRENT\x10\x96O\x12\x32\n-CHANNEL_INT32_AO_OUTPUT_CHANNEL_TYPE_FUNC_GEN\x10\x9es\x12\x45\n@CHANNEL_INT32_ACCEL_CHARGE_SENSITIVITY_UNITS_PICO_COULOMBS_PER_G\x10\xe3}\x12]\nXCHANNEL_INT32_ACCEL_CHARGE_SENSITIVITY_UNITS_PICO_COULOMBS_PER_METERS_PER_SECOND_SQUARED\x10\xe4}\x12]\nXCHANNEL_INT32_ACCEL_CHARGE_SENSITIVITY_UNITS_PICO_COULOMBS_PER_INCHES_PER_SECOND_SQUARED\x10\xe5}\x12\x39\n4CHANNEL_INT32_ACCEL_SENSITIVITY_UNITS1_M_VOLTS_PER_G\x10\xdd\x61\x12\x37\n2CHANNEL_INT32_ACCEL_SENSITIVITY_UNITS1_VOLTS_PER_G\x10\xde\x61\x12,\n\'CHANNEL_INT32_ACCEL_UNITS2_ACCEL_UNIT_G\x10\xcaO\x12\x39\n4CHANNEL_INT32_ACCEL_UNITS2_METERS_PER_SECOND_SQUARED\x10\xb6\x61\x12\x39\n4CHANNEL_INT32_ACCEL_UNITS2_INCHES_PER_SECOND_SQUARED\x10\xb7\x61\x12\x31\n,CHANNEL_INT32_ACCEL_UNITS2_FROM_CUSTOM_SCALE\x10\xd1N\x12\'\n\"CHANNEL_INT32_ANGLE_UNITS1_DEGREES\x10\xa2O\x12\'\n\"CHANNEL_INT32_ANGLE_UNITS1_RADIANS\x10\xa1P\x12\x31\n,CHANNEL_INT32_ANGLE_UNITS1_FROM_CUSTOM_SCALE\x10\xd1N\x12\'\n\"CHANNEL_INT32_ANGLE_UNITS2_DEGREES\x10\xa2O\x12\'\n\"CHANNEL_INT32_ANGLE_UNITS2_RADIANS\x10\xa1P\x12%\n CHANNEL_INT32_ANGLE_UNITS2_TICKS\x10\xc0P\x12\x31\n,CHANNEL_INT32_ANGLE_UNITS2_FROM_CUSTOM_SCALE\x10\xd1N\x12\'\n\"CHANNEL_INT32_ANGLE_UNITS3_DEGREES\x10\xa2O\x12\x31\n,CHANNEL_INT32_ANGLE_UNITS3_FROM_CUSTOM_SCALE\x10\xd1N\x12-\n(CHANNEL_INT32_ANGULAR_VELOCITY_UNITS_RPM\x10\xd0}\x12<\n7CHANNEL_INT32_ANGULAR_VELOCITY_UNITS_RADIANS_PER_SECOND\x10\xd1}\x12<\n7CHANNEL_INT32_ANGULAR_VELOCITY_UNITS_DEGREES_PER_SECOND\x10\xd2}\x12;\n6CHANNEL_INT32_ANGULAR_VELOCITY_UNITS_FROM_CUSTOM_SCALE\x10\xd1N\x12\'\n\"CHANNEL_INT32_AUTO_ZERO_TYPE1_NONE\x10\xf6O\x12\'\n\"CHANNEL_INT32_AUTO_ZERO_TYPE1_ONCE\x10\x84P\x12/\n*CHANNEL_INT32_AUTO_ZERO_TYPE1_EVERY_SAMPLE\x10\xb4O\x12\x34\n/CHANNEL_INT32_BRIDGE_CONFIGURATION1_FULL_BRIDGE\x10\xc6O\x12\x34\n/CHANNEL_INT32_BRIDGE_CONFIGURATION1_HALF_BRIDGE\x10\xcbO\x12\x37\n2CHANNEL_INT32_BRIDGE_CONFIGURATION1_QUARTER_BRIDGE\x10\x9eP\x12\x32\n-CHANNEL_INT32_BRIDGE_CONFIGURATION1_NO_BRIDGE\x10\xf4O\x12\x39\n4CHANNEL_INT32_BRIDGE_ELECTRICAL_UNITS_VOLTS_PER_VOLT\x10\x98|\x12;\n6CHANNEL_INT32_BRIDGE_ELECTRICAL_UNITS_M_VOLTS_PER_VOLT\x10\x99|\x12\x30\n+CHANNEL_INT32_BRIDGE_PHYSICAL_UNITS_NEWTONS\x10\x83|\x12/\n*CHANNEL_INT32_BRIDGE_PHYSICAL_UNITS_POUNDS\x10\x84|\x12\x37\n2CHANNEL_INT32_BRIDGE_PHYSICAL_UNITS_KILOGRAM_FORCE\x10\x85|\x12\x30\n+CHANNEL_INT32_BRIDGE_PHYSICAL_UNITS_PASCALS\x10\xe1N\x12?\n:CHANNEL_INT32_BRIDGE_PHYSICAL_UNITS_POUNDS_PER_SQUARE_INCH\x10\x87|\x12,\n\'CHANNEL_INT32_BRIDGE_PHYSICAL_UNITS_BAR\x10\x88|\x12\x36\n1CHANNEL_INT32_BRIDGE_PHYSICAL_UNITS_NEWTON_METERS\x10\x89|\x12\x34\n/CHANNEL_INT32_BRIDGE_PHYSICAL_UNITS_INCH_OUNCES\x10\x8a|\x12\x34\n/CHANNEL_INT32_BRIDGE_PHYSICAL_UNITS_INCH_POUNDS\x10\x8b|\x12\x34\n/CHANNEL_INT32_BRIDGE_PHYSICAL_UNITS_FOOT_POUNDS\x10\x8c|\x12\x33\n.CHANNEL_INT32_BRIDGE_SHUNT_CAL_SOURCE_BUILT_IN\x10\xd8O\x12\x38\n3CHANNEL_INT32_BRIDGE_SHUNT_CAL_SOURCE_USER_PROVIDED\x10\xb7O\x12.\n)CHANNEL_INT32_BRIDGE_UNITS_VOLTS_PER_VOLT\x10\x98|\x12\x30\n+CHANNEL_INT32_BRIDGE_UNITS_M_VOLTS_PER_VOLT\x10\x99|\x12\x31\n,CHANNEL_INT32_BRIDGE_UNITS_FROM_CUSTOM_SCALE\x10\xd1N\x12)\n$CHANNEL_INT32_BRIDGE_UNITS_FROM_TEDS\x10\xe4\x61\x12\x32\n-CHANNEL_INT32_CI_MEASUREMENT_TYPE_COUNT_EDGES\x10\x8dO\x12+\n&CHANNEL_INT32_CI_MEASUREMENT_TYPE_FREQ\x10\xc3O\x12-\n(CHANNEL_INT32_CI_MEASUREMENT_TYPE_PERIOD\x10\x90P\x12\x32\n-CHANNEL_INT32_CI_MEASUREMENT_TYPE_PULSE_WIDTH\x10\xf7P\x12\x32\n-CHANNEL_INT32_CI_MEASUREMENT_TYPE_SEMI_PERIOD\x10\xb1P\x12\x36\n1CHANNEL_INT32_CI_MEASUREMENT_TYPE_PULSE_FREQUENCY\x10\xf8{\x12\x31\n,CHANNEL_INT32_CI_MEASUREMENT_TYPE_PULSE_TIME\x10\xf9{\x12\x32\n-CHANNEL_INT32_CI_MEASUREMENT_TYPE_PULSE_TICKS\x10\xfa{\x12\x31\n,CHANNEL_INT32_CI_MEASUREMENT_TYPE_DUTY_CYCLE\x10\xc6}\x12;\n6CHANNEL_INT32_CI_MEASUREMENT_TYPE_POSITION_ANG_ENCODER\x10\xf8P\x12;\n6CHANNEL_INT32_CI_MEASUREMENT_TYPE_POSITION_LIN_ENCODER\x10\xf9P\x12;\n6CHANNEL_INT32_CI_MEASUREMENT_TYPE_VELOCITY_ANG_ENCODER\x10\xce}\x12;\n6CHANNEL_INT32_CI_MEASUREMENT_TYPE_VELOCITY_LIN_ENCODER\x10\xcf}\x12\x33\n.CHANNEL_INT32_CI_MEASUREMENT_TYPE_TWO_EDGE_SEP\x10\x9bP\x12\x34\n/CHANNEL_INT32_CI_MEASUREMENT_TYPE_GPS_TIMESTAMP\x10\xfaP\x12\'\n\"CHANNEL_INT32_CJC_SOURCE1_BUILT_IN\x10\xd8O\x12(\n#CHANNEL_INT32_CJC_SOURCE1_CONST_VAL\x10\x84O\x12#\n\x1e\x43HANNEL_INT32_CJC_SOURCE1_CHAN\x10\x81O\x12,\n\'CHANNEL_INT32_CO_OUTPUT_TYPE_PULSE_TIME\x10\x9dP\x12,\n\'CHANNEL_INT32_CO_OUTPUT_TYPE_PULSE_FREQ\x10\x87O\x12-\n(CHANNEL_INT32_CO_OUTPUT_TYPE_PULSE_TICKS\x10\x9cP\x12\"\n\x1d\x43HANNEL_INT32_CHANNEL_TYPE_AI\x10\xf4N\x12\"\n\x1d\x43HANNEL_INT32_CHANNEL_TYPE_AO\x10\xf6N\x12\"\n\x1d\x43HANNEL_INT32_CHANNEL_TYPE_DI\x10\xa7O\x12\"\n\x1d\x43HANNEL_INT32_CHANNEL_TYPE_DO\x10\xa9O\x12\"\n\x1d\x43HANNEL_INT32_CHANNEL_TYPE_CI\x10\x93O\x12\"\n\x1d\x43HANNEL_INT32_CHANNEL_TYPE_CO\x10\x94O\x12(\n#CHANNEL_INT32_CHARGE_UNITS_COULOMBS\x10\xe6}\x12-\n(CHANNEL_INT32_CHARGE_UNITS_PICO_COULOMBS\x10\xe7}\x12\x31\n,CHANNEL_INT32_CHARGE_UNITS_FROM_CUSTOM_SCALE\x10\xd1N\x12\x35\n0CHANNEL_INT32_CONSTRAINED_GEN_MODE_UNCONSTRAINED\x10\xf4r\x12\x37\n2CHANNEL_INT32_CONSTRAINED_GEN_MODE_FIXED_HIGH_FREQ\x10\xf5r\x12\x36\n1CHANNEL_INT32_CONSTRAINED_GEN_MODE_FIXED_LOW_FREQ\x10\xf6r\x12\x43\n>CHANNEL_INT32_CONSTRAINED_GEN_MODE_FIXED_50_PERCENT_DUTY_CYCLE\x10\xf7r\x12,\n\'CHANNEL_INT32_COUNT_DIRECTION1_COUNT_UP\x10\x90O\x12.\n)CHANNEL_INT32_COUNT_DIRECTION1_COUNT_DOWN\x10\x8cO\x12\x32\n-CHANNEL_INT32_COUNT_DIRECTION1_EXT_CONTROLLED\x10\xd6P\x12:\n5CHANNEL_INT32_COUNTER_FREQUENCY_METHOD_LOW_FREQ_1_CTR\x10\xf9N\x12;\n6CHANNEL_INT32_COUNTER_FREQUENCY_METHOD_HIGH_FREQ_2_CTR\x10\xadO\x12;\n6CHANNEL_INT32_COUNTER_FREQUENCY_METHOD_LARGE_RNG_2_CTR\x10\xddO\x12\x33\n.CHANNEL_INT32_COUNTER_FREQUENCY_METHOD_DYN_AVG\x10\xc1}\x12\x1f\n\x1a\x43HANNEL_INT32_COUPLING1_AC\x10\xbdN\x12\x1f\n\x1a\x43HANNEL_INT32_COUPLING1_DC\x10\xc2N\x12 \n\x1b\x43HANNEL_INT32_COUPLING1_GND\x10\xd2N\x12<\n7CHANNEL_INT32_CURRENT_SHUNT_RESISTOR_LOCATION1_INTERNAL\x10\xd8O\x12<\n7CHANNEL_INT32_CURRENT_SHUNT_RESISTOR_LOCATION1_EXTERNAL\x10\xb7O\x12&\n!CHANNEL_INT32_CURRENT_UNITS1_AMPS\x10\xe6P\x12\x33\n.CHANNEL_INT32_CURRENT_UNITS1_FROM_CUSTOM_SCALE\x10\xd1N\x12+\n&CHANNEL_INT32_CURRENT_UNITS1_FROM_TEDS\x10\xe4\x61\x12\x36\n1CHANNEL_INT32_DATA_JUSTIFICATION1_RIGHT_JUSTIFIED\x10\xa7P\x12\x35\n0CHANNEL_INT32_DATA_JUSTIFICATION1_LEFT_JUSTIFIED\x10\xe1O\x12.\n)CHANNEL_INT32_DATA_TRANSFER_MECHANISM_DMA\x10\xc6N\x12\x35\n0CHANNEL_INT32_DATA_TRANSFER_MECHANISM_INTERRUPTS\x10\xdcO\x12\x38\n3CHANNEL_INT32_DATA_TRANSFER_MECHANISM_PROGRAMMED_IO\x10\x98P\x12\x33\n.CHANNEL_INT32_DATA_TRANSFER_MECHANISM_US_BBULK\x10\xae\x62\x12\x32\n-CHANNEL_INT32_DIGITAL_DRIVE_TYPE_ACTIVE_DRIVE\x10\x9d\x62\x12\x34\n/CHANNEL_INT32_DIGITAL_DRIVE_TYPE_OPEN_COLLECTOR\x10\x9e\x62\x12*\n%CHANNEL_INT32_DIGITAL_LINE_STATE_HIGH\x10\xd0O\x12)\n$CHANNEL_INT32_DIGITAL_LINE_STATE_LOW\x10\xe6O\x12.\n)CHANNEL_INT32_DIGITAL_LINE_STATE_TRISTATE\x10\xc6P\x12/\n*CHANNEL_INT32_DIGITAL_LINE_STATE_NO_CHANGE\x10\xb0O\x12/\n*CHANNEL_INT32_DIGITAL_WIDTH_UNITS4_SECONDS\x10\xfcP\x12:\n5CHANNEL_INT32_DIGITAL_WIDTH_UNITS4_SAMPLE_CLK_PERIODS\x10\xaeP\x12L\nGCHANNEL_INT32_EDDY_CURRENT_PROX_PROBE_SENSITIVITY_UNITS_M_VOLTS_PER_MIL\x10\xf4s\x12J\nECHANNEL_INT32_EDDY_CURRENT_PROX_PROBE_SENSITIVITY_UNITS_VOLTS_PER_MIL\x10\xf5s\x12S\nNCHANNEL_INT32_EDDY_CURRENT_PROX_PROBE_SENSITIVITY_UNITS_M_VOLTS_PER_MILLIMETER\x10\xf6s\x12Q\nLCHANNEL_INT32_EDDY_CURRENT_PROX_PROBE_SENSITIVITY_UNITS_VOLTS_PER_MILLIMETER\x10\xf7s\x12O\nJCHANNEL_INT32_EDDY_CURRENT_PROX_PROBE_SENSITIVITY_UNITS_M_VOLTS_PER_MICRON\x10\xf8s\x12\x1f\n\x1a\x43HANNEL_INT32_EDGE1_RISING\x10\xa8P\x12 \n\x1b\x43HANNEL_INT32_EDGE1_FALLING\x10\xbbO\x12#\n\x1e\x43HANNEL_INT32_ENCODER_TYPE2_X1\x10\xeaN\x12#\n\x1e\x43HANNEL_INT32_ENCODER_TYPE2_X2\x10\xebN\x12#\n\x1e\x43HANNEL_INT32_ENCODER_TYPE2_X4\x10\xecN\x12\x33\n.CHANNEL_INT32_ENCODER_TYPE2_TWO_PULSE_COUNTING\x10\xc9P\x12\x37\n2CHANNEL_INT32_ENCODER_Z_INDEX_PHASE1_A_HIGH_B_HIGH\x10\xb8N\x12\x36\n1CHANNEL_INT32_ENCODER_Z_INDEX_PHASE1_A_HIGH_B_LOW\x10\xb9N\x12\x36\n1CHANNEL_INT32_ENCODER_Z_INDEX_PHASE1_A_LOW_B_HIGH\x10\xbaN\x12\x35\n0CHANNEL_INT32_ENCODER_Z_INDEX_PHASE1_A_LOW_B_LOW\x10\xbbN\x12)\n$CHANNEL_INT32_EXCITATION_D_COR_AC_DC\x10\xc2N\x12)\n$CHANNEL_INT32_EXCITATION_D_COR_AC_AC\x10\xbdN\x12\x45\n@CHANNEL_INT32_EXCITATION_IDLE_OUTPUT_BEHAVIOR_ZERO_VOLTS_OR_AMPS\x10\xee\x61\x12J\nECHANNEL_INT32_EXCITATION_IDLE_OUTPUT_BEHAVIOR_MAINTAIN_EXISTING_VALUE\x10\xf0\x61\x12-\n(CHANNEL_INT32_EXCITATION_SOURCE_INTERNAL\x10\xd8O\x12-\n(CHANNEL_INT32_EXCITATION_SOURCE_EXTERNAL\x10\xb7O\x12)\n$CHANNEL_INT32_EXCITATION_SOURCE_NONE\x10\xf6O\x12\x38\n3CHANNEL_INT32_EXCITATION_VOLTAGE_OR_CURRENT_VOLTAGE\x10\xd2P\x12\x38\n3CHANNEL_INT32_EXCITATION_VOLTAGE_OR_CURRENT_CURRENT\x10\x96O\x12\x37\n2CHANNEL_INT32_FILTER_RESPONSE_CONSTANT_GROUP_DELAY\x10\xcb}\x12.\n)CHANNEL_INT32_FILTER_RESPONSE_BUTTERWORTH\x10\xcc}\x12-\n(CHANNEL_INT32_FILTER_RESPONSE_ELLIPTICAL\x10\xcd}\x12\x33\n.CHANNEL_INT32_FILTER_RESPONSE_HARDWARE_DEFINED\x10\xcfO\x12(\n#CHANNEL_INT32_FILTER_RESPONSE1_COMB\x10\x98~\x12*\n%CHANNEL_INT32_FILTER_RESPONSE1_BESSEL\x10\x99~\x12-\n(CHANNEL_INT32_FILTER_RESPONSE1_BRICKWALL\x10\x9b~\x12/\n*CHANNEL_INT32_FILTER_RESPONSE1_BUTTERWORTH\x10\xcc}\x12\x30\n+CHANNEL_INT32_FILTER_TYPE1_HARDWARE_DEFINED\x10\xcfO\x12\'\n\"CHANNEL_INT32_FILTER_TYPE2_LOWPASS\x10\xc7}\x12(\n#CHANNEL_INT32_FILTER_TYPE2_HIGHPASS\x10\xc8}\x12(\n#CHANNEL_INT32_FILTER_TYPE2_BANDPASS\x10\xc9}\x12%\n CHANNEL_INT32_FILTER_TYPE2_NOTCH\x10\xca}\x12&\n!CHANNEL_INT32_FILTER_TYPE2_CUSTOM\x10\x99O\x12I\nDCHANNEL_INT32_FORCE_IEPE_SENSOR_SENSITIVITY_UNITS_M_VOLTS_PER_NEWTON\x10\x93|\x12H\nCCHANNEL_INT32_FORCE_IEPE_SENSOR_SENSITIVITY_UNITS_M_VOLTS_PER_POUND\x10\x94|\x12&\n!CHANNEL_INT32_FORCE_UNITS_NEWTONS\x10\x83|\x12%\n CHANNEL_INT32_FORCE_UNITS_POUNDS\x10\x84|\x12-\n(CHANNEL_INT32_FORCE_UNITS_KILOGRAM_FORCE\x10\x85|\x12\x30\n+CHANNEL_INT32_FORCE_UNITS_FROM_CUSTOM_SCALE\x10\xd1N\x12%\n CHANNEL_INT32_FREQUENCY_UNITS_HZ\x10\x85Q\x12\x34\n/CHANNEL_INT32_FREQUENCY_UNITS_FROM_CUSTOM_SCALE\x10\xd1N\x12&\n!CHANNEL_INT32_FREQUENCY_UNITS2_HZ\x10\x85Q\x12&\n!CHANNEL_INT32_FREQUENCY_UNITS3_HZ\x10\x85Q\x12)\n$CHANNEL_INT32_FREQUENCY_UNITS3_TICKS\x10\xc0P\x12\x35\n0CHANNEL_INT32_FREQUENCY_UNITS3_FROM_CUSTOM_SCALE\x10\xd1N\x12%\n CHANNEL_INT32_FUNC_GEN_TYPE_SINE\x10\x9fs\x12)\n$CHANNEL_INT32_FUNC_GEN_TYPE_TRIANGLE\x10\xa0s\x12\'\n\"CHANNEL_INT32_FUNC_GEN_TYPE_SQUARE\x10\xa1s\x12)\n$CHANNEL_INT32_FUNC_GEN_TYPE_SAWTOOTH\x10\xa2s\x12)\n$CHANNEL_INT32_GPS_SIGNAL_TYPE1_IRIGB\x10\xd6N\x12\'\n\"CHANNEL_INT32_GPS_SIGNAL_TYPE1_PPS\x10\xe0N\x12(\n#CHANNEL_INT32_GPS_SIGNAL_TYPE1_NONE\x10\xf6O\x12O\nJCHANNEL_INT32_INPUT_DATA_TRANSFER_CONDITION_ON_BRD_MEM_MORE_THAN_HALF_FULL\x10\xfdO\x12\x45\n@CHANNEL_INT32_INPUT_DATA_TRANSFER_CONDITION_ON_BRD_MEM_NOT_EMPTY\x10\x81P\x12K\nFCHANNEL_INT32_INPUT_DATA_TRANSFER_CONDITION_ONBRD_MEM_CUSTOM_THRESHOLD\x10\xa1\x62\x12\x42\n=CHANNEL_INT32_INPUT_DATA_TRANSFER_CONDITION_WHEN_ACQ_COMPLETE\x10\x82\x62\x12%\n CHANNEL_INT32_INPUT_TERM_CFG_RSE\x10\xe3N\x12&\n!CHANNEL_INT32_INPUT_TERM_CFG_NRSE\x10\xdeN\x12&\n!CHANNEL_INT32_INPUT_TERM_CFG_DIFF\x10\xfaN\x12-\n(CHANNEL_INT32_INPUT_TERM_CFG_PSEUDO_DIFF\x10\xf1\x61\x12\'\n\"CHANNEL_INT32_INPUT_TERM_CFG2_DIFF\x10\xfaN\x12&\n!CHANNEL_INT32_INPUT_TERM_CFG2_RSE\x10\xe3N\x12J\nECHANNEL_INT32_LVDT_SENSITIVITY_UNITS1_M_VOLTS_PER_VOLT_PER_MILLIMETER\x10\xda\x61\x12J\nECHANNEL_INT32_LVDT_SENSITIVITY_UNITS1_M_VOLTS_PER_VOLT_PER_MILLI_INCH\x10\xd9\x61\x12\'\n\"CHANNEL_INT32_LENGTH_UNITS2_METERS\x10\xebO\x12\'\n\"CHANNEL_INT32_LENGTH_UNITS2_INCHES\x10\x8bQ\x12\x32\n-CHANNEL_INT32_LENGTH_UNITS2_FROM_CUSTOM_SCALE\x10\xd1N\x12\'\n\"CHANNEL_INT32_LENGTH_UNITS3_METERS\x10\xebO\x12\'\n\"CHANNEL_INT32_LENGTH_UNITS3_INCHES\x10\x8bQ\x12&\n!CHANNEL_INT32_LENGTH_UNITS3_TICKS\x10\xc0P\x12\x32\n-CHANNEL_INT32_LENGTH_UNITS3_FROM_CUSTOM_SCALE\x10\xd1N\x12\'\n\"CHANNEL_INT32_LENGTH_UNITS4_METERS\x10\xebO\x12%\n CHANNEL_INT32_LENGTH_UNITS4_FEET\x10\x8cQ\x12\x32\n-CHANNEL_INT32_LENGTH_UNITS4_FROM_CUSTOM_SCALE\x10\xd1N\x12\x1e\n\x19\x43HANNEL_INT32_LEVEL1_HIGH\x10\xd0O\x12\x1d\n\x18\x43HANNEL_INT32_LEVEL1_LOW\x10\xe6O\x12*\n%CHANNEL_INT32_LOGIC_FAMILY_1POINT_8_V\x10\xb8~\x12*\n%CHANNEL_INT32_LOGIC_FAMILY_2POINT_5_V\x10\x9cr\x12*\n%CHANNEL_INT32_LOGIC_FAMILY_3POINT_3_V\x10\x9dr\x12#\n\x1e\x43HANNEL_INT32_LOGIC_FAMILY_5_V\x10\x9br\x12\x39\n4CHANNEL_INT32_LOGIC_LVL_BEHAVIOR_LOGIC_LEVEL_PULL_UP\x10\xc0}\x12*\n%CHANNEL_INT32_LOGIC_LVL_BEHAVIOR_NONE\x10\xf6O\x12%\n CHANNEL_INT32_MODULATION_TYPE_AM\x10\xa4s\x12%\n CHANNEL_INT32_MODULATION_TYPE_FM\x10\xa5s\x12\'\n\"CHANNEL_INT32_MODULATION_TYPE_NONE\x10\xf6O\x12\x30\n+CHANNEL_INT32_NAV_MEASUREMENT_TYPE_ALTITUDE\x10\xfd|\x12\x31\n,CHANNEL_INT32_NAV_MEASUREMENT_TYPE_LONGITUDE\x10\xfe|\x12\x30\n+CHANNEL_INT32_NAV_MEASUREMENT_TYPE_LATITUDE\x10\xff|\x12\x39\n4CHANNEL_INT32_NAV_MEASUREMENT_TYPE_SPEED_OVER_GROUND\x10\x80}\x12-\n(CHANNEL_INT32_NAV_MEASUREMENT_TYPE_TRACK\x10\x81}\x12\x31\n,CHANNEL_INT32_NAV_MEASUREMENT_TYPE_TIMESTAMP\x10\xf2|\x12\x35\n0CHANNEL_INT32_NAV_MEASUREMENT_TYPE_VERT_VELOCITY\x10\x83}\x12\x42\n=CHANNEL_INT32_OUTPUT_DATA_TRANSFER_CONDITION_ON_BRD_MEM_EMPTY\x10\xfbO\x12N\nICHANNEL_INT32_OUTPUT_DATA_TRANSFER_CONDITION_ON_BRD_MEM_HALF_FULL_OR_LESS\x10\xffO\x12\x45\n@CHANNEL_INT32_OUTPUT_DATA_TRANSFER_CONDITION_ON_BRD_MEM_NOT_FULL\x10\x82P\x12&\n!CHANNEL_INT32_OUTPUT_TERM_CFG_RSE\x10\xe3N\x12\'\n\"CHANNEL_INT32_OUTPUT_TERM_CFG_DIFF\x10\xfaN\x12.\n)CHANNEL_INT32_OUTPUT_TERM_CFG_PSEUDO_DIFF\x10\xf1\x61\x12=\n8CHANNEL_INT32_POWER_IDLE_OUTPUT_BEHAVIOR_OUTPUT_DISABLED\x10\x8fy\x12\x45\n@CHANNEL_INT32_POWER_IDLE_OUTPUT_BEHAVIOR_MAINTAIN_EXISTING_VALUE\x10\xf0\x61\x12\x36\n1CHANNEL_INT32_POWER_OUTPUT_STATE_CONSTANT_VOLTAGE\x10\x8cy\x12\x36\n1CHANNEL_INT32_POWER_OUTPUT_STATE_CONSTANT_CURRENT\x10\x8dy\x12\x31\n,CHANNEL_INT32_POWER_OUTPUT_STATE_OVERVOLTAGE\x10\x8ey\x12\x35\n0CHANNEL_INT32_POWER_OUTPUT_STATE_OUTPUT_DISABLED\x10\x8fy\x12)\n$CHANNEL_INT32_PRESSURE_UNITS_PASCALS\x10\xe1N\x12\x38\n3CHANNEL_INT32_PRESSURE_UNITS_POUNDS_PER_SQUARE_INCH\x10\x87|\x12%\n CHANNEL_INT32_PRESSURE_UNITS_BAR\x10\x88|\x12\x33\n.CHANNEL_INT32_PRESSURE_UNITS_FROM_CUSTOM_SCALE\x10\xd1N\x12$\n\x1f\x43HANNEL_INT32_RTD_TYPE1_PT_3750\x10\xc1\x61\x12$\n\x1f\x43HANNEL_INT32_RTD_TYPE1_PT_3851\x10\xd7N\x12$\n\x1f\x43HANNEL_INT32_RTD_TYPE1_PT_3911\x10\xc2\x61\x12$\n\x1f\x43HANNEL_INT32_RTD_TYPE1_PT_3916\x10\xd5N\x12$\n\x1f\x43HANNEL_INT32_RTD_TYPE1_PT_3920\x10\xc5N\x12$\n\x1f\x43HANNEL_INT32_RTD_TYPE1_PT_3928\x10\xc3\x61\x12#\n\x1e\x43HANNEL_INT32_RTD_TYPE1_CUSTOM\x10\x99O\x12\x46\nACHANNEL_INT32_RVDT_SENSITIVITY_UNITS1_M_VOLTS_PER_VOLT_PER_DEGREE\x10\xdb\x61\x12\x46\nACHANNEL_INT32_RVDT_SENSITIVITY_UNITS1_M_VOLTS_PER_VOLT_PER_RADIAN\x10\xdc\x61\x12\x31\n,CHANNEL_INT32_RAW_DATA_COMPRESSION_TYPE_NONE\x10\xf6O\x12=\n8CHANNEL_INT32_RAW_DATA_COMPRESSION_TYPE_LOSSLESS_PACKING\x10\x8b\x62\x12>\n9CHANNEL_INT32_RAW_DATA_COMPRESSION_TYPE_LOSSY_LSB_REMOVAL\x10\x8c\x62\x12\x31\n-CHANNEL_INT32_RESISTANCE_CONFIGURATION_2_WIRE\x10\x02\x12\x31\n-CHANNEL_INT32_RESISTANCE_CONFIGURATION_3_WIRE\x10\x03\x12\x31\n-CHANNEL_INT32_RESISTANCE_CONFIGURATION_4_WIRE\x10\x04\x12)\n$CHANNEL_INT32_RESISTANCE_UNITS1_OHMS\x10\x90Q\x12\x36\n1CHANNEL_INT32_RESISTANCE_UNITS1_FROM_CUSTOM_SCALE\x10\xd1N\x12.\n)CHANNEL_INT32_RESISTANCE_UNITS1_FROM_TEDS\x10\xe4\x61\x12(\n#CHANNEL_INT32_RESOLUTION_TYPE1_BITS\x10\xfdN\x12:\n5CHANNEL_INT32_SAMP_CLK_OVERRUN_BEHAVIOR_REPEATED_DATA\x10\xbe}\x12;\n6CHANNEL_INT32_SAMP_CLK_OVERRUN_BEHAVIOR_SENTINEL_VALUE\x10\xbf}\x12V\nQCHANNEL_INT32_SAMPLE_CLOCK_ACTIVE_OR_INACTIVE_EDGE_SELECTION_SAMP_CLK_ACTIVE_EDGE\x10\x99r\x12X\nSCHANNEL_INT32_SAMPLE_CLOCK_ACTIVE_OR_INACTIVE_EDGE_SELECTION_SAMP_CLK_INACTIVE_EDGE\x10\x9ar\x12)\n$CHANNEL_INT32_SCALE_TYPE2_POLYNOMIAL\x10\xd1Q\x12$\n\x1f\x43HANNEL_INT32_SCALE_TYPE2_TABLE\x10\xd2Q\x12)\n$CHANNEL_INT32_SCALE_TYPE3_POLYNOMIAL\x10\xd1Q\x12$\n\x1f\x43HANNEL_INT32_SCALE_TYPE3_TABLE\x10\xd2Q\x12#\n\x1e\x43HANNEL_INT32_SCALE_TYPE3_NONE\x10\xf6O\x12#\n\x1e\x43HANNEL_INT32_SCALE_TYPE4_NONE\x10\xf6O\x12/\n*CHANNEL_INT32_SCALE_TYPE4_TWO_POINT_LINEAR\x10\x9a|\x12$\n\x1f\x43HANNEL_INT32_SCALE_TYPE4_TABLE\x10\xd2Q\x12)\n$CHANNEL_INT32_SCALE_TYPE4_POLYNOMIAL\x10\xd1Q\x12\x1e\n\x19\x43HANNEL_INT32_SENSE_LOCAL\x10\xdf}\x12\x1f\n\x1a\x43HANNEL_INT32_SENSE_REMOTE\x10\xe0}\x12-\n(CHANNEL_INT32_SENSOR_POWER_CFG_NO_CHANGE\x10\xb0O\x12+\n&CHANNEL_INT32_SENSOR_POWER_CFG_ENABLED\x10\x91~\x12,\n\'CHANNEL_INT32_SENSOR_POWER_CFG_DISABLED\x10\x92~\x12\'\n\"CHANNEL_INT32_SENSOR_POWER_TYPE_DC\x10\xc2N\x12\'\n\"CHANNEL_INT32_SENSOR_POWER_TYPE_AC\x10\xbdN\x12/\n*CHANNEL_INT32_SENSOR_POWER_TYPE_BIPOLAR_DC\x10\x93~\x12%\n CHANNEL_INT32_SHUNT_CAL_SELECT_A\x10\xe1\x61\x12%\n CHANNEL_INT32_SHUNT_CAL_SELECT_B\x10\xe2\x61\x12+\n&CHANNEL_INT32_SHUNT_CAL_SELECT_A_AND_B\x10\xe3\x61\x12\x30\n+CHANNEL_INT32_SOUND_PRESSURE_UNITS1_PASCALS\x10\xe1N\x12:\n5CHANNEL_INT32_SOUND_PRESSURE_UNITS1_FROM_CUSTOM_SCALE\x10\xd1N\x12,\n\'CHANNEL_INT32_SOURCE_SELECTION_INTERNAL\x10\xd8O\x12,\n\'CHANNEL_INT32_SOURCE_SELECTION_EXTERNAL\x10\xb7O\x12\x39\n4CHANNEL_INT32_STRAIN_GAGE_BRIDGE_TYPE1_FULL_BRIDGE_I\x10\xc7O\x12:\n5CHANNEL_INT32_STRAIN_GAGE_BRIDGE_TYPE1_FULL_BRIDGE_II\x10\xc8O\x12;\n6CHANNEL_INT32_STRAIN_GAGE_BRIDGE_TYPE1_FULL_BRIDGE_III\x10\xc9O\x12\x39\n4CHANNEL_INT32_STRAIN_GAGE_BRIDGE_TYPE1_HALF_BRIDGE_I\x10\xccO\x12:\n5CHANNEL_INT32_STRAIN_GAGE_BRIDGE_TYPE1_HALF_BRIDGE_II\x10\xcdO\x12<\n7CHANNEL_INT32_STRAIN_GAGE_BRIDGE_TYPE1_QUARTER_BRIDGE_I\x10\x9fP\x12=\n8CHANNEL_INT32_STRAIN_GAGE_BRIDGE_TYPE1_QUARTER_BRIDGE_II\x10\xa0P\x12J\nECHANNEL_INT32_STRAIN_GAGE_ROSETTE_MEASUREMENT_TYPE_PRINCIPAL_STRAIN_1\x10\xe3|\x12J\nECHANNEL_INT32_STRAIN_GAGE_ROSETTE_MEASUREMENT_TYPE_PRINCIPAL_STRAIN_2\x10\xe4|\x12N\nICHANNEL_INT32_STRAIN_GAGE_ROSETTE_MEASUREMENT_TYPE_PRINCIPAL_STRAIN_ANGLE\x10\xe5|\x12J\nECHANNEL_INT32_STRAIN_GAGE_ROSETTE_MEASUREMENT_TYPE_CARTESIAN_STRAIN_X\x10\xe6|\x12J\nECHANNEL_INT32_STRAIN_GAGE_ROSETTE_MEASUREMENT_TYPE_CARTESIAN_STRAIN_Y\x10\xe7|\x12Q\nLCHANNEL_INT32_STRAIN_GAGE_ROSETTE_MEASUREMENT_TYPE_CARTESIAN_SHEAR_STRAIN_XY\x10\xe8|\x12H\nCCHANNEL_INT32_STRAIN_GAGE_ROSETTE_MEASUREMENT_TYPE_MAX_SHEAR_STRAIN\x10\xe9|\x12N\nICHANNEL_INT32_STRAIN_GAGE_ROSETTE_MEASUREMENT_TYPE_MAX_SHEAR_STRAIN_ANGLE\x10\xea|\x12?\n:CHANNEL_INT32_STRAIN_GAGE_ROSETTE_TYPE_RECTANGULAR_ROSETTE\x10\xe0|\x12\x39\n4CHANNEL_INT32_STRAIN_GAGE_ROSETTE_TYPE_DELTA_ROSETTE\x10\xe1|\x12\x37\n2CHANNEL_INT32_STRAIN_GAGE_ROSETTE_TYPE_TEE_ROSETTE\x10\xe2|\x12\'\n\"CHANNEL_INT32_STRAIN_UNITS1_STRAIN\x10\xbbP\x12\x32\n-CHANNEL_INT32_STRAIN_UNITS1_FROM_CUSTOM_SCALE\x10\xd1N\x12;\n6CHANNEL_INT32_SYNC_UNLOCK_BEHAVIOR_STOP_TASK_AND_ERROR\x10\xf6{\x12=\n8CHANNEL_INT32_SYNC_UNLOCK_BEHAVIOR_IGNORE_LOST_SYNC_LOCK\x10\x81~\x12+\n&CHANNEL_INT32_TEMPERATURE_UNITS1_DEG_C\x10\x9fO\x12+\n&CHANNEL_INT32_TEMPERATURE_UNITS1_DEG_F\x10\xa0O\x12-\n(CHANNEL_INT32_TEMPERATURE_UNITS1_KELVINS\x10\xd5P\x12+\n&CHANNEL_INT32_TEMPERATURE_UNITS1_DEG_R\x10\xa1O\x12\x37\n2CHANNEL_INT32_TEMPERATURE_UNITS1_FROM_CUSTOM_SCALE\x10\xd1N\x12/\n*CHANNEL_INT32_THERMOCOUPLE_TYPE1_J_TYPE_TC\x10\xd8N\x12/\n*CHANNEL_INT32_THERMOCOUPLE_TYPE1_K_TYPE_TC\x10\xd9N\x12/\n*CHANNEL_INT32_THERMOCOUPLE_TYPE1_N_TYPE_TC\x10\xddN\x12/\n*CHANNEL_INT32_THERMOCOUPLE_TYPE1_R_TYPE_TC\x10\xe2N\x12/\n*CHANNEL_INT32_THERMOCOUPLE_TYPE1_S_TYPE_TC\x10\xe5N\x12/\n*CHANNEL_INT32_THERMOCOUPLE_TYPE1_T_TYPE_TC\x10\xe6N\x12/\n*CHANNEL_INT32_THERMOCOUPLE_TYPE1_B_TYPE_TC\x10\xbfN\x12/\n*CHANNEL_INT32_THERMOCOUPLE_TYPE1_E_TYPE_TC\x10\xc7N\x12%\n CHANNEL_INT32_TIME_UNITS_SECONDS\x10\xfcP\x12/\n*CHANNEL_INT32_TIME_UNITS_FROM_CUSTOM_SCALE\x10\xd1N\x12&\n!CHANNEL_INT32_TIME_UNITS2_SECONDS\x10\xfcP\x12&\n!CHANNEL_INT32_TIME_UNITS3_SECONDS\x10\xfcP\x12$\n\x1f\x43HANNEL_INT32_TIME_UNITS3_TICKS\x10\xc0P\x12\x30\n+CHANNEL_INT32_TIME_UNITS3_FROM_CUSTOM_SCALE\x10\xd1N\x12 \n\x1b\x43HANNEL_INT32_TIMESCALE_TAI\x10\xf4|\x12 \n\x1b\x43HANNEL_INT32_TIMESCALE_UTC\x10\xf3|\x12-\n(CHANNEL_INT32_TORQUE_UNITS_NEWTON_METERS\x10\x89|\x12+\n&CHANNEL_INT32_TORQUE_UNITS_INCH_OUNCES\x10\x8a|\x12+\n&CHANNEL_INT32_TORQUE_UNITS_INCH_POUNDS\x10\x8b|\x12+\n&CHANNEL_INT32_TORQUE_UNITS_FOOT_POUNDS\x10\x8c|\x12\x31\n,CHANNEL_INT32_TORQUE_UNITS_FROM_CUSTOM_SCALE\x10\xd1N\x12^\nYCHANNEL_INT32_VELOCITY_IEPE_SENSOR_SENSITIVITY_UNITS_MILLIVOLTS_PER_MILLIMETER_PER_SECOND\x10\xdb|\x12Y\nTCHANNEL_INT32_VELOCITY_IEPE_SENSOR_SENSITIVITY_UNITS_MILLI_VOLTS_PER_INCH_PER_SECOND\x10\xdc|\x12\x33\n.CHANNEL_INT32_VELOCITY_UNITS_METERS_PER_SECOND\x10\xd7|\x12\x33\n.CHANNEL_INT32_VELOCITY_UNITS_INCHES_PER_SECOND\x10\xd8|\x12\x33\n.CHANNEL_INT32_VELOCITY_UNITS_FROM_CUSTOM_SCALE\x10\xd1N\x12\x34\n/CHANNEL_INT32_VELOCITY_UNITS2_METERS_PER_SECOND\x10\xd7|\x12\x36\n1CHANNEL_INT32_VELOCITY_UNITS2_KILOMETERS_PER_HOUR\x10\x87}\x12\x32\n-CHANNEL_INT32_VELOCITY_UNITS2_FEET_PER_SECOND\x10\x88}\x12\x31\n,CHANNEL_INT32_VELOCITY_UNITS2_MILES_PER_HOUR\x10\x89}\x12(\n#CHANNEL_INT32_VELOCITY_UNITS2_KNOTS\x10\x8a}\x12\x34\n/CHANNEL_INT32_VELOCITY_UNITS2_FROM_CUSTOM_SCALE\x10\xd1N\x12\'\n\"CHANNEL_INT32_VOLTAGE_UNITS1_VOLTS\x10\xecP\x12\x33\n.CHANNEL_INT32_VOLTAGE_UNITS1_FROM_CUSTOM_SCALE\x10\xd1N\x12+\n&CHANNEL_INT32_VOLTAGE_UNITS1_FROM_TEDS\x10\xe4\x61\x12\'\n\"CHANNEL_INT32_VOLTAGE_UNITS2_VOLTS\x10\xecP\x12\x33\n.CHANNEL_INT32_VOLTAGE_UNITS2_FROM_CUSTOM_SCALE\x10\xd1N\x1a\x02\x10\x01*\xb9\x32\n\x1a\x44\x65viceInt32AttributeValues\x12\x1c\n\x18\x44\x45VICE_INT32_UNSPECIFIED\x10\x00\x12-\n(DEVICE_INT32_AI_MEASUREMENT_TYPE_VOLTAGE\x10\xd2P\x12\x31\n,DEVICE_INT32_AI_MEASUREMENT_TYPE_VOLTAGE_RMS\x10\xeeP\x12-\n(DEVICE_INT32_AI_MEASUREMENT_TYPE_CURRENT\x10\x96O\x12\x31\n,DEVICE_INT32_AI_MEASUREMENT_TYPE_CURRENT_RMS\x10\xefP\x12\x44\n?DEVICE_INT32_AI_MEASUREMENT_TYPE_VOLTAGE_CUSTOM_WITH_EXCITATION\x10\xd3P\x12,\n\'DEVICE_INT32_AI_MEASUREMENT_TYPE_BRIDGE\x10\xa4|\x12\x32\n-DEVICE_INT32_AI_MEASUREMENT_TYPE_FREQ_VOLTAGE\x10\xc5O\x12\x30\n+DEVICE_INT32_AI_MEASUREMENT_TYPE_RESISTANCE\x10\xa6P\x12-\n(DEVICE_INT32_AI_MEASUREMENT_TYPE_TEMP_TC\x10\xbfP\x12\x32\n-DEVICE_INT32_AI_MEASUREMENT_TYPE_TEMP_THRMSTR\x10\xbeP\x12.\n)DEVICE_INT32_AI_MEASUREMENT_TYPE_TEMP_RTD\x10\xbdP\x12:\n5DEVICE_INT32_AI_MEASUREMENT_TYPE_TEMP_BUILT_IN_SENSOR\x10\xc7P\x12\x31\n,DEVICE_INT32_AI_MEASUREMENT_TYPE_STRAIN_GAGE\x10\xbcP\x12\x39\n4DEVICE_INT32_AI_MEASUREMENT_TYPE_ROSETTE_STRAIN_GAGE\x10\xec|\x12\x33\n.DEVICE_INT32_AI_MEASUREMENT_TYPE_POSITION_LVDT\x10\xf0P\x12\x33\n.DEVICE_INT32_AI_MEASUREMENT_TYPE_POSITION_RVDT\x10\xf1P\x12K\nFDEVICE_INT32_AI_MEASUREMENT_TYPE_POSITION_EDDY_CURRENT_PROXIMITY_PROBE\x10\xf3s\x12\x33\n.DEVICE_INT32_AI_MEASUREMENT_TYPE_ACCELEROMETER\x10\xf4P\x12\x39\n4DEVICE_INT32_AI_MEASUREMENT_TYPE_ACCELERATION_CHARGE\x10\xe8}\x12\x44\n?DEVICE_INT32_AI_MEASUREMENT_TYPE_ACCELERATION_4_WIRE_DC_VOLTAGE\x10\xea}\x12:\n5DEVICE_INT32_AI_MEASUREMENT_TYPE_VELOCITY_IEPE_SENSOR\x10\xde|\x12\x32\n-DEVICE_INT32_AI_MEASUREMENT_TYPE_FORCE_BRIDGE\x10\x9b|\x12\x37\n2DEVICE_INT32_AI_MEASUREMENT_TYPE_FORCE_IEPE_SENSOR\x10\x97|\x12\x35\n0DEVICE_INT32_AI_MEASUREMENT_TYPE_PRESSURE_BRIDGE\x10\x9e|\x12?\n:DEVICE_INT32_AI_MEASUREMENT_TYPE_SOUND_PRESSURE_MICROPHONE\x10\xf2P\x12\x33\n.DEVICE_INT32_AI_MEASUREMENT_TYPE_TORQUE_BRIDGE\x10\xa1|\x12\x31\n,DEVICE_INT32_AI_MEASUREMENT_TYPE_TEDS_SENSOR\x10\xf3\x61\x12,\n\'DEVICE_INT32_AI_MEASUREMENT_TYPE_CHARGE\x10\xe9}\x12+\n&DEVICE_INT32_AI_MEASUREMENT_TYPE_POWER\x10\xc9~\x12\x36\n1DEVICE_INT32_AI_MEASUREMENT_TYPE_CALCULATED_POWER\x10\xcc~\x12\x30\n+DEVICE_INT32_AO_OUTPUT_CHANNEL_TYPE_VOLTAGE\x10\xd2P\x12\x30\n+DEVICE_INT32_AO_OUTPUT_CHANNEL_TYPE_CURRENT\x10\x96O\x12\x31\n,DEVICE_INT32_AO_OUTPUT_CHANNEL_TYPE_FUNC_GEN\x10\x9es\x12/\n*DEVICE_INT32_ACQUISITION_TYPE_FINITE_SAMPS\x10\xc2O\x12-\n(DEVICE_INT32_ACQUISITION_TYPE_CONT_SAMPS\x10\x8bO\x12\x38\n3DEVICE_INT32_ACQUISITION_TYPE_HW_TIMED_SINGLE_POINT\x10\xea\x61\x12\x1d\n\x18\x44\x45VICE_INT32_ALT_REF_MSL\x10\x85}\x12\x1d\n\x18\x44\x45VICE_INT32_ALT_REF_HAE\x10\x86}\x12$\n\x1f\x44\x45VICE_INT32_ANT_STATUS_UNKNOWN\x10\xac\x62\x12#\n\x1e\x44\x45VICE_INT32_ANT_STATUS_NORMAL\x10\xdbQ\x12#\n\x1e\x44\x45VICE_INT32_ANT_STATUS_ABSENT\x10\xfa|\x12(\n#DEVICE_INT32_ANT_STATUS_OVERCURRENT\x10\xfb|\x12\x1e\n\x19\x44\x45VICE_INT32_BUS_TYPE_PCI\x10\xa6\x62\x12\x1f\n\x1a\x44\x45VICE_INT32_BUS_TYPE_PCIE\x10\xacj\x12\x1e\n\x19\x44\x45VICE_INT32_BUS_TYPE_PXI\x10\xa7\x62\x12\x1f\n\x1a\x44\x45VICE_INT32_BUS_TYPE_PXIE\x10\xf2r\x12\x1f\n\x1a\x44\x45VICE_INT32_BUS_TYPE_SCXI\x10\xa8\x62\x12\x1e\n\x19\x44\x45VICE_INT32_BUS_TYPE_SCC\x10\xf3r\x12\"\n\x1d\x44\x45VICE_INT32_BUS_TYPE_PC_CARD\x10\xa9\x62\x12\x1e\n\x19\x44\x45VICE_INT32_BUS_TYPE_USB\x10\xaa\x62\x12&\n!DEVICE_INT32_BUS_TYPE_COMPACT_DAQ\x10\xadr\x12&\n!DEVICE_INT32_BUS_TYPE_COMPACT_RIO\x10\x8f~\x12 \n\x1b\x44\x45VICE_INT32_BUS_TYPE_TCPIP\x10\xecs\x12\"\n\x1d\x44\x45VICE_INT32_BUS_TYPE_UNKNOWN\x10\xac\x62\x12\'\n\"DEVICE_INT32_BUS_TYPE_SWITCH_BLOCK\x10\xfe{\x12\x31\n,DEVICE_INT32_CI_MEASUREMENT_TYPE_COUNT_EDGES\x10\x8dO\x12*\n%DEVICE_INT32_CI_MEASUREMENT_TYPE_FREQ\x10\xc3O\x12,\n\'DEVICE_INT32_CI_MEASUREMENT_TYPE_PERIOD\x10\x90P\x12\x31\n,DEVICE_INT32_CI_MEASUREMENT_TYPE_PULSE_WIDTH\x10\xf7P\x12\x31\n,DEVICE_INT32_CI_MEASUREMENT_TYPE_SEMI_PERIOD\x10\xb1P\x12\x35\n0DEVICE_INT32_CI_MEASUREMENT_TYPE_PULSE_FREQUENCY\x10\xf8{\x12\x30\n+DEVICE_INT32_CI_MEASUREMENT_TYPE_PULSE_TIME\x10\xf9{\x12\x31\n,DEVICE_INT32_CI_MEASUREMENT_TYPE_PULSE_TICKS\x10\xfa{\x12\x30\n+DEVICE_INT32_CI_MEASUREMENT_TYPE_DUTY_CYCLE\x10\xc6}\x12:\n5DEVICE_INT32_CI_MEASUREMENT_TYPE_POSITION_ANG_ENCODER\x10\xf8P\x12:\n5DEVICE_INT32_CI_MEASUREMENT_TYPE_POSITION_LIN_ENCODER\x10\xf9P\x12:\n5DEVICE_INT32_CI_MEASUREMENT_TYPE_VELOCITY_ANG_ENCODER\x10\xce}\x12:\n5DEVICE_INT32_CI_MEASUREMENT_TYPE_VELOCITY_LIN_ENCODER\x10\xcf}\x12\x32\n-DEVICE_INT32_CI_MEASUREMENT_TYPE_TWO_EDGE_SEP\x10\x9bP\x12\x33\n.DEVICE_INT32_CI_MEASUREMENT_TYPE_GPS_TIMESTAMP\x10\xfaP\x12+\n&DEVICE_INT32_CO_OUTPUT_TYPE_PULSE_TIME\x10\x9dP\x12+\n&DEVICE_INT32_CO_OUTPUT_TYPE_PULSE_FREQ\x10\x87O\x12,\n\'DEVICE_INT32_CO_OUTPUT_TYPE_PULSE_TICKS\x10\x9cP\x12\"\n\x1e\x44\x45VICE_INT32_COUPLING_TYPES_AC\x10\x01\x12\"\n\x1e\x44\x45VICE_INT32_COUPLING_TYPES_DC\x10\x02\x12&\n\"DEVICE_INT32_COUPLING_TYPES_GROUND\x10\x04\x12)\n%DEVICE_INT32_COUPLING_TYPES_HF_REJECT\x10\x08\x12)\n%DEVICE_INT32_COUPLING_TYPES_LF_REJECT\x10\x10\x12,\n(DEVICE_INT32_COUPLING_TYPES_NOISE_REJECT\x10 \x12&\n!DEVICE_INT32_FILTER_TYPE2_LOWPASS\x10\xc7}\x12\'\n\"DEVICE_INT32_FILTER_TYPE2_HIGHPASS\x10\xc8}\x12\'\n\"DEVICE_INT32_FILTER_TYPE2_BANDPASS\x10\xc9}\x12$\n\x1f\x44\x45VICE_INT32_FILTER_TYPE2_NOTCH\x10\xca}\x12%\n DEVICE_INT32_FILTER_TYPE2_CUSTOM\x10\x99O\x12\x32\n-DEVICE_INT32_ID_PIN_STATUS_MEMORY_NOT_PRESENT\x10\xcd~\x12.\n)DEVICE_INT32_ID_PIN_STATUS_MEMORY_PRESENT\x10\xce~\x12/\n*DEVICE_INT32_NAV_MEASUREMENT_TYPE_ALTITUDE\x10\xfd|\x12\x30\n+DEVICE_INT32_NAV_MEASUREMENT_TYPE_LONGITUDE\x10\xfe|\x12/\n*DEVICE_INT32_NAV_MEASUREMENT_TYPE_LATITUDE\x10\xff|\x12\x38\n3DEVICE_INT32_NAV_MEASUREMENT_TYPE_SPEED_OVER_GROUND\x10\x80}\x12,\n\'DEVICE_INT32_NAV_MEASUREMENT_TYPE_TRACK\x10\x81}\x12\x30\n+DEVICE_INT32_NAV_MEASUREMENT_TYPE_TIMESTAMP\x10\xf2|\x12\x34\n/DEVICE_INT32_NAV_MEASUREMENT_TYPE_VERT_VELOCITY\x10\x83}\x12!\n\x1c\x44\x45VICE_INT32_NAV_MODE_MOBILE\x10\xf5|\x12\x31\n,DEVICE_INT32_NAV_MODE_STATIONARY_WITH_SURVEY\x10\xf6|\x12:\n5DEVICE_INT32_NAV_MODE_STATIONARY_WITH_PRESET_LOCATION\x10\xf7|\x12/\n*DEVICE_INT32_PRODUCT_CATEGORY_M_SERIES_DAQ\x10\xb3r\x12/\n*DEVICE_INT32_PRODUCT_CATEGORY_X_SERIES_DAQ\x10\xf2{\x12/\n*DEVICE_INT32_PRODUCT_CATEGORY_E_SERIES_DAQ\x10\xb2r\x12/\n*DEVICE_INT32_PRODUCT_CATEGORY_S_SERIES_DAQ\x10\xb4r\x12/\n*DEVICE_INT32_PRODUCT_CATEGORY_B_SERIES_DAQ\x10\xc6r\x12\x30\n+DEVICE_INT32_PRODUCT_CATEGORY_SC_SERIES_DAQ\x10\xb5r\x12)\n$DEVICE_INT32_PRODUCT_CATEGORY_USBDAQ\x10\xb6r\x12,\n\'DEVICE_INT32_PRODUCT_CATEGORY_AO_SERIES\x10\xb7r\x12-\n(DEVICE_INT32_PRODUCT_CATEGORY_DIGITAL_IO\x10\xb8r\x12-\n(DEVICE_INT32_PRODUCT_CATEGORY_TIO_SERIES\x10\xc5r\x12=\n8DEVICE_INT32_PRODUCT_CATEGORY_DYNAMIC_SIGNAL_ACQUISITION\x10\xb9r\x12+\n&DEVICE_INT32_PRODUCT_CATEGORY_SWITCHES\x10\xbar\x12\x36\n1DEVICE_INT32_PRODUCT_CATEGORY_COMPACT_DAQ_CHASSIS\x10\xc2r\x12\x36\n1DEVICE_INT32_PRODUCT_CATEGORY_COMPACT_RIO_CHASSIS\x10\x90~\x12\x32\n-DEVICE_INT32_PRODUCT_CATEGORY_C_SERIES_MODULE\x10\xc3r\x12.\n)DEVICE_INT32_PRODUCT_CATEGORY_SCXI_MODULE\x10\xc4r\x12\x36\n1DEVICE_INT32_PRODUCT_CATEGORY_SCC_CONNECTOR_BLOCK\x10\xf0r\x12-\n(DEVICE_INT32_PRODUCT_CATEGORY_SCC_MODULE\x10\xf1r\x12*\n%DEVICE_INT32_PRODUCT_CATEGORY_NIELVIS\x10\xa3s\x12.\n)DEVICE_INT32_PRODUCT_CATEGORY_NETWORK_DAQ\x10\xeds\x12-\n(DEVICE_INT32_PRODUCT_CATEGORY_SC_EXPRESS\x10\x8e|\x12,\n\'DEVICE_INT32_PRODUCT_CATEGORY_FIELD_DAQ\x10\x97~\x12\x35\n0DEVICE_INT32_PRODUCT_CATEGORY_TEST_SCALE_CHASSIS\x10\xb4~\x12\x34\n/DEVICE_INT32_PRODUCT_CATEGORY_TEST_SCALE_MODULE\x10\xb5~\x12*\n%DEVICE_INT32_PRODUCT_CATEGORY_MIO_DAQ\x10\xb6~\x12*\n%DEVICE_INT32_PRODUCT_CATEGORY_UNKNOWN\x10\xac\x62\x12\'\n\"DEVICE_INT32_TRIGGER_USAGE_ADVANCE\x10\xc8\x61\x12%\n DEVICE_INT32_TRIGGER_USAGE_PAUSE\x10\xc9\x61\x12)\n$DEVICE_INT32_TRIGGER_USAGE_REFERENCE\x10\xca\x61\x12%\n DEVICE_INT32_TRIGGER_USAGE_START\x10\xcb\x61\x12)\n$DEVICE_INT32_TRIGGER_USAGE_HANDSHAKE\x10\x95Q\x12)\n$DEVICE_INT32_TRIGGER_USAGE_ARM_START\x10\xb1r\x12,\n(DEVICE_INT32_TRIGGER_USAGE_TYPES_ADVANCE\x10\x01\x12*\n&DEVICE_INT32_TRIGGER_USAGE_TYPES_PAUSE\x10\x02\x12.\n*DEVICE_INT32_TRIGGER_USAGE_TYPES_REFERENCE\x10\x04\x12*\n&DEVICE_INT32_TRIGGER_USAGE_TYPES_START\x10\x08\x12.\n*DEVICE_INT32_TRIGGER_USAGE_TYPES_HANDSHAKE\x10\x10\x12.\n*DEVICE_INT32_TRIGGER_USAGE_TYPES_ARM_START\x10 \x1a\x02\x10\x01*\xc3\x08\n ExportSignalInt32AttributeValues\x12\"\n\x1e\x45XPORTSIGNAL_INT32_UNSPECIFIED\x10\x00\x12H\nCEXPORTSIGNAL_INT32_DEASSERT_CONDITION_ONBRD_MEM_MORE_THAN_HALF_FULL\x10\xfdO\x12\x39\n4EXPORTSIGNAL_INT32_DEASSERT_CONDITION_ONBRD_MEM_FULL\x10\xfcO\x12\x45\n@EXPORTSIGNAL_INT32_DEASSERT_CONDITION_ONBRD_MEM_CUSTOM_THRESHOLD\x10\xa1\x62\x12=\n8EXPORTSIGNAL_INT32_DIGITAL_WIDTH_UNITS1_SAMP_CLK_PERIODS\x10\xaeP\x12\x34\n/EXPORTSIGNAL_INT32_DIGITAL_WIDTH_UNITS1_SECONDS\x10\xfcP\x12\x32\n-EXPORTSIGNAL_INT32_DIGITAL_WIDTH_UNITS1_TICKS\x10\xc0P\x12\x34\n/EXPORTSIGNAL_INT32_DIGITAL_WIDTH_UNITS3_SECONDS\x10\xfcP\x12,\n\'EXPORTSIGNAL_INT32_EXPORT_ACTIONS_PULSE\x10\x99P\x12-\n(EXPORTSIGNAL_INT32_EXPORT_ACTIONS_TOGGLE\x10\xc3P\x12*\n%EXPORTSIGNAL_INT32_EXPORT_ACTIONS_LVL\x10\xe2O\x12-\n(EXPORTSIGNAL_INT32_EXPORT_ACTIONS2_PULSE\x10\x99P\x12.\n)EXPORTSIGNAL_INT32_EXPORT_ACTIONS2_TOGGLE\x10\xc3P\x12-\n(EXPORTSIGNAL_INT32_EXPORT_ACTIONS3_PULSE\x10\x99P\x12+\n&EXPORTSIGNAL_INT32_EXPORT_ACTIONS3_LVL\x10\xe2O\x12\x33\n.EXPORTSIGNAL_INT32_EXPORT_ACTIONS5_INTERLOCKED\x10\x85\x62\x12-\n(EXPORTSIGNAL_INT32_EXPORT_ACTIONS5_PULSE\x10\x99P\x12#\n\x1e\x45XPORTSIGNAL_INT32_LEVEL1_HIGH\x10\xd0O\x12\"\n\x1d\x45XPORTSIGNAL_INT32_LEVEL1_LOW\x10\xe6O\x12-\n(EXPORTSIGNAL_INT32_POLARITY2_ACTIVE_HIGH\x10\xefN\x12,\n\'EXPORTSIGNAL_INT32_POLARITY2_ACTIVE_LOW\x10\xf0N\x1a\x02\x10\x01*\xe5#\n#PhysicalChannelInt32AttributeValues\x12%\n!PHYSICALCHANNEL_INT32_UNSPECIFIED\x10\x00\x12\x36\n1PHYSICALCHANNEL_INT32_AI_MEASUREMENT_TYPE_VOLTAGE\x10\xd2P\x12:\n5PHYSICALCHANNEL_INT32_AI_MEASUREMENT_TYPE_VOLTAGE_RMS\x10\xeeP\x12\x36\n1PHYSICALCHANNEL_INT32_AI_MEASUREMENT_TYPE_CURRENT\x10\x96O\x12:\n5PHYSICALCHANNEL_INT32_AI_MEASUREMENT_TYPE_CURRENT_RMS\x10\xefP\x12M\nHPHYSICALCHANNEL_INT32_AI_MEASUREMENT_TYPE_VOLTAGE_CUSTOM_WITH_EXCITATION\x10\xd3P\x12\x35\n0PHYSICALCHANNEL_INT32_AI_MEASUREMENT_TYPE_BRIDGE\x10\xa4|\x12;\n6PHYSICALCHANNEL_INT32_AI_MEASUREMENT_TYPE_FREQ_VOLTAGE\x10\xc5O\x12\x39\n4PHYSICALCHANNEL_INT32_AI_MEASUREMENT_TYPE_RESISTANCE\x10\xa6P\x12\x36\n1PHYSICALCHANNEL_INT32_AI_MEASUREMENT_TYPE_TEMP_TC\x10\xbfP\x12;\n6PHYSICALCHANNEL_INT32_AI_MEASUREMENT_TYPE_TEMP_THRMSTR\x10\xbeP\x12\x37\n2PHYSICALCHANNEL_INT32_AI_MEASUREMENT_TYPE_TEMP_RTD\x10\xbdP\x12\x43\n>PHYSICALCHANNEL_INT32_AI_MEASUREMENT_TYPE_TEMP_BUILT_IN_SENSOR\x10\xc7P\x12:\n5PHYSICALCHANNEL_INT32_AI_MEASUREMENT_TYPE_STRAIN_GAGE\x10\xbcP\x12\x42\n=PHYSICALCHANNEL_INT32_AI_MEASUREMENT_TYPE_ROSETTE_STRAIN_GAGE\x10\xec|\x12<\n7PHYSICALCHANNEL_INT32_AI_MEASUREMENT_TYPE_POSITION_LVDT\x10\xf0P\x12<\n7PHYSICALCHANNEL_INT32_AI_MEASUREMENT_TYPE_POSITION_RVDT\x10\xf1P\x12T\nOPHYSICALCHANNEL_INT32_AI_MEASUREMENT_TYPE_POSITION_EDDY_CURRENT_PROXIMITY_PROBE\x10\xf3s\x12<\n7PHYSICALCHANNEL_INT32_AI_MEASUREMENT_TYPE_ACCELEROMETER\x10\xf4P\x12\x42\n=PHYSICALCHANNEL_INT32_AI_MEASUREMENT_TYPE_ACCELERATION_CHARGE\x10\xe8}\x12M\nHPHYSICALCHANNEL_INT32_AI_MEASUREMENT_TYPE_ACCELERATION_4_WIRE_DC_VOLTAGE\x10\xea}\x12\x43\n>PHYSICALCHANNEL_INT32_AI_MEASUREMENT_TYPE_VELOCITY_IEPE_SENSOR\x10\xde|\x12;\n6PHYSICALCHANNEL_INT32_AI_MEASUREMENT_TYPE_FORCE_BRIDGE\x10\x9b|\x12@\n;PHYSICALCHANNEL_INT32_AI_MEASUREMENT_TYPE_FORCE_IEPE_SENSOR\x10\x97|\x12>\n9PHYSICALCHANNEL_INT32_AI_MEASUREMENT_TYPE_PRESSURE_BRIDGE\x10\x9e|\x12H\nCPHYSICALCHANNEL_INT32_AI_MEASUREMENT_TYPE_SOUND_PRESSURE_MICROPHONE\x10\xf2P\x12<\n7PHYSICALCHANNEL_INT32_AI_MEASUREMENT_TYPE_TORQUE_BRIDGE\x10\xa1|\x12:\n5PHYSICALCHANNEL_INT32_AI_MEASUREMENT_TYPE_TEDS_SENSOR\x10\xf3\x61\x12\x35\n0PHYSICALCHANNEL_INT32_AI_MEASUREMENT_TYPE_CHARGE\x10\xe9}\x12\x34\n/PHYSICALCHANNEL_INT32_AI_MEASUREMENT_TYPE_POWER\x10\xc9~\x12?\n:PHYSICALCHANNEL_INT32_AI_MEASUREMENT_TYPE_CALCULATED_POWER\x10\xcc~\x12\x39\n4PHYSICALCHANNEL_INT32_AO_OUTPUT_CHANNEL_TYPE_VOLTAGE\x10\xd2P\x12\x39\n4PHYSICALCHANNEL_INT32_AO_OUTPUT_CHANNEL_TYPE_CURRENT\x10\x96O\x12:\n5PHYSICALCHANNEL_INT32_AO_OUTPUT_CHANNEL_TYPE_FUNC_GEN\x10\x9es\x12>\n9PHYSICALCHANNEL_INT32_AO_POWER_UP_OUTPUT_BEHAVIOR_VOLTAGE\x10\xd2P\x12>\n9PHYSICALCHANNEL_INT32_AO_POWER_UP_OUTPUT_BEHAVIOR_CURRENT\x10\x96O\x12\x45\n@PHYSICALCHANNEL_INT32_AO_POWER_UP_OUTPUT_BEHAVIOR_HIGH_IMPEDANCE\x10\xef\x61\x12\x38\n3PHYSICALCHANNEL_INT32_ACQUISITION_TYPE_FINITE_SAMPS\x10\xc2O\x12\x36\n1PHYSICALCHANNEL_INT32_ACQUISITION_TYPE_CONT_SAMPS\x10\x8bO\x12\x41\n\n9PHYSICALCHANNEL_INT32_CI_MEASUREMENT_TYPE_PULSE_FREQUENCY\x10\xf8{\x12\x39\n4PHYSICALCHANNEL_INT32_CI_MEASUREMENT_TYPE_PULSE_TIME\x10\xf9{\x12:\n5PHYSICALCHANNEL_INT32_CI_MEASUREMENT_TYPE_PULSE_TICKS\x10\xfa{\x12\x39\n4PHYSICALCHANNEL_INT32_CI_MEASUREMENT_TYPE_DUTY_CYCLE\x10\xc6}\x12\x43\n>PHYSICALCHANNEL_INT32_CI_MEASUREMENT_TYPE_POSITION_ANG_ENCODER\x10\xf8P\x12\x43\n>PHYSICALCHANNEL_INT32_CI_MEASUREMENT_TYPE_POSITION_LIN_ENCODER\x10\xf9P\x12\x43\n>PHYSICALCHANNEL_INT32_CI_MEASUREMENT_TYPE_VELOCITY_ANG_ENCODER\x10\xce}\x12\x43\n>PHYSICALCHANNEL_INT32_CI_MEASUREMENT_TYPE_VELOCITY_LIN_ENCODER\x10\xcf}\x12;\n6PHYSICALCHANNEL_INT32_CI_MEASUREMENT_TYPE_TWO_EDGE_SEP\x10\x9bP\x12<\n7PHYSICALCHANNEL_INT32_CI_MEASUREMENT_TYPE_GPS_TIMESTAMP\x10\xfaP\x12\x34\n/PHYSICALCHANNEL_INT32_CO_OUTPUT_TYPE_PULSE_TIME\x10\x9dP\x12\x34\n/PHYSICALCHANNEL_INT32_CO_OUTPUT_TYPE_PULSE_FREQ\x10\x87O\x12\x35\n0PHYSICALCHANNEL_INT32_CO_OUTPUT_TYPE_PULSE_TICKS\x10\x9cP\x12\x32\n-PHYSICALCHANNEL_INT32_LOGIC_FAMILY_1POINT_8_V\x10\xb8~\x12\x32\n-PHYSICALCHANNEL_INT32_LOGIC_FAMILY_2POINT_5_V\x10\x9cr\x12\x32\n-PHYSICALCHANNEL_INT32_LOGIC_FAMILY_3POINT_3_V\x10\x9dr\x12+\n&PHYSICALCHANNEL_INT32_LOGIC_FAMILY_5_V\x10\x9br\x12\x38\n3PHYSICALCHANNEL_INT32_NAV_MEASUREMENT_TYPE_ALTITUDE\x10\xfd|\x12\x39\n4PHYSICALCHANNEL_INT32_NAV_MEASUREMENT_TYPE_LONGITUDE\x10\xfe|\x12\x38\n3PHYSICALCHANNEL_INT32_NAV_MEASUREMENT_TYPE_LATITUDE\x10\xff|\x12\x41\n\n9TIMING_INT32_MIOAI_CONVERT_TB_SRC_SAME_AS_MASTER_TIMEBASE\x10\xaaP\x12\x37\n2TIMING_INT32_MIOAI_CONVERT_TB_SRC_100_MHZ_TIMEBASE\x10\xf1{\x12\x36\n1TIMING_INT32_MIOAI_CONVERT_TB_SRC_80_MHZ_TIMEBASE\x10\xacr\x12\x36\n1TIMING_INT32_MIOAI_CONVERT_TB_SRC_20_MHZ_TIMEBASE\x10\xf9\x61\x12\x35\n0TIMING_INT32_MIOAI_CONVERT_TB_SRC_8_MHZ_TIMEBASE\x10\x97}\x12\x37\n2TIMING_INT32_OVERFLOW_BEHAVIOR_STOP_TASK_AND_ERROR\x10\xf6{\x12\x33\n.TIMING_INT32_OVERFLOW_BEHAVIOR_IGNORE_OVERRUNS\x10\xf7{\x12\x42\n=TIMING_INT32_SAMPLE_INPUT_DATA_WHEN_HANDSHAKE_TRIGGER_ASSERTS\x10\x88\x62\x12\x44\n?TIMING_INT32_SAMPLE_INPUT_DATA_WHEN_HANDSHAKE_TRIGGER_DEASSERTS\x10\x89\x62\x12-\n(TIMING_INT32_SAMPLE_TIMING_TYPE_SAMP_CLK\x10\x94Q\x12\x34\n/TIMING_INT32_SAMPLE_TIMING_TYPE_BURST_HANDSHAKE\x10\x84\x62\x12.\n)TIMING_INT32_SAMPLE_TIMING_TYPE_HANDSHAKE\x10\x95Q\x12-\n(TIMING_INT32_SAMPLE_TIMING_TYPE_IMPLICIT\x10\xd3Q\x12.\n)TIMING_INT32_SAMPLE_TIMING_TYPE_ON_DEMAND\x10\x96Q\x12\x35\n0TIMING_INT32_SAMPLE_TIMING_TYPE_CHANGE_DETECTION\x10\xd8\x61\x12\x37\n2TIMING_INT32_SAMPLE_TIMING_TYPE_PIPELINED_SAMP_CLK\x10\xccr\x12)\n$TIMING_INT32_SYNC_PULSE_TYPE_ONBOARD\x10\x80~\x12*\n%TIMING_INT32_SYNC_PULSE_TYPE_DIG_EDGE\x10\xa6O\x12&\n!TIMING_INT32_SYNC_PULSE_TYPE_TIME\x10\xfc|\x12&\n!TIMING_INT32_TIMESCALE2_HOST_TIME\x10\xfe}\x12+\n&TIMING_INT32_TIMESCALE2_IO_DEVICE_TIME\x10\xff}\x12:\n5TIMING_INT32_UNDERFLOW_BEHAVIOR_HALT_OUTPUT_AND_ERROR\x10\x97r\x12?\n:TIMING_INT32_UNDERFLOW_BEHAVIOR_PAUSE_UNTIL_DATA_AVAILABLE\x10\x98r*\xfc\x11\n\x1bTriggerInt32AttributeValues\x12\x1d\n\x19TRIGGER_INT32_UNSPECIFIED\x10\x00\x12)\n$TRIGGER_INT32_ACTIVE_LEVEL_ABOVE_LVL\x10\xedN\x12)\n$TRIGGER_INT32_ACTIVE_LEVEL_BELOW_LVL\x10\xfbN\x12\x1f\n\x1aTRIGGER_INT32_COUPLING2_AC\x10\xbdN\x12\x1f\n\x1aTRIGGER_INT32_COUPLING2_DC\x10\xc2N\x12=\n8TRIGGER_INT32_DIGITAL_PATTERN_CONDITION1_PATTERN_MATCHES\x10\x8eP\x12\x44\n?TRIGGER_INT32_DIGITAL_PATTERN_CONDITION1_PATTERN_DOES_NOT_MATCH\x10\x8dP\x12\x38\n3TRIGGER_INT32_DIGITAL_WIDTH_UNITS1_SAMP_CLK_PERIODS\x10\xaeP\x12/\n*TRIGGER_INT32_DIGITAL_WIDTH_UNITS1_SECONDS\x10\xfcP\x12-\n(TRIGGER_INT32_DIGITAL_WIDTH_UNITS1_TICKS\x10\xc0P\x12\x1f\n\x1aTRIGGER_INT32_EDGE1_RISING\x10\xa8P\x12 \n\x1bTRIGGER_INT32_EDGE1_FALLING\x10\xbbO\x12\x1e\n\x19TRIGGER_INT32_LEVEL1_HIGH\x10\xd0O\x12\x1d\n\x18TRIGGER_INT32_LEVEL1_LOW\x10\xe6O\x12&\n!TRIGGER_INT32_SLOPE1_RISING_SLOPE\x10\xa8P\x12\'\n\"TRIGGER_INT32_SLOPE1_FALLING_SLOPE\x10\xbbO\x12!\n\x1cTRIGGER_INT32_SYNC_TYPE_NONE\x10\xf6O\x12#\n\x1eTRIGGER_INT32_SYNC_TYPE_MASTER\x10\x90|\x12\"\n\x1dTRIGGER_INT32_SYNC_TYPE_SLAVE\x10\x91|\x12\'\n\"TRIGGER_INT32_TIMESCALE2_HOST_TIME\x10\xfe}\x12,\n\'TRIGGER_INT32_TIMESCALE2_IO_DEVICE_TIME\x10\xff}\x12+\n&TRIGGER_INT32_TRIGGER_TYPE10_ANLG_EDGE\x10\xf3N\x12\x31\n,TRIGGER_INT32_TRIGGER_TYPE10_ANLG_MULTI_EDGE\x10\xec}\x12*\n%TRIGGER_INT32_TRIGGER_TYPE10_DIG_EDGE\x10\xa6O\x12-\n(TRIGGER_INT32_TRIGGER_TYPE10_DIG_PATTERN\x10\x9eQ\x12*\n%TRIGGER_INT32_TRIGGER_TYPE10_ANLG_WIN\x10\xf7N\x12&\n!TRIGGER_INT32_TRIGGER_TYPE10_TIME\x10\xfc|\x12&\n!TRIGGER_INT32_TRIGGER_TYPE10_NONE\x10\xf6O\x12)\n$TRIGGER_INT32_TRIGGER_TYPE4_DIG_EDGE\x10\xa6O\x12%\n TRIGGER_INT32_TRIGGER_TYPE4_TIME\x10\xfc|\x12%\n TRIGGER_INT32_TRIGGER_TYPE4_NONE\x10\xf6O\x12)\n$TRIGGER_INT32_TRIGGER_TYPE5_DIG_EDGE\x10\xa6O\x12)\n$TRIGGER_INT32_TRIGGER_TYPE5_SOFTWARE\x10\xb4P\x12%\n TRIGGER_INT32_TRIGGER_TYPE5_NONE\x10\xf6O\x12)\n$TRIGGER_INT32_TRIGGER_TYPE6_ANLG_LVL\x10\xf5N\x12)\n$TRIGGER_INT32_TRIGGER_TYPE6_ANLG_WIN\x10\xf7N\x12(\n#TRIGGER_INT32_TRIGGER_TYPE6_DIG_LVL\x10\xa8O\x12,\n\'TRIGGER_INT32_TRIGGER_TYPE6_DIG_PATTERN\x10\x9eQ\x12%\n TRIGGER_INT32_TRIGGER_TYPE6_NONE\x10\xf6O\x12*\n%TRIGGER_INT32_TRIGGER_TYPE8_ANLG_EDGE\x10\xf3N\x12\x30\n+TRIGGER_INT32_TRIGGER_TYPE8_ANLG_MULTI_EDGE\x10\xec}\x12)\n$TRIGGER_INT32_TRIGGER_TYPE8_DIG_EDGE\x10\xa6O\x12,\n\'TRIGGER_INT32_TRIGGER_TYPE8_DIG_PATTERN\x10\x9eQ\x12)\n$TRIGGER_INT32_TRIGGER_TYPE8_ANLG_WIN\x10\xf7N\x12%\n TRIGGER_INT32_TRIGGER_TYPE8_TIME\x10\xfc|\x12%\n TRIGGER_INT32_TRIGGER_TYPE8_NONE\x10\xf6O\x12,\n\'TRIGGER_INT32_TRIGGER_TYPE9_INTERLOCKED\x10\x85\x62\x12%\n TRIGGER_INT32_TRIGGER_TYPE9_NONE\x10\xf6O\x12\x39\n4TRIGGER_INT32_WINDOW_TRIGGER_CONDITION1_ENTERING_WIN\x10\xb3O\x12\x38\n3TRIGGER_INT32_WINDOW_TRIGGER_CONDITION1_LEAVING_WIN\x10\xe0O\x12\x37\n2TRIGGER_INT32_WINDOW_TRIGGER_CONDITION2_INSIDE_WIN\x10\xd7O\x12\x38\n3TRIGGER_INT32_WINDOW_TRIGGER_CONDITION2_OUTSIDE_WIN\x10\x8bP\x1a\x02\x10\x01*\xfa\x05\n\x1cWatchdogInt32AttributeValues\x12\x1e\n\x1aWATCHDOG_INT32_UNSPECIFIED\x10\x00\x12+\n&WATCHDOG_INT32_DIGITAL_LINE_STATE_HIGH\x10\xd0O\x12*\n%WATCHDOG_INT32_DIGITAL_LINE_STATE_LOW\x10\xe6O\x12/\n*WATCHDOG_INT32_DIGITAL_LINE_STATE_TRISTATE\x10\xc6P\x12\x30\n+WATCHDOG_INT32_DIGITAL_LINE_STATE_NO_CHANGE\x10\xb0O\x12 \n\x1bWATCHDOG_INT32_EDGE1_RISING\x10\xa8P\x12!\n\x1cWATCHDOG_INT32_EDGE1_FALLING\x10\xbbO\x12*\n%WATCHDOG_INT32_TRIGGER_TYPE4_DIG_EDGE\x10\xa6O\x12&\n!WATCHDOG_INT32_TRIGGER_TYPE4_TIME\x10\xfc|\x12&\n!WATCHDOG_INT32_TRIGGER_TYPE4_NONE\x10\xf6O\x12\x33\n.WATCHDOG_INT32_WATCHDOG_AO_EXPIR_STATE_VOLTAGE\x10\xd2P\x12\x33\n.WATCHDOG_INT32_WATCHDOG_AO_EXPIR_STATE_CURRENT\x10\x96O\x12\x35\n0WATCHDOG_INT32_WATCHDOG_AO_EXPIR_STATE_NO_CHANGE\x10\xb0O\x12/\n*WATCHDOG_INT32_WATCHDOG_CO_EXPIR_STATE_LOW\x10\xe6O\x12\x30\n+WATCHDOG_INT32_WATCHDOG_CO_EXPIR_STATE_HIGH\x10\xd0O\x12\x35\n0WATCHDOG_INT32_WATCHDOG_CO_EXPIR_STATE_NO_CHANGE\x10\xb0O\x1a\x02\x10\x01*\xed\x02\n\x19WriteInt32AttributeValues\x12\x1b\n\x17WRITE_INT32_UNSPECIFIED\x10\x00\x12/\n*WRITE_INT32_REGENERATION_MODE1_ALLOW_REGEN\x10\xf1N\x12\x36\n1WRITE_INT32_REGENERATION_MODE1_DO_NOT_ALLOW_REGEN\x10\xaeO\x12 \n\x1bWRITE_INT32_WAIT_MODE2_POLL\x10\xec\x61\x12!\n\x1cWRITE_INT32_WAIT_MODE2_YIELD\x10\xed\x61\x12!\n\x1cWRITE_INT32_WAIT_MODE2_SLEEP\x10\x83\x62\x12/\n*WRITE_INT32_WRITE_RELATIVE_TO_FIRST_SAMPLE\x10\xb8Q\x12\x31\n,WRITE_INT32_WRITE_RELATIVE_TO_CURR_WRITE_POS\x10\xbeQ2\xe9\x96\x03\n\x07NiDAQmx\x12p\n\x15\x41\x64\x64\x43\x44\x41QSyncConnection\x12*.nidaqmx_grpc.AddCDAQSyncConnectionRequest\x1a+.nidaqmx_grpc.AddCDAQSyncConnectionResponse\x12m\n\x14\x41\x64\x64GlobalChansToTask\x12).nidaqmx_grpc.AddGlobalChansToTaskRequest\x1a*.nidaqmx_grpc.AddGlobalChansToTaskResponse\x12\x61\n\x10\x41\x64\x64NetworkDevice\x12%.nidaqmx_grpc.AddNetworkDeviceRequest\x1a&.nidaqmx_grpc.AddNetworkDeviceResponse\x12\xa3\x01\n&AreConfiguredCDAQSyncPortsDisconnected\x12;.nidaqmx_grpc.AreConfiguredCDAQSyncPortsDisconnectedRequest\x1a<.nidaqmx_grpc.AreConfiguredCDAQSyncPortsDisconnectedResponse\x12\x91\x01\n AutoConfigureCDAQSyncConnections\x12\x35.nidaqmx_grpc.AutoConfigureCDAQSyncConnectionsRequest\x1a\x36.nidaqmx_grpc.AutoConfigureCDAQSyncConnectionsResponse\x12|\n\x19\x43\x61lculateReversePolyCoeff\x12..nidaqmx_grpc.CalculateReversePolyCoeffRequest\x1a/.nidaqmx_grpc.CalculateReversePolyCoeffResponse\x12g\n\x12\x43\x66gAnlgEdgeRefTrig\x12\'.nidaqmx_grpc.CfgAnlgEdgeRefTrigRequest\x1a(.nidaqmx_grpc.CfgAnlgEdgeRefTrigResponse\x12m\n\x14\x43\x66gAnlgEdgeStartTrig\x12).nidaqmx_grpc.CfgAnlgEdgeStartTrigRequest\x1a*.nidaqmx_grpc.CfgAnlgEdgeStartTrigResponse\x12v\n\x17\x43\x66gAnlgMultiEdgeRefTrig\x12,.nidaqmx_grpc.CfgAnlgMultiEdgeRefTrigRequest\x1a-.nidaqmx_grpc.CfgAnlgMultiEdgeRefTrigResponse\x12|\n\x19\x43\x66gAnlgMultiEdgeStartTrig\x12..nidaqmx_grpc.CfgAnlgMultiEdgeStartTrigRequest\x1a/.nidaqmx_grpc.CfgAnlgMultiEdgeStartTrigResponse\x12m\n\x14\x43\x66gAnlgWindowRefTrig\x12).nidaqmx_grpc.CfgAnlgWindowRefTrigRequest\x1a*.nidaqmx_grpc.CfgAnlgWindowRefTrigResponse\x12s\n\x16\x43\x66gAnlgWindowStartTrig\x12+.nidaqmx_grpc.CfgAnlgWindowStartTrigRequest\x1a,.nidaqmx_grpc.CfgAnlgWindowStartTrigResponse\x12\x9d\x01\n$CfgBurstHandshakingTimingExportClock\x12\x39.nidaqmx_grpc.CfgBurstHandshakingTimingExportClockRequest\x1a:.nidaqmx_grpc.CfgBurstHandshakingTimingExportClockResponse\x12\x9d\x01\n$CfgBurstHandshakingTimingImportClock\x12\x39.nidaqmx_grpc.CfgBurstHandshakingTimingImportClockRequest\x1a:.nidaqmx_grpc.CfgBurstHandshakingTimingImportClockResponse\x12y\n\x18\x43\x66gChangeDetectionTiming\x12-.nidaqmx_grpc.CfgChangeDetectionTimingRequest\x1a..nidaqmx_grpc.CfgChangeDetectionTimingResponse\x12\x64\n\x11\x43\x66gDigEdgeRefTrig\x12&.nidaqmx_grpc.CfgDigEdgeRefTrigRequest\x1a\'.nidaqmx_grpc.CfgDigEdgeRefTrigResponse\x12j\n\x13\x43\x66gDigEdgeStartTrig\x12(.nidaqmx_grpc.CfgDigEdgeStartTrigRequest\x1a).nidaqmx_grpc.CfgDigEdgeStartTrigResponse\x12m\n\x14\x43\x66gDigPatternRefTrig\x12).nidaqmx_grpc.CfgDigPatternRefTrigRequest\x1a*.nidaqmx_grpc.CfgDigPatternRefTrigResponse\x12s\n\x16\x43\x66gDigPatternStartTrig\x12+.nidaqmx_grpc.CfgDigPatternStartTrigRequest\x1a,.nidaqmx_grpc.CfgDigPatternStartTrigResponse\x12m\n\x14\x43\x66gHandshakingTiming\x12).nidaqmx_grpc.CfgHandshakingTimingRequest\x1a*.nidaqmx_grpc.CfgHandshakingTimingResponse\x12\x64\n\x11\x43\x66gImplicitTiming\x12&.nidaqmx_grpc.CfgImplicitTimingRequest\x1a\'.nidaqmx_grpc.CfgImplicitTimingResponse\x12[\n\x0e\x43\x66gInputBuffer\x12#.nidaqmx_grpc.CfgInputBufferRequest\x1a$.nidaqmx_grpc.CfgInputBufferResponse\x12^\n\x0f\x43\x66gOutputBuffer\x12$.nidaqmx_grpc.CfgOutputBufferRequest\x1a%.nidaqmx_grpc.CfgOutputBufferResponse\x12|\n\x19\x43\x66gPipelinedSampClkTiming\x12..nidaqmx_grpc.CfgPipelinedSampClkTimingRequest\x1a/.nidaqmx_grpc.CfgPipelinedSampClkTimingResponse\x12\x61\n\x10\x43\x66gSampClkTiming\x12%.nidaqmx_grpc.CfgSampClkTimingRequest\x1a&.nidaqmx_grpc.CfgSampClkTimingResponse\x12\x61\n\x10\x43\x66gTimeStartTrig\x12%.nidaqmx_grpc.CfgTimeStartTrigRequest\x1a&.nidaqmx_grpc.CfgTimeStartTrigResponse\x12y\n\x18\x43\x66gWatchdogAOExpirStates\x12-.nidaqmx_grpc.CfgWatchdogAOExpirStatesRequest\x1a..nidaqmx_grpc.CfgWatchdogAOExpirStatesResponse\x12y\n\x18\x43\x66gWatchdogCOExpirStates\x12-.nidaqmx_grpc.CfgWatchdogCOExpirStatesRequest\x1a..nidaqmx_grpc.CfgWatchdogCOExpirStatesResponse\x12y\n\x18\x43\x66gWatchdogDOExpirStates\x12-.nidaqmx_grpc.CfgWatchdogDOExpirStatesRequest\x1a..nidaqmx_grpc.CfgWatchdogDOExpirStatesResponse\x12L\n\tClearTEDS\x12\x1e.nidaqmx_grpc.ClearTEDSRequest\x1a\x1f.nidaqmx_grpc.ClearTEDSResponse\x12L\n\tClearTask\x12\x1e.nidaqmx_grpc.ClearTaskRequest\x1a\x1f.nidaqmx_grpc.ClearTaskResponse\x12\x61\n\x10\x43onfigureLogging\x12%.nidaqmx_grpc.ConfigureLoggingRequest\x1a&.nidaqmx_grpc.ConfigureLoggingResponse\x12X\n\rConfigureTEDS\x12\".nidaqmx_grpc.ConfigureTEDSRequest\x1a#.nidaqmx_grpc.ConfigureTEDSResponse\x12U\n\x0c\x43onnectTerms\x12!.nidaqmx_grpc.ConnectTermsRequest\x1a\".nidaqmx_grpc.ConnectTermsResponse\x12j\n\x13\x43ontrolWatchdogTask\x12(.nidaqmx_grpc.ControlWatchdogTaskRequest\x1a).nidaqmx_grpc.ControlWatchdogTaskResponse\x12\x8e\x01\n\x1f\x43reateAIAccel4WireDCVoltageChan\x12\x34.nidaqmx_grpc.CreateAIAccel4WireDCVoltageChanRequest\x1a\x35.nidaqmx_grpc.CreateAIAccel4WireDCVoltageChanResponse\x12\x64\n\x11\x43reateAIAccelChan\x12&.nidaqmx_grpc.CreateAIAccelChanRequest\x1a\'.nidaqmx_grpc.CreateAIAccelChanResponse\x12v\n\x17\x43reateAIAccelChargeChan\x12,.nidaqmx_grpc.CreateAIAccelChargeChanRequest\x1a-.nidaqmx_grpc.CreateAIAccelChargeChanResponse\x12g\n\x12\x43reateAIBridgeChan\x12\'.nidaqmx_grpc.CreateAIBridgeChanRequest\x1a(.nidaqmx_grpc.CreateAIBridgeChanResponse\x12g\n\x12\x43reateAIChargeChan\x12\'.nidaqmx_grpc.CreateAIChargeChanRequest\x1a(.nidaqmx_grpc.CreateAIChargeChanResponse\x12j\n\x13\x43reateAICurrentChan\x12(.nidaqmx_grpc.CreateAICurrentChanRequest\x1a).nidaqmx_grpc.CreateAICurrentChanResponse\x12s\n\x16\x43reateAICurrentRMSChan\x12+.nidaqmx_grpc.CreateAICurrentRMSChanRequest\x1a,.nidaqmx_grpc.CreateAICurrentRMSChanResponse\x12\x94\x01\n!CreateAIForceBridgePolynomialChan\x12\x36.nidaqmx_grpc.CreateAIForceBridgePolynomialChanRequest\x1a\x37.nidaqmx_grpc.CreateAIForceBridgePolynomialChanResponse\x12\x85\x01\n\x1c\x43reateAIForceBridgeTableChan\x12\x31.nidaqmx_grpc.CreateAIForceBridgeTableChanRequest\x1a\x32.nidaqmx_grpc.CreateAIForceBridgeTableChanResponse\x12\x97\x01\n\"CreateAIForceBridgeTwoPointLinChan\x12\x37.nidaqmx_grpc.CreateAIForceBridgeTwoPointLinChanRequest\x1a\x38.nidaqmx_grpc.CreateAIForceBridgeTwoPointLinChanResponse\x12p\n\x15\x43reateAIForceIEPEChan\x12*.nidaqmx_grpc.CreateAIForceIEPEChanRequest\x1a+.nidaqmx_grpc.CreateAIForceIEPEChanResponse\x12v\n\x17\x43reateAIFreqVoltageChan\x12,.nidaqmx_grpc.CreateAIFreqVoltageChanRequest\x1a-.nidaqmx_grpc.CreateAIFreqVoltageChanResponse\x12s\n\x16\x43reateAIMicrophoneChan\x12+.nidaqmx_grpc.CreateAIMicrophoneChanRequest\x1a,.nidaqmx_grpc.CreateAIMicrophoneChanResponse\x12\x91\x01\n CreateAIPosEddyCurrProxProbeChan\x12\x35.nidaqmx_grpc.CreateAIPosEddyCurrProxProbeChanRequest\x1a\x36.nidaqmx_grpc.CreateAIPosEddyCurrProxProbeChanResponse\x12j\n\x13\x43reateAIPosLVDTChan\x12(.nidaqmx_grpc.CreateAIPosLVDTChanRequest\x1a).nidaqmx_grpc.CreateAIPosLVDTChanResponse\x12j\n\x13\x43reateAIPosRVDTChan\x12(.nidaqmx_grpc.CreateAIPosRVDTChanRequest\x1a).nidaqmx_grpc.CreateAIPosRVDTChanResponse\x12\x64\n\x11\x43reateAIPowerChan\x12&.nidaqmx_grpc.CreateAIPowerChanRequest\x1a\'.nidaqmx_grpc.CreateAIPowerChanResponse\x12\x9d\x01\n$CreateAIPressureBridgePolynomialChan\x12\x39.nidaqmx_grpc.CreateAIPressureBridgePolynomialChanRequest\x1a:.nidaqmx_grpc.CreateAIPressureBridgePolynomialChanResponse\x12\x8e\x01\n\x1f\x43reateAIPressureBridgeTableChan\x12\x34.nidaqmx_grpc.CreateAIPressureBridgeTableChanRequest\x1a\x35.nidaqmx_grpc.CreateAIPressureBridgeTableChanResponse\x12\xa0\x01\n%CreateAIPressureBridgeTwoPointLinChan\x12:.nidaqmx_grpc.CreateAIPressureBridgeTwoPointLinChanRequest\x1a;.nidaqmx_grpc.CreateAIPressureBridgeTwoPointLinChanResponse\x12^\n\x0f\x43reateAIRTDChan\x12$.nidaqmx_grpc.CreateAIRTDChanRequest\x1a%.nidaqmx_grpc.CreateAIRTDChanResponse\x12s\n\x16\x43reateAIResistanceChan\x12+.nidaqmx_grpc.CreateAIResistanceChanRequest\x1a,.nidaqmx_grpc.CreateAIResistanceChanResponse\x12\x88\x01\n\x1d\x43reateAIRosetteStrainGageChan\x12\x32.nidaqmx_grpc.CreateAIRosetteStrainGageChanRequest\x1a\x33.nidaqmx_grpc.CreateAIRosetteStrainGageChanResponse\x12s\n\x16\x43reateAIStrainGageChan\x12+.nidaqmx_grpc.CreateAIStrainGageChanRequest\x1a,.nidaqmx_grpc.CreateAIStrainGageChanResponse\x12\x88\x01\n\x1d\x43reateAITempBuiltInSensorChan\x12\x32.nidaqmx_grpc.CreateAITempBuiltInSensorChanRequest\x1a\x33.nidaqmx_grpc.CreateAITempBuiltInSensorChanResponse\x12j\n\x13\x43reateAIThrmcplChan\x12(.nidaqmx_grpc.CreateAIThrmcplChanRequest\x1a).nidaqmx_grpc.CreateAIThrmcplChanResponse\x12s\n\x16\x43reateAIThrmstrChanIex\x12+.nidaqmx_grpc.CreateAIThrmstrChanIexRequest\x1a,.nidaqmx_grpc.CreateAIThrmstrChanIexResponse\x12s\n\x16\x43reateAIThrmstrChanVex\x12+.nidaqmx_grpc.CreateAIThrmstrChanVexRequest\x1a,.nidaqmx_grpc.CreateAIThrmstrChanVexResponse\x12\x97\x01\n\"CreateAITorqueBridgePolynomialChan\x12\x37.nidaqmx_grpc.CreateAITorqueBridgePolynomialChanRequest\x1a\x38.nidaqmx_grpc.CreateAITorqueBridgePolynomialChanResponse\x12\x88\x01\n\x1d\x43reateAITorqueBridgeTableChan\x12\x32.nidaqmx_grpc.CreateAITorqueBridgeTableChanRequest\x1a\x33.nidaqmx_grpc.CreateAITorqueBridgeTableChanResponse\x12\x9a\x01\n#CreateAITorqueBridgeTwoPointLinChan\x12\x38.nidaqmx_grpc.CreateAITorqueBridgeTwoPointLinChanRequest\x1a\x39.nidaqmx_grpc.CreateAITorqueBridgeTwoPointLinChanResponse\x12y\n\x18\x43reateAIVelocityIEPEChan\x12-.nidaqmx_grpc.CreateAIVelocityIEPEChanRequest\x1a..nidaqmx_grpc.CreateAIVelocityIEPEChanResponse\x12j\n\x13\x43reateAIVoltageChan\x12(.nidaqmx_grpc.CreateAIVoltageChanRequest\x1a).nidaqmx_grpc.CreateAIVoltageChanResponse\x12\x85\x01\n\x1c\x43reateAIVoltageChanWithExcit\x12\x31.nidaqmx_grpc.CreateAIVoltageChanWithExcitRequest\x1a\x32.nidaqmx_grpc.CreateAIVoltageChanWithExcitResponse\x12s\n\x16\x43reateAIVoltageRMSChan\x12+.nidaqmx_grpc.CreateAIVoltageRMSChanRequest\x1a,.nidaqmx_grpc.CreateAIVoltageRMSChanResponse\x12j\n\x13\x43reateAOCurrentChan\x12(.nidaqmx_grpc.CreateAOCurrentChanRequest\x1a).nidaqmx_grpc.CreateAOCurrentChanResponse\x12j\n\x13\x43reateAOFuncGenChan\x12(.nidaqmx_grpc.CreateAOFuncGenChanRequest\x1a).nidaqmx_grpc.CreateAOFuncGenChanResponse\x12j\n\x13\x43reateAOVoltageChan\x12(.nidaqmx_grpc.CreateAOVoltageChanRequest\x1a).nidaqmx_grpc.CreateAOVoltageChanResponse\x12s\n\x16\x43reateCIAngEncoderChan\x12+.nidaqmx_grpc.CreateCIAngEncoderChanRequest\x1a,.nidaqmx_grpc.CreateCIAngEncoderChanResponse\x12v\n\x17\x43reateCIAngVelocityChan\x12,.nidaqmx_grpc.CreateCIAngVelocityChanRequest\x1a-.nidaqmx_grpc.CreateCIAngVelocityChanResponse\x12s\n\x16\x43reateCICountEdgesChan\x12+.nidaqmx_grpc.CreateCICountEdgesChanRequest\x1a,.nidaqmx_grpc.CreateCICountEdgesChanResponse\x12p\n\x15\x43reateCIDutyCycleChan\x12*.nidaqmx_grpc.CreateCIDutyCycleChanRequest\x1a+.nidaqmx_grpc.CreateCIDutyCycleChanResponse\x12\x61\n\x10\x43reateCIFreqChan\x12%.nidaqmx_grpc.CreateCIFreqChanRequest\x1a&.nidaqmx_grpc.CreateCIFreqChanResponse\x12y\n\x18\x43reateCIGPSTimestampChan\x12-.nidaqmx_grpc.CreateCIGPSTimestampChanRequest\x1a..nidaqmx_grpc.CreateCIGPSTimestampChanResponse\x12s\n\x16\x43reateCILinEncoderChan\x12+.nidaqmx_grpc.CreateCILinEncoderChanRequest\x1a,.nidaqmx_grpc.CreateCILinEncoderChanResponse\x12v\n\x17\x43reateCILinVelocityChan\x12,.nidaqmx_grpc.CreateCILinVelocityChanRequest\x1a-.nidaqmx_grpc.CreateCILinVelocityChanResponse\x12g\n\x12\x43reateCIPeriodChan\x12\'.nidaqmx_grpc.CreateCIPeriodChanRequest\x1a(.nidaqmx_grpc.CreateCIPeriodChanResponse\x12p\n\x15\x43reateCIPulseChanFreq\x12*.nidaqmx_grpc.CreateCIPulseChanFreqRequest\x1a+.nidaqmx_grpc.CreateCIPulseChanFreqResponse\x12s\n\x16\x43reateCIPulseChanTicks\x12+.nidaqmx_grpc.CreateCIPulseChanTicksRequest\x1a,.nidaqmx_grpc.CreateCIPulseChanTicksResponse\x12p\n\x15\x43reateCIPulseChanTime\x12*.nidaqmx_grpc.CreateCIPulseChanTimeRequest\x1a+.nidaqmx_grpc.CreateCIPulseChanTimeResponse\x12s\n\x16\x43reateCIPulseWidthChan\x12+.nidaqmx_grpc.CreateCIPulseWidthChanRequest\x1a,.nidaqmx_grpc.CreateCIPulseWidthChanResponse\x12s\n\x16\x43reateCISemiPeriodChan\x12+.nidaqmx_grpc.CreateCISemiPeriodChanRequest\x1a,.nidaqmx_grpc.CreateCISemiPeriodChanResponse\x12s\n\x16\x43reateCITwoEdgeSepChan\x12+.nidaqmx_grpc.CreateCITwoEdgeSepChanRequest\x1a,.nidaqmx_grpc.CreateCITwoEdgeSepChanResponse\x12p\n\x15\x43reateCOPulseChanFreq\x12*.nidaqmx_grpc.CreateCOPulseChanFreqRequest\x1a+.nidaqmx_grpc.CreateCOPulseChanFreqResponse\x12s\n\x16\x43reateCOPulseChanTicks\x12+.nidaqmx_grpc.CreateCOPulseChanTicksRequest\x1a,.nidaqmx_grpc.CreateCOPulseChanTicksResponse\x12p\n\x15\x43reateCOPulseChanTime\x12*.nidaqmx_grpc.CreateCOPulseChanTimeRequest\x1a+.nidaqmx_grpc.CreateCOPulseChanTimeResponse\x12U\n\x0c\x43reateDIChan\x12!.nidaqmx_grpc.CreateDIChanRequest\x1a\".nidaqmx_grpc.CreateDIChanResponse\x12U\n\x0c\x43reateDOChan\x12!.nidaqmx_grpc.CreateDOChanRequest\x1a\".nidaqmx_grpc.CreateDOChanResponse\x12[\n\x0e\x43reateLinScale\x12#.nidaqmx_grpc.CreateLinScaleRequest\x1a$.nidaqmx_grpc.CreateLinScaleResponse\x12[\n\x0e\x43reateMapScale\x12#.nidaqmx_grpc.CreateMapScaleRequest\x1a$.nidaqmx_grpc.CreateMapScaleResponse\x12p\n\x15\x43reatePolynomialScale\x12*.nidaqmx_grpc.CreatePolynomialScaleRequest\x1a+.nidaqmx_grpc.CreatePolynomialScaleResponse\x12p\n\x15\x43reateTEDSAIAccelChan\x12*.nidaqmx_grpc.CreateTEDSAIAccelChanRequest\x1a+.nidaqmx_grpc.CreateTEDSAIAccelChanResponse\x12s\n\x16\x43reateTEDSAIBridgeChan\x12+.nidaqmx_grpc.CreateTEDSAIBridgeChanRequest\x1a,.nidaqmx_grpc.CreateTEDSAIBridgeChanResponse\x12v\n\x17\x43reateTEDSAICurrentChan\x12,.nidaqmx_grpc.CreateTEDSAICurrentChanRequest\x1a-.nidaqmx_grpc.CreateTEDSAICurrentChanResponse\x12\x82\x01\n\x1b\x43reateTEDSAIForceBridgeChan\x12\x30.nidaqmx_grpc.CreateTEDSAIForceBridgeChanRequest\x1a\x31.nidaqmx_grpc.CreateTEDSAIForceBridgeChanResponse\x12|\n\x19\x43reateTEDSAIForceIEPEChan\x12..nidaqmx_grpc.CreateTEDSAIForceIEPEChanRequest\x1a/.nidaqmx_grpc.CreateTEDSAIForceIEPEChanResponse\x12\x7f\n\x1a\x43reateTEDSAIMicrophoneChan\x12/.nidaqmx_grpc.CreateTEDSAIMicrophoneChanRequest\x1a\x30.nidaqmx_grpc.CreateTEDSAIMicrophoneChanResponse\x12v\n\x17\x43reateTEDSAIPosLVDTChan\x12,.nidaqmx_grpc.CreateTEDSAIPosLVDTChanRequest\x1a-.nidaqmx_grpc.CreateTEDSAIPosLVDTChanResponse\x12v\n\x17\x43reateTEDSAIPosRVDTChan\x12,.nidaqmx_grpc.CreateTEDSAIPosRVDTChanRequest\x1a-.nidaqmx_grpc.CreateTEDSAIPosRVDTChanResponse\x12\x8b\x01\n\x1e\x43reateTEDSAIPressureBridgeChan\x12\x33.nidaqmx_grpc.CreateTEDSAIPressureBridgeChanRequest\x1a\x34.nidaqmx_grpc.CreateTEDSAIPressureBridgeChanResponse\x12j\n\x13\x43reateTEDSAIRTDChan\x12(.nidaqmx_grpc.CreateTEDSAIRTDChanRequest\x1a).nidaqmx_grpc.CreateTEDSAIRTDChanResponse\x12\x7f\n\x1a\x43reateTEDSAIResistanceChan\x12/.nidaqmx_grpc.CreateTEDSAIResistanceChanRequest\x1a\x30.nidaqmx_grpc.CreateTEDSAIResistanceChanResponse\x12\x7f\n\x1a\x43reateTEDSAIStrainGageChan\x12/.nidaqmx_grpc.CreateTEDSAIStrainGageChanRequest\x1a\x30.nidaqmx_grpc.CreateTEDSAIStrainGageChanResponse\x12v\n\x17\x43reateTEDSAIThrmcplChan\x12,.nidaqmx_grpc.CreateTEDSAIThrmcplChanRequest\x1a-.nidaqmx_grpc.CreateTEDSAIThrmcplChanResponse\x12\x7f\n\x1a\x43reateTEDSAIThrmstrChanIex\x12/.nidaqmx_grpc.CreateTEDSAIThrmstrChanIexRequest\x1a\x30.nidaqmx_grpc.CreateTEDSAIThrmstrChanIexResponse\x12\x7f\n\x1a\x43reateTEDSAIThrmstrChanVex\x12/.nidaqmx_grpc.CreateTEDSAIThrmstrChanVexRequest\x1a\x30.nidaqmx_grpc.CreateTEDSAIThrmstrChanVexResponse\x12\x85\x01\n\x1c\x43reateTEDSAITorqueBridgeChan\x12\x31.nidaqmx_grpc.CreateTEDSAITorqueBridgeChanRequest\x1a\x32.nidaqmx_grpc.CreateTEDSAITorqueBridgeChanResponse\x12v\n\x17\x43reateTEDSAIVoltageChan\x12,.nidaqmx_grpc.CreateTEDSAIVoltageChanRequest\x1a-.nidaqmx_grpc.CreateTEDSAIVoltageChanResponse\x12\x91\x01\n CreateTEDSAIVoltageChanWithExcit\x12\x35.nidaqmx_grpc.CreateTEDSAIVoltageChanWithExcitRequest\x1a\x36.nidaqmx_grpc.CreateTEDSAIVoltageChanWithExcitResponse\x12\x61\n\x10\x43reateTableScale\x12%.nidaqmx_grpc.CreateTableScaleRequest\x1a&.nidaqmx_grpc.CreateTableScaleResponse\x12O\n\nCreateTask\x12\x1f.nidaqmx_grpc.CreateTaskRequest\x1a .nidaqmx_grpc.CreateTaskResponse\x12v\n\x17\x43reateWatchdogTimerTask\x12,.nidaqmx_grpc.CreateWatchdogTimerTaskRequest\x1a-.nidaqmx_grpc.CreateWatchdogTimerTaskResponse\x12|\n\x19\x43reateWatchdogTimerTaskEx\x12..nidaqmx_grpc.CreateWatchdogTimerTaskExRequest\x1a/.nidaqmx_grpc.CreateWatchdogTimerTaskExResponse\x12j\n\x13\x44\x65leteNetworkDevice\x12(.nidaqmx_grpc.DeleteNetworkDeviceRequest\x1a).nidaqmx_grpc.DeleteNetworkDeviceResponse\x12p\n\x15\x44\x65leteSavedGlobalChan\x12*.nidaqmx_grpc.DeleteSavedGlobalChanRequest\x1a+.nidaqmx_grpc.DeleteSavedGlobalChanResponse\x12\x61\n\x10\x44\x65leteSavedScale\x12%.nidaqmx_grpc.DeleteSavedScaleRequest\x1a&.nidaqmx_grpc.DeleteSavedScaleResponse\x12^\n\x0f\x44\x65leteSavedTask\x12$.nidaqmx_grpc.DeleteSavedTaskRequest\x1a%.nidaqmx_grpc.DeleteSavedTaskResponse\x12\x64\n\x11\x44\x65viceSupportsCal\x12&.nidaqmx_grpc.DeviceSupportsCalRequest\x1a\'.nidaqmx_grpc.DeviceSupportsCalResponse\x12[\n\x0e\x44isableRefTrig\x12#.nidaqmx_grpc.DisableRefTrigRequest\x1a$.nidaqmx_grpc.DisableRefTrigResponse\x12\x61\n\x10\x44isableStartTrig\x12%.nidaqmx_grpc.DisableStartTrigRequest\x1a&.nidaqmx_grpc.DisableStartTrigResponse\x12^\n\x0f\x44isconnectTerms\x12$.nidaqmx_grpc.DisconnectTermsRequest\x1a%.nidaqmx_grpc.DisconnectTermsResponse\x12U\n\x0c\x45xportSignal\x12!.nidaqmx_grpc.ExportSignalRequest\x1a\".nidaqmx_grpc.ExportSignalResponse\x12j\n\x13GetAIChanCalCalDate\x12(.nidaqmx_grpc.GetAIChanCalCalDateRequest\x1a).nidaqmx_grpc.GetAIChanCalCalDateResponse\x12j\n\x13GetAIChanCalExpDate\x12(.nidaqmx_grpc.GetAIChanCalExpDateRequest\x1a).nidaqmx_grpc.GetAIChanCalExpDateResponse\x12s\n\x16GetAnalogPowerUpStates\x12+.nidaqmx_grpc.GetAnalogPowerUpStatesRequest\x1a,.nidaqmx_grpc.GetAnalogPowerUpStatesResponse\x12\x9d\x01\n$GetAnalogPowerUpStatesWithOutputType\x12\x39.nidaqmx_grpc.GetAnalogPowerUpStatesWithOutputTypeRequest\x1a:.nidaqmx_grpc.GetAnalogPowerUpStatesWithOutputTypeResponse\x12\x82\x01\n\x1bGetArmStartTrigTimestampVal\x12\x30.nidaqmx_grpc.GetArmStartTrigTimestampValRequest\x1a\x31.nidaqmx_grpc.GetArmStartTrigTimestampValResponse\x12v\n\x17GetArmStartTrigTrigWhen\x12,.nidaqmx_grpc.GetArmStartTrigTrigWhenRequest\x1a-.nidaqmx_grpc.GetArmStartTrigTrigWhenResponse\x12\x9d\x01\n$GetAutoConfiguredCDAQSyncConnections\x12\x39.nidaqmx_grpc.GetAutoConfiguredCDAQSyncConnectionsRequest\x1a:.nidaqmx_grpc.GetAutoConfiguredCDAQSyncConnectionsResponse\x12y\n\x18GetBufferAttributeUInt32\x12-.nidaqmx_grpc.GetBufferAttributeUInt32Request\x1a..nidaqmx_grpc.GetBufferAttributeUInt32Response\x12v\n\x17GetCalInfoAttributeBool\x12,.nidaqmx_grpc.GetCalInfoAttributeBoolRequest\x1a-.nidaqmx_grpc.GetCalInfoAttributeBoolResponse\x12|\n\x19GetCalInfoAttributeDouble\x12..nidaqmx_grpc.GetCalInfoAttributeDoubleRequest\x1a/.nidaqmx_grpc.GetCalInfoAttributeDoubleResponse\x12|\n\x19GetCalInfoAttributeString\x12..nidaqmx_grpc.GetCalInfoAttributeStringRequest\x1a/.nidaqmx_grpc.GetCalInfoAttributeStringResponse\x12|\n\x19GetCalInfoAttributeUInt32\x12..nidaqmx_grpc.GetCalInfoAttributeUInt32Request\x1a/.nidaqmx_grpc.GetCalInfoAttributeUInt32Response\x12m\n\x14GetChanAttributeBool\x12).nidaqmx_grpc.GetChanAttributeBoolRequest\x1a*.nidaqmx_grpc.GetChanAttributeBoolResponse\x12s\n\x16GetChanAttributeDouble\x12+.nidaqmx_grpc.GetChanAttributeDoubleRequest\x1a,.nidaqmx_grpc.GetChanAttributeDoubleResponse\x12\x82\x01\n\x1bGetChanAttributeDoubleArray\x12\x30.nidaqmx_grpc.GetChanAttributeDoubleArrayRequest\x1a\x31.nidaqmx_grpc.GetChanAttributeDoubleArrayResponse\x12p\n\x15GetChanAttributeInt32\x12*.nidaqmx_grpc.GetChanAttributeInt32Request\x1a+.nidaqmx_grpc.GetChanAttributeInt32Response\x12s\n\x16GetChanAttributeString\x12+.nidaqmx_grpc.GetChanAttributeStringRequest\x1a,.nidaqmx_grpc.GetChanAttributeStringResponse\x12s\n\x16GetChanAttributeUInt32\x12+.nidaqmx_grpc.GetChanAttributeUInt32Request\x1a,.nidaqmx_grpc.GetChanAttributeUInt32Response\x12s\n\x16GetDeviceAttributeBool\x12+.nidaqmx_grpc.GetDeviceAttributeBoolRequest\x1a,.nidaqmx_grpc.GetDeviceAttributeBoolResponse\x12y\n\x18GetDeviceAttributeDouble\x12-.nidaqmx_grpc.GetDeviceAttributeDoubleRequest\x1a..nidaqmx_grpc.GetDeviceAttributeDoubleResponse\x12\x88\x01\n\x1dGetDeviceAttributeDoubleArray\x12\x32.nidaqmx_grpc.GetDeviceAttributeDoubleArrayRequest\x1a\x33.nidaqmx_grpc.GetDeviceAttributeDoubleArrayResponse\x12v\n\x17GetDeviceAttributeInt32\x12,.nidaqmx_grpc.GetDeviceAttributeInt32Request\x1a-.nidaqmx_grpc.GetDeviceAttributeInt32Response\x12\x85\x01\n\x1cGetDeviceAttributeInt32Array\x12\x31.nidaqmx_grpc.GetDeviceAttributeInt32ArrayRequest\x1a\x32.nidaqmx_grpc.GetDeviceAttributeInt32ArrayResponse\x12y\n\x18GetDeviceAttributeString\x12-.nidaqmx_grpc.GetDeviceAttributeStringRequest\x1a..nidaqmx_grpc.GetDeviceAttributeStringResponse\x12y\n\x18GetDeviceAttributeUInt32\x12-.nidaqmx_grpc.GetDeviceAttributeUInt32Request\x1a..nidaqmx_grpc.GetDeviceAttributeUInt32Response\x12\x88\x01\n\x1dGetDeviceAttributeUInt32Array\x12\x32.nidaqmx_grpc.GetDeviceAttributeUInt32ArrayRequest\x1a\x33.nidaqmx_grpc.GetDeviceAttributeUInt32ArrayResponse\x12\x94\x01\n!GetDigitalLogicFamilyPowerUpState\x12\x36.nidaqmx_grpc.GetDigitalLogicFamilyPowerUpStateRequest\x1a\x37.nidaqmx_grpc.GetDigitalLogicFamilyPowerUpStateResponse\x12v\n\x17GetDigitalPowerUpStates\x12,.nidaqmx_grpc.GetDigitalPowerUpStatesRequest\x1a-.nidaqmx_grpc.GetDigitalPowerUpStatesResponse\x12\x8b\x01\n\x1eGetDigitalPullUpPullDownStates\x12\x33.nidaqmx_grpc.GetDigitalPullUpPullDownStatesRequest\x1a\x34.nidaqmx_grpc.GetDigitalPullUpPullDownStatesResponse\x12\x85\x01\n\x1cGetDisconnectedCDAQSyncPorts\x12\x31.nidaqmx_grpc.GetDisconnectedCDAQSyncPortsRequest\x1a\x32.nidaqmx_grpc.GetDisconnectedCDAQSyncPortsResponse\x12[\n\x0eGetErrorString\x12#.nidaqmx_grpc.GetErrorStringRequest\x1a$.nidaqmx_grpc.GetErrorStringResponse\x12\x8b\x01\n\x1eGetExportedSignalAttributeBool\x12\x33.nidaqmx_grpc.GetExportedSignalAttributeBoolRequest\x1a\x34.nidaqmx_grpc.GetExportedSignalAttributeBoolResponse\x12\x91\x01\n GetExportedSignalAttributeDouble\x12\x35.nidaqmx_grpc.GetExportedSignalAttributeDoubleRequest\x1a\x36.nidaqmx_grpc.GetExportedSignalAttributeDoubleResponse\x12\x8e\x01\n\x1fGetExportedSignalAttributeInt32\x12\x34.nidaqmx_grpc.GetExportedSignalAttributeInt32Request\x1a\x35.nidaqmx_grpc.GetExportedSignalAttributeInt32Response\x12\x91\x01\n GetExportedSignalAttributeString\x12\x35.nidaqmx_grpc.GetExportedSignalAttributeStringRequest\x1a\x36.nidaqmx_grpc.GetExportedSignalAttributeStringResponse\x12\x91\x01\n GetExportedSignalAttributeUInt32\x12\x35.nidaqmx_grpc.GetExportedSignalAttributeUInt32Request\x1a\x36.nidaqmx_grpc.GetExportedSignalAttributeUInt32Response\x12y\n\x18GetExtCalLastDateAndTime\x12-.nidaqmx_grpc.GetExtCalLastDateAndTimeRequest\x1a..nidaqmx_grpc.GetExtCalLastDateAndTimeResponse\x12j\n\x13GetFirstSampClkWhen\x12(.nidaqmx_grpc.GetFirstSampClkWhenRequest\x1a).nidaqmx_grpc.GetFirstSampClkWhenResponse\x12y\n\x18GetFirstSampTimestampVal\x12-.nidaqmx_grpc.GetFirstSampTimestampValRequest\x1a..nidaqmx_grpc.GetFirstSampTimestampValResponse\x12\x64\n\x11GetNthTaskChannel\x12&.nidaqmx_grpc.GetNthTaskChannelRequest\x1a\'.nidaqmx_grpc.GetNthTaskChannelResponse\x12\x61\n\x10GetNthTaskDevice\x12%.nidaqmx_grpc.GetNthTaskDeviceRequest\x1a&.nidaqmx_grpc.GetNthTaskDeviceResponse\x12p\n\x15GetNthTaskReadChannel\x12*.nidaqmx_grpc.GetNthTaskReadChannelRequest\x1a+.nidaqmx_grpc.GetNthTaskReadChannelResponse\x12\x88\x01\n\x1dGetPersistedChanAttributeBool\x12\x32.nidaqmx_grpc.GetPersistedChanAttributeBoolRequest\x1a\x33.nidaqmx_grpc.GetPersistedChanAttributeBoolResponse\x12\x8e\x01\n\x1fGetPersistedChanAttributeString\x12\x34.nidaqmx_grpc.GetPersistedChanAttributeStringRequest\x1a\x35.nidaqmx_grpc.GetPersistedChanAttributeStringResponse\x12\x8b\x01\n\x1eGetPersistedScaleAttributeBool\x12\x33.nidaqmx_grpc.GetPersistedScaleAttributeBoolRequest\x1a\x34.nidaqmx_grpc.GetPersistedScaleAttributeBoolResponse\x12\x91\x01\n GetPersistedScaleAttributeString\x12\x35.nidaqmx_grpc.GetPersistedScaleAttributeStringRequest\x1a\x36.nidaqmx_grpc.GetPersistedScaleAttributeStringResponse\x12\x88\x01\n\x1dGetPersistedTaskAttributeBool\x12\x32.nidaqmx_grpc.GetPersistedTaskAttributeBoolRequest\x1a\x33.nidaqmx_grpc.GetPersistedTaskAttributeBoolResponse\x12\x8e\x01\n\x1fGetPersistedTaskAttributeString\x12\x34.nidaqmx_grpc.GetPersistedTaskAttributeStringRequest\x1a\x35.nidaqmx_grpc.GetPersistedTaskAttributeStringResponse\x12\x85\x01\n\x1cGetPhysicalChanAttributeBool\x12\x31.nidaqmx_grpc.GetPhysicalChanAttributeBoolRequest\x1a\x32.nidaqmx_grpc.GetPhysicalChanAttributeBoolResponse\x12\x88\x01\n\x1dGetPhysicalChanAttributeBytes\x12\x32.nidaqmx_grpc.GetPhysicalChanAttributeBytesRequest\x1a\x33.nidaqmx_grpc.GetPhysicalChanAttributeBytesResponse\x12\x8b\x01\n\x1eGetPhysicalChanAttributeDouble\x12\x33.nidaqmx_grpc.GetPhysicalChanAttributeDoubleRequest\x1a\x34.nidaqmx_grpc.GetPhysicalChanAttributeDoubleResponse\x12\x9a\x01\n#GetPhysicalChanAttributeDoubleArray\x12\x38.nidaqmx_grpc.GetPhysicalChanAttributeDoubleArrayRequest\x1a\x39.nidaqmx_grpc.GetPhysicalChanAttributeDoubleArrayResponse\x12\x88\x01\n\x1dGetPhysicalChanAttributeInt32\x12\x32.nidaqmx_grpc.GetPhysicalChanAttributeInt32Request\x1a\x33.nidaqmx_grpc.GetPhysicalChanAttributeInt32Response\x12\x97\x01\n\"GetPhysicalChanAttributeInt32Array\x12\x37.nidaqmx_grpc.GetPhysicalChanAttributeInt32ArrayRequest\x1a\x38.nidaqmx_grpc.GetPhysicalChanAttributeInt32ArrayResponse\x12\x8b\x01\n\x1eGetPhysicalChanAttributeString\x12\x33.nidaqmx_grpc.GetPhysicalChanAttributeStringRequest\x1a\x34.nidaqmx_grpc.GetPhysicalChanAttributeStringResponse\x12\x8b\x01\n\x1eGetPhysicalChanAttributeUInt32\x12\x33.nidaqmx_grpc.GetPhysicalChanAttributeUInt32Request\x1a\x34.nidaqmx_grpc.GetPhysicalChanAttributeUInt32Response\x12\x9a\x01\n#GetPhysicalChanAttributeUInt32Array\x12\x38.nidaqmx_grpc.GetPhysicalChanAttributeUInt32ArrayRequest\x1a\x39.nidaqmx_grpc.GetPhysicalChanAttributeUInt32ArrayResponse\x12m\n\x14GetReadAttributeBool\x12).nidaqmx_grpc.GetReadAttributeBoolRequest\x1a*.nidaqmx_grpc.GetReadAttributeBoolResponse\x12s\n\x16GetReadAttributeDouble\x12+.nidaqmx_grpc.GetReadAttributeDoubleRequest\x1a,.nidaqmx_grpc.GetReadAttributeDoubleResponse\x12p\n\x15GetReadAttributeInt32\x12*.nidaqmx_grpc.GetReadAttributeInt32Request\x1a+.nidaqmx_grpc.GetReadAttributeInt32Response\x12s\n\x16GetReadAttributeString\x12+.nidaqmx_grpc.GetReadAttributeStringRequest\x1a,.nidaqmx_grpc.GetReadAttributeStringResponse\x12s\n\x16GetReadAttributeUInt32\x12+.nidaqmx_grpc.GetReadAttributeUInt32Request\x1a,.nidaqmx_grpc.GetReadAttributeUInt32Response\x12s\n\x16GetReadAttributeUInt64\x12+.nidaqmx_grpc.GetReadAttributeUInt64Request\x1a,.nidaqmx_grpc.GetReadAttributeUInt64Response\x12y\n\x18GetRealTimeAttributeBool\x12-.nidaqmx_grpc.GetRealTimeAttributeBoolRequest\x1a..nidaqmx_grpc.GetRealTimeAttributeBoolResponse\x12|\n\x19GetRealTimeAttributeInt32\x12..nidaqmx_grpc.GetRealTimeAttributeInt32Request\x1a/.nidaqmx_grpc.GetRealTimeAttributeInt32Response\x12\x7f\n\x1aGetRealTimeAttributeUInt32\x12/.nidaqmx_grpc.GetRealTimeAttributeUInt32Request\x1a\x30.nidaqmx_grpc.GetRealTimeAttributeUInt32Response\x12s\n\x16GetRefTrigTimestampVal\x12+.nidaqmx_grpc.GetRefTrigTimestampValRequest\x1a,.nidaqmx_grpc.GetRefTrigTimestampValResponse\x12v\n\x17GetScaleAttributeDouble\x12,.nidaqmx_grpc.GetScaleAttributeDoubleRequest\x1a-.nidaqmx_grpc.GetScaleAttributeDoubleResponse\x12\x85\x01\n\x1cGetScaleAttributeDoubleArray\x12\x31.nidaqmx_grpc.GetScaleAttributeDoubleArrayRequest\x1a\x32.nidaqmx_grpc.GetScaleAttributeDoubleArrayResponse\x12s\n\x16GetScaleAttributeInt32\x12+.nidaqmx_grpc.GetScaleAttributeInt32Request\x1a,.nidaqmx_grpc.GetScaleAttributeInt32Response\x12v\n\x17GetScaleAttributeString\x12,.nidaqmx_grpc.GetScaleAttributeStringRequest\x1a-.nidaqmx_grpc.GetScaleAttributeStringResponse\x12|\n\x19GetSelfCalLastDateAndTime\x12..nidaqmx_grpc.GetSelfCalLastDateAndTimeRequest\x1a/.nidaqmx_grpc.GetSelfCalLastDateAndTimeResponse\x12y\n\x18GetStartTrigTimestampVal\x12-.nidaqmx_grpc.GetStartTrigTimestampValRequest\x1a..nidaqmx_grpc.GetStartTrigTimestampValResponse\x12m\n\x14GetStartTrigTrigWhen\x12).nidaqmx_grpc.GetStartTrigTrigWhenRequest\x1a*.nidaqmx_grpc.GetStartTrigTrigWhenResponse\x12m\n\x14GetSyncPulseTimeWhen\x12).nidaqmx_grpc.GetSyncPulseTimeWhenRequest\x1a*.nidaqmx_grpc.GetSyncPulseTimeWhenResponse\x12\x85\x01\n\x1cGetSystemInfoAttributeString\x12\x31.nidaqmx_grpc.GetSystemInfoAttributeStringRequest\x1a\x32.nidaqmx_grpc.GetSystemInfoAttributeStringResponse\x12\x85\x01\n\x1cGetSystemInfoAttributeUInt32\x12\x31.nidaqmx_grpc.GetSystemInfoAttributeUInt32Request\x1a\x32.nidaqmx_grpc.GetSystemInfoAttributeUInt32Response\x12m\n\x14GetTaskAttributeBool\x12).nidaqmx_grpc.GetTaskAttributeBoolRequest\x1a*.nidaqmx_grpc.GetTaskAttributeBoolResponse\x12s\n\x16GetTaskAttributeString\x12+.nidaqmx_grpc.GetTaskAttributeStringRequest\x1a,.nidaqmx_grpc.GetTaskAttributeStringResponse\x12s\n\x16GetTaskAttributeUInt32\x12+.nidaqmx_grpc.GetTaskAttributeUInt32Request\x1a,.nidaqmx_grpc.GetTaskAttributeUInt32Response\x12s\n\x16GetTimingAttributeBool\x12+.nidaqmx_grpc.GetTimingAttributeBoolRequest\x1a,.nidaqmx_grpc.GetTimingAttributeBoolResponse\x12y\n\x18GetTimingAttributeDouble\x12-.nidaqmx_grpc.GetTimingAttributeDoubleRequest\x1a..nidaqmx_grpc.GetTimingAttributeDoubleResponse\x12y\n\x18GetTimingAttributeExBool\x12-.nidaqmx_grpc.GetTimingAttributeExBoolRequest\x1a..nidaqmx_grpc.GetTimingAttributeExBoolResponse\x12\x7f\n\x1aGetTimingAttributeExDouble\x12/.nidaqmx_grpc.GetTimingAttributeExDoubleRequest\x1a\x30.nidaqmx_grpc.GetTimingAttributeExDoubleResponse\x12|\n\x19GetTimingAttributeExInt32\x12..nidaqmx_grpc.GetTimingAttributeExInt32Request\x1a/.nidaqmx_grpc.GetTimingAttributeExInt32Response\x12\x7f\n\x1aGetTimingAttributeExString\x12/.nidaqmx_grpc.GetTimingAttributeExStringRequest\x1a\x30.nidaqmx_grpc.GetTimingAttributeExStringResponse\x12\x88\x01\n\x1dGetTimingAttributeExTimestamp\x12\x32.nidaqmx_grpc.GetTimingAttributeExTimestampRequest\x1a\x33.nidaqmx_grpc.GetTimingAttributeExTimestampResponse\x12\x7f\n\x1aGetTimingAttributeExUInt32\x12/.nidaqmx_grpc.GetTimingAttributeExUInt32Request\x1a\x30.nidaqmx_grpc.GetTimingAttributeExUInt32Response\x12\x7f\n\x1aGetTimingAttributeExUInt64\x12/.nidaqmx_grpc.GetTimingAttributeExUInt64Request\x1a\x30.nidaqmx_grpc.GetTimingAttributeExUInt64Response\x12v\n\x17GetTimingAttributeInt32\x12,.nidaqmx_grpc.GetTimingAttributeInt32Request\x1a-.nidaqmx_grpc.GetTimingAttributeInt32Response\x12y\n\x18GetTimingAttributeString\x12-.nidaqmx_grpc.GetTimingAttributeStringRequest\x1a..nidaqmx_grpc.GetTimingAttributeStringResponse\x12\x82\x01\n\x1bGetTimingAttributeTimestamp\x12\x30.nidaqmx_grpc.GetTimingAttributeTimestampRequest\x1a\x31.nidaqmx_grpc.GetTimingAttributeTimestampResponse\x12y\n\x18GetTimingAttributeUInt32\x12-.nidaqmx_grpc.GetTimingAttributeUInt32Request\x1a..nidaqmx_grpc.GetTimingAttributeUInt32Response\x12y\n\x18GetTimingAttributeUInt64\x12-.nidaqmx_grpc.GetTimingAttributeUInt64Request\x1a..nidaqmx_grpc.GetTimingAttributeUInt64Response\x12m\n\x14GetTrigAttributeBool\x12).nidaqmx_grpc.GetTrigAttributeBoolRequest\x1a*.nidaqmx_grpc.GetTrigAttributeBoolResponse\x12s\n\x16GetTrigAttributeDouble\x12+.nidaqmx_grpc.GetTrigAttributeDoubleRequest\x1a,.nidaqmx_grpc.GetTrigAttributeDoubleResponse\x12\x82\x01\n\x1bGetTrigAttributeDoubleArray\x12\x30.nidaqmx_grpc.GetTrigAttributeDoubleArrayRequest\x1a\x31.nidaqmx_grpc.GetTrigAttributeDoubleArrayResponse\x12p\n\x15GetTrigAttributeInt32\x12*.nidaqmx_grpc.GetTrigAttributeInt32Request\x1a+.nidaqmx_grpc.GetTrigAttributeInt32Response\x12\x7f\n\x1aGetTrigAttributeInt32Array\x12/.nidaqmx_grpc.GetTrigAttributeInt32ArrayRequest\x1a\x30.nidaqmx_grpc.GetTrigAttributeInt32ArrayResponse\x12s\n\x16GetTrigAttributeString\x12+.nidaqmx_grpc.GetTrigAttributeStringRequest\x1a,.nidaqmx_grpc.GetTrigAttributeStringResponse\x12|\n\x19GetTrigAttributeTimestamp\x12..nidaqmx_grpc.GetTrigAttributeTimestampRequest\x1a/.nidaqmx_grpc.GetTrigAttributeTimestampResponse\x12s\n\x16GetTrigAttributeUInt32\x12+.nidaqmx_grpc.GetTrigAttributeUInt32Request\x1a,.nidaqmx_grpc.GetTrigAttributeUInt32Response\x12y\n\x18GetWatchdogAttributeBool\x12-.nidaqmx_grpc.GetWatchdogAttributeBoolRequest\x1a..nidaqmx_grpc.GetWatchdogAttributeBoolResponse\x12\x7f\n\x1aGetWatchdogAttributeDouble\x12/.nidaqmx_grpc.GetWatchdogAttributeDoubleRequest\x1a\x30.nidaqmx_grpc.GetWatchdogAttributeDoubleResponse\x12|\n\x19GetWatchdogAttributeInt32\x12..nidaqmx_grpc.GetWatchdogAttributeInt32Request\x1a/.nidaqmx_grpc.GetWatchdogAttributeInt32Response\x12\x7f\n\x1aGetWatchdogAttributeString\x12/.nidaqmx_grpc.GetWatchdogAttributeStringRequest\x1a\x30.nidaqmx_grpc.GetWatchdogAttributeStringResponse\x12p\n\x15GetWriteAttributeBool\x12*.nidaqmx_grpc.GetWriteAttributeBoolRequest\x1a+.nidaqmx_grpc.GetWriteAttributeBoolResponse\x12v\n\x17GetWriteAttributeDouble\x12,.nidaqmx_grpc.GetWriteAttributeDoubleRequest\x1a-.nidaqmx_grpc.GetWriteAttributeDoubleResponse\x12s\n\x16GetWriteAttributeInt32\x12+.nidaqmx_grpc.GetWriteAttributeInt32Request\x1a,.nidaqmx_grpc.GetWriteAttributeInt32Response\x12v\n\x17GetWriteAttributeString\x12,.nidaqmx_grpc.GetWriteAttributeStringRequest\x1a-.nidaqmx_grpc.GetWriteAttributeStringResponse\x12v\n\x17GetWriteAttributeUInt32\x12,.nidaqmx_grpc.GetWriteAttributeUInt32Request\x1a-.nidaqmx_grpc.GetWriteAttributeUInt32Response\x12v\n\x17GetWriteAttributeUInt64\x12,.nidaqmx_grpc.GetWriteAttributeUInt64Request\x1a-.nidaqmx_grpc.GetWriteAttributeUInt64Response\x12O\n\nIsTaskDone\x12\x1f.nidaqmx_grpc.IsTaskDoneRequest\x1a .nidaqmx_grpc.IsTaskDoneResponse\x12I\n\x08LoadTask\x12\x1d.nidaqmx_grpc.LoadTaskRequest\x1a\x1e.nidaqmx_grpc.LoadTaskResponse\x12\x8e\x01\n\x1fPerformBridgeOffsetNullingCalEx\x12\x34.nidaqmx_grpc.PerformBridgeOffsetNullingCalExRequest\x1a\x35.nidaqmx_grpc.PerformBridgeOffsetNullingCalExResponse\x12v\n\x17PerformBridgeShuntCalEx\x12,.nidaqmx_grpc.PerformBridgeShuntCalExRequest\x1a-.nidaqmx_grpc.PerformBridgeShuntCalExResponse\x12v\n\x17PerformStrainShuntCalEx\x12,.nidaqmx_grpc.PerformStrainShuntCalExRequest\x1a-.nidaqmx_grpc.PerformStrainShuntCalExResponse\x12\x97\x01\n\"PerformThrmcplLeadOffsetNullingCal\x12\x37.nidaqmx_grpc.PerformThrmcplLeadOffsetNullingCalRequest\x1a\x38.nidaqmx_grpc.PerformThrmcplLeadOffsetNullingCalResponse\x12X\n\rReadAnalogF64\x12\".nidaqmx_grpc.ReadAnalogF64Request\x1a#.nidaqmx_grpc.ReadAnalogF64Response\x12g\n\x12\x42\x65ginReadAnalogF64\x12\'.nidaqmx_grpc.BeginReadAnalogF64Request\x1a(.nidaqmx_grpc.BeginReadAnalogF64Response\x12j\n\x13ReadAnalogScalarF64\x12(.nidaqmx_grpc.ReadAnalogScalarF64Request\x1a).nidaqmx_grpc.ReadAnalogScalarF64Response\x12y\n\x18\x42\x65ginReadAnalogScalarF64\x12-.nidaqmx_grpc.BeginReadAnalogScalarF64Request\x1a..nidaqmx_grpc.BeginReadAnalogScalarF64Response\x12X\n\rReadBinaryI16\x12\".nidaqmx_grpc.ReadBinaryI16Request\x1a#.nidaqmx_grpc.ReadBinaryI16Response\x12g\n\x12\x42\x65ginReadBinaryI16\x12\'.nidaqmx_grpc.BeginReadBinaryI16Request\x1a(.nidaqmx_grpc.BeginReadBinaryI16Response\x12X\n\rReadBinaryI32\x12\".nidaqmx_grpc.ReadBinaryI32Request\x1a#.nidaqmx_grpc.ReadBinaryI32Response\x12g\n\x12\x42\x65ginReadBinaryI32\x12\'.nidaqmx_grpc.BeginReadBinaryI32Request\x1a(.nidaqmx_grpc.BeginReadBinaryI32Response\x12X\n\rReadBinaryU16\x12\".nidaqmx_grpc.ReadBinaryU16Request\x1a#.nidaqmx_grpc.ReadBinaryU16Response\x12g\n\x12\x42\x65ginReadBinaryU16\x12\'.nidaqmx_grpc.BeginReadBinaryU16Request\x1a(.nidaqmx_grpc.BeginReadBinaryU16Response\x12X\n\rReadBinaryU32\x12\".nidaqmx_grpc.ReadBinaryU32Request\x1a#.nidaqmx_grpc.ReadBinaryU32Response\x12g\n\x12\x42\x65ginReadBinaryU32\x12\'.nidaqmx_grpc.BeginReadBinaryU32Request\x1a(.nidaqmx_grpc.BeginReadBinaryU32Response\x12[\n\x0eReadCounterF64\x12#.nidaqmx_grpc.ReadCounterF64Request\x1a$.nidaqmx_grpc.ReadCounterF64Response\x12j\n\x13\x42\x65ginReadCounterF64\x12(.nidaqmx_grpc.BeginReadCounterF64Request\x1a).nidaqmx_grpc.BeginReadCounterF64Response\x12\x61\n\x10ReadCounterF64Ex\x12%.nidaqmx_grpc.ReadCounterF64ExRequest\x1a&.nidaqmx_grpc.ReadCounterF64ExResponse\x12p\n\x15\x42\x65ginReadCounterF64Ex\x12*.nidaqmx_grpc.BeginReadCounterF64ExRequest\x1a+.nidaqmx_grpc.BeginReadCounterF64ExResponse\x12m\n\x14ReadCounterScalarF64\x12).nidaqmx_grpc.ReadCounterScalarF64Request\x1a*.nidaqmx_grpc.ReadCounterScalarF64Response\x12|\n\x19\x42\x65ginReadCounterScalarF64\x12..nidaqmx_grpc.BeginReadCounterScalarF64Request\x1a/.nidaqmx_grpc.BeginReadCounterScalarF64Response\x12m\n\x14ReadCounterScalarU32\x12).nidaqmx_grpc.ReadCounterScalarU32Request\x1a*.nidaqmx_grpc.ReadCounterScalarU32Response\x12|\n\x19\x42\x65ginReadCounterScalarU32\x12..nidaqmx_grpc.BeginReadCounterScalarU32Request\x1a/.nidaqmx_grpc.BeginReadCounterScalarU32Response\x12[\n\x0eReadCounterU32\x12#.nidaqmx_grpc.ReadCounterU32Request\x1a$.nidaqmx_grpc.ReadCounterU32Response\x12j\n\x13\x42\x65ginReadCounterU32\x12(.nidaqmx_grpc.BeginReadCounterU32Request\x1a).nidaqmx_grpc.BeginReadCounterU32Response\x12\x61\n\x10ReadCounterU32Ex\x12%.nidaqmx_grpc.ReadCounterU32ExRequest\x1a&.nidaqmx_grpc.ReadCounterU32ExResponse\x12p\n\x15\x42\x65ginReadCounterU32Ex\x12*.nidaqmx_grpc.BeginReadCounterU32ExRequest\x1a+.nidaqmx_grpc.BeginReadCounterU32ExResponse\x12R\n\x0bReadCtrFreq\x12 .nidaqmx_grpc.ReadCtrFreqRequest\x1a!.nidaqmx_grpc.ReadCtrFreqResponse\x12\x61\n\x10\x42\x65ginReadCtrFreq\x12%.nidaqmx_grpc.BeginReadCtrFreqRequest\x1a&.nidaqmx_grpc.BeginReadCtrFreqResponse\x12\x64\n\x11ReadCtrFreqScalar\x12&.nidaqmx_grpc.ReadCtrFreqScalarRequest\x1a\'.nidaqmx_grpc.ReadCtrFreqScalarResponse\x12s\n\x16\x42\x65ginReadCtrFreqScalar\x12+.nidaqmx_grpc.BeginReadCtrFreqScalarRequest\x1a,.nidaqmx_grpc.BeginReadCtrFreqScalarResponse\x12U\n\x0cReadCtrTicks\x12!.nidaqmx_grpc.ReadCtrTicksRequest\x1a\".nidaqmx_grpc.ReadCtrTicksResponse\x12\x64\n\x11\x42\x65ginReadCtrTicks\x12&.nidaqmx_grpc.BeginReadCtrTicksRequest\x1a\'.nidaqmx_grpc.BeginReadCtrTicksResponse\x12g\n\x12ReadCtrTicksScalar\x12\'.nidaqmx_grpc.ReadCtrTicksScalarRequest\x1a(.nidaqmx_grpc.ReadCtrTicksScalarResponse\x12v\n\x17\x42\x65ginReadCtrTicksScalar\x12,.nidaqmx_grpc.BeginReadCtrTicksScalarRequest\x1a-.nidaqmx_grpc.BeginReadCtrTicksScalarResponse\x12R\n\x0bReadCtrTime\x12 .nidaqmx_grpc.ReadCtrTimeRequest\x1a!.nidaqmx_grpc.ReadCtrTimeResponse\x12\x61\n\x10\x42\x65ginReadCtrTime\x12%.nidaqmx_grpc.BeginReadCtrTimeRequest\x1a&.nidaqmx_grpc.BeginReadCtrTimeResponse\x12\x64\n\x11ReadCtrTimeScalar\x12&.nidaqmx_grpc.ReadCtrTimeScalarRequest\x1a\'.nidaqmx_grpc.ReadCtrTimeScalarResponse\x12s\n\x16\x42\x65ginReadCtrTimeScalar\x12+.nidaqmx_grpc.BeginReadCtrTimeScalarRequest\x1a,.nidaqmx_grpc.BeginReadCtrTimeScalarResponse\x12\x61\n\x10ReadDigitalLines\x12%.nidaqmx_grpc.ReadDigitalLinesRequest\x1a&.nidaqmx_grpc.ReadDigitalLinesResponse\x12p\n\x15\x42\x65ginReadDigitalLines\x12*.nidaqmx_grpc.BeginReadDigitalLinesRequest\x1a+.nidaqmx_grpc.BeginReadDigitalLinesResponse\x12m\n\x14ReadDigitalScalarU32\x12).nidaqmx_grpc.ReadDigitalScalarU32Request\x1a*.nidaqmx_grpc.ReadDigitalScalarU32Response\x12|\n\x19\x42\x65ginReadDigitalScalarU32\x12..nidaqmx_grpc.BeginReadDigitalScalarU32Request\x1a/.nidaqmx_grpc.BeginReadDigitalScalarU32Response\x12[\n\x0eReadDigitalU16\x12#.nidaqmx_grpc.ReadDigitalU16Request\x1a$.nidaqmx_grpc.ReadDigitalU16Response\x12j\n\x13\x42\x65ginReadDigitalU16\x12(.nidaqmx_grpc.BeginReadDigitalU16Request\x1a).nidaqmx_grpc.BeginReadDigitalU16Response\x12[\n\x0eReadDigitalU32\x12#.nidaqmx_grpc.ReadDigitalU32Request\x1a$.nidaqmx_grpc.ReadDigitalU32Response\x12j\n\x13\x42\x65ginReadDigitalU32\x12(.nidaqmx_grpc.BeginReadDigitalU32Request\x1a).nidaqmx_grpc.BeginReadDigitalU32Response\x12X\n\rReadDigitalU8\x12\".nidaqmx_grpc.ReadDigitalU8Request\x1a#.nidaqmx_grpc.ReadDigitalU8Response\x12g\n\x12\x42\x65ginReadDigitalU8\x12\'.nidaqmx_grpc.BeginReadDigitalU8Request\x1a(.nidaqmx_grpc.BeginReadDigitalU8Response\x12^\n\x0fReadIDPinMemory\x12$.nidaqmx_grpc.ReadIDPinMemoryRequest\x1a%.nidaqmx_grpc.ReadIDPinMemoryResponse\x12g\n\x12ReadPowerBinaryI16\x12\'.nidaqmx_grpc.ReadPowerBinaryI16Request\x1a(.nidaqmx_grpc.ReadPowerBinaryI16Response\x12v\n\x17\x42\x65ginReadPowerBinaryI16\x12,.nidaqmx_grpc.BeginReadPowerBinaryI16Request\x1a-.nidaqmx_grpc.BeginReadPowerBinaryI16Response\x12U\n\x0cReadPowerF64\x12!.nidaqmx_grpc.ReadPowerF64Request\x1a\".nidaqmx_grpc.ReadPowerF64Response\x12\x64\n\x11\x42\x65ginReadPowerF64\x12&.nidaqmx_grpc.BeginReadPowerF64Request\x1a\'.nidaqmx_grpc.BeginReadPowerF64Response\x12g\n\x12ReadPowerScalarF64\x12\'.nidaqmx_grpc.ReadPowerScalarF64Request\x1a(.nidaqmx_grpc.ReadPowerScalarF64Response\x12v\n\x17\x42\x65ginReadPowerScalarF64\x12,.nidaqmx_grpc.BeginReadPowerScalarF64Request\x1a-.nidaqmx_grpc.BeginReadPowerScalarF64Response\x12\x46\n\x07ReadRaw\x12\x1c.nidaqmx_grpc.ReadRawRequest\x1a\x1d.nidaqmx_grpc.ReadRawResponse\x12U\n\x0c\x42\x65ginReadRaw\x12!.nidaqmx_grpc.BeginReadRawRequest\x1a\".nidaqmx_grpc.BeginReadRawResponse\x12\x66\n\x11RegisterDoneEvent\x12&.nidaqmx_grpc.RegisterDoneEventRequest\x1a\'.nidaqmx_grpc.RegisterDoneEventResponse0\x01\x12\x81\x01\n\x1aRegisterEveryNSamplesEvent\x12/.nidaqmx_grpc.RegisterEveryNSamplesEventRequest\x1a\x30.nidaqmx_grpc.RegisterEveryNSamplesEventResponse0\x01\x12l\n\x13RegisterSignalEvent\x12(.nidaqmx_grpc.RegisterSignalEventRequest\x1a).nidaqmx_grpc.RegisterSignalEventResponse0\x01\x12y\n\x18RemoveCDAQSyncConnection\x12-.nidaqmx_grpc.RemoveCDAQSyncConnectionRequest\x1a..nidaqmx_grpc.RemoveCDAQSyncConnectionResponse\x12m\n\x14ReserveNetworkDevice\x12).nidaqmx_grpc.ReserveNetworkDeviceRequest\x1a*.nidaqmx_grpc.ReserveNetworkDeviceResponse\x12m\n\x14ResetBufferAttribute\x12).nidaqmx_grpc.ResetBufferAttributeRequest\x1a*.nidaqmx_grpc.ResetBufferAttributeResponse\x12g\n\x12ResetChanAttribute\x12\'.nidaqmx_grpc.ResetChanAttributeRequest\x1a(.nidaqmx_grpc.ResetChanAttributeResponse\x12R\n\x0bResetDevice\x12 .nidaqmx_grpc.ResetDeviceRequest\x1a!.nidaqmx_grpc.ResetDeviceResponse\x12\x85\x01\n\x1cResetExportedSignalAttribute\x12\x31.nidaqmx_grpc.ResetExportedSignalAttributeRequest\x1a\x32.nidaqmx_grpc.ResetExportedSignalAttributeResponse\x12g\n\x12ResetReadAttribute\x12\'.nidaqmx_grpc.ResetReadAttributeRequest\x1a(.nidaqmx_grpc.ResetReadAttributeResponse\x12s\n\x16ResetRealTimeAttribute\x12+.nidaqmx_grpc.ResetRealTimeAttributeRequest\x1a,.nidaqmx_grpc.ResetRealTimeAttributeResponse\x12m\n\x14ResetTimingAttribute\x12).nidaqmx_grpc.ResetTimingAttributeRequest\x1a*.nidaqmx_grpc.ResetTimingAttributeResponse\x12s\n\x16ResetTimingAttributeEx\x12+.nidaqmx_grpc.ResetTimingAttributeExRequest\x1a,.nidaqmx_grpc.ResetTimingAttributeExResponse\x12g\n\x12ResetTrigAttribute\x12\'.nidaqmx_grpc.ResetTrigAttributeRequest\x1a(.nidaqmx_grpc.ResetTrigAttributeResponse\x12s\n\x16ResetWatchdogAttribute\x12+.nidaqmx_grpc.ResetWatchdogAttributeRequest\x1a,.nidaqmx_grpc.ResetWatchdogAttributeResponse\x12j\n\x13ResetWriteAttribute\x12(.nidaqmx_grpc.ResetWriteAttributeRequest\x1a).nidaqmx_grpc.ResetWriteAttributeResponse\x12s\n\x16RestoreLastExtCalConst\x12+.nidaqmx_grpc.RestoreLastExtCalConstRequest\x1a,.nidaqmx_grpc.RestoreLastExtCalConstResponse\x12[\n\x0eSaveGlobalChan\x12#.nidaqmx_grpc.SaveGlobalChanRequest\x1a$.nidaqmx_grpc.SaveGlobalChanResponse\x12L\n\tSaveScale\x12\x1e.nidaqmx_grpc.SaveScaleRequest\x1a\x1f.nidaqmx_grpc.SaveScaleResponse\x12I\n\x08SaveTask\x12\x1d.nidaqmx_grpc.SaveTaskRequest\x1a\x1e.nidaqmx_grpc.SaveTaskResponse\x12\x46\n\x07SelfCal\x12\x1c.nidaqmx_grpc.SelfCalRequest\x1a\x1d.nidaqmx_grpc.SelfCalResponse\x12[\n\x0eSelfTestDevice\x12#.nidaqmx_grpc.SelfTestDeviceRequest\x1a$.nidaqmx_grpc.SelfTestDeviceResponse\x12j\n\x13SetAIChanCalCalDate\x12(.nidaqmx_grpc.SetAIChanCalCalDateRequest\x1a).nidaqmx_grpc.SetAIChanCalCalDateResponse\x12j\n\x13SetAIChanCalExpDate\x12(.nidaqmx_grpc.SetAIChanCalExpDateRequest\x1a).nidaqmx_grpc.SetAIChanCalExpDateResponse\x12s\n\x16SetAnalogPowerUpStates\x12+.nidaqmx_grpc.SetAnalogPowerUpStatesRequest\x1a,.nidaqmx_grpc.SetAnalogPowerUpStatesResponse\x12\x9d\x01\n$SetAnalogPowerUpStatesWithOutputType\x12\x39.nidaqmx_grpc.SetAnalogPowerUpStatesWithOutputTypeRequest\x1a:.nidaqmx_grpc.SetAnalogPowerUpStatesWithOutputTypeResponse\x12v\n\x17SetArmStartTrigTrigWhen\x12,.nidaqmx_grpc.SetArmStartTrigTrigWhenRequest\x1a-.nidaqmx_grpc.SetArmStartTrigTrigWhenResponse\x12y\n\x18SetBufferAttributeUInt32\x12-.nidaqmx_grpc.SetBufferAttributeUInt32Request\x1a..nidaqmx_grpc.SetBufferAttributeUInt32Response\x12v\n\x17SetCalInfoAttributeBool\x12,.nidaqmx_grpc.SetCalInfoAttributeBoolRequest\x1a-.nidaqmx_grpc.SetCalInfoAttributeBoolResponse\x12|\n\x19SetCalInfoAttributeDouble\x12..nidaqmx_grpc.SetCalInfoAttributeDoubleRequest\x1a/.nidaqmx_grpc.SetCalInfoAttributeDoubleResponse\x12|\n\x19SetCalInfoAttributeString\x12..nidaqmx_grpc.SetCalInfoAttributeStringRequest\x1a/.nidaqmx_grpc.SetCalInfoAttributeStringResponse\x12|\n\x19SetCalInfoAttributeUInt32\x12..nidaqmx_grpc.SetCalInfoAttributeUInt32Request\x1a/.nidaqmx_grpc.SetCalInfoAttributeUInt32Response\x12m\n\x14SetChanAttributeBool\x12).nidaqmx_grpc.SetChanAttributeBoolRequest\x1a*.nidaqmx_grpc.SetChanAttributeBoolResponse\x12s\n\x16SetChanAttributeDouble\x12+.nidaqmx_grpc.SetChanAttributeDoubleRequest\x1a,.nidaqmx_grpc.SetChanAttributeDoubleResponse\x12\x82\x01\n\x1bSetChanAttributeDoubleArray\x12\x30.nidaqmx_grpc.SetChanAttributeDoubleArrayRequest\x1a\x31.nidaqmx_grpc.SetChanAttributeDoubleArrayResponse\x12p\n\x15SetChanAttributeInt32\x12*.nidaqmx_grpc.SetChanAttributeInt32Request\x1a+.nidaqmx_grpc.SetChanAttributeInt32Response\x12s\n\x16SetChanAttributeString\x12+.nidaqmx_grpc.SetChanAttributeStringRequest\x1a,.nidaqmx_grpc.SetChanAttributeStringResponse\x12s\n\x16SetChanAttributeUInt32\x12+.nidaqmx_grpc.SetChanAttributeUInt32Request\x1a,.nidaqmx_grpc.SetChanAttributeUInt32Response\x12\x94\x01\n!SetDigitalLogicFamilyPowerUpState\x12\x36.nidaqmx_grpc.SetDigitalLogicFamilyPowerUpStateRequest\x1a\x37.nidaqmx_grpc.SetDigitalLogicFamilyPowerUpStateResponse\x12v\n\x17SetDigitalPowerUpStates\x12,.nidaqmx_grpc.SetDigitalPowerUpStatesRequest\x1a-.nidaqmx_grpc.SetDigitalPowerUpStatesResponse\x12\x8b\x01\n\x1eSetDigitalPullUpPullDownStates\x12\x33.nidaqmx_grpc.SetDigitalPullUpPullDownStatesRequest\x1a\x34.nidaqmx_grpc.SetDigitalPullUpPullDownStatesResponse\x12\x8b\x01\n\x1eSetExportedSignalAttributeBool\x12\x33.nidaqmx_grpc.SetExportedSignalAttributeBoolRequest\x1a\x34.nidaqmx_grpc.SetExportedSignalAttributeBoolResponse\x12\x91\x01\n SetExportedSignalAttributeDouble\x12\x35.nidaqmx_grpc.SetExportedSignalAttributeDoubleRequest\x1a\x36.nidaqmx_grpc.SetExportedSignalAttributeDoubleResponse\x12\x8e\x01\n\x1fSetExportedSignalAttributeInt32\x12\x34.nidaqmx_grpc.SetExportedSignalAttributeInt32Request\x1a\x35.nidaqmx_grpc.SetExportedSignalAttributeInt32Response\x12\x91\x01\n SetExportedSignalAttributeString\x12\x35.nidaqmx_grpc.SetExportedSignalAttributeStringRequest\x1a\x36.nidaqmx_grpc.SetExportedSignalAttributeStringResponse\x12\x91\x01\n SetExportedSignalAttributeUInt32\x12\x35.nidaqmx_grpc.SetExportedSignalAttributeUInt32Request\x1a\x36.nidaqmx_grpc.SetExportedSignalAttributeUInt32Response\x12j\n\x13SetFirstSampClkWhen\x12(.nidaqmx_grpc.SetFirstSampClkWhenRequest\x1a).nidaqmx_grpc.SetFirstSampClkWhenResponse\x12m\n\x14SetReadAttributeBool\x12).nidaqmx_grpc.SetReadAttributeBoolRequest\x1a*.nidaqmx_grpc.SetReadAttributeBoolResponse\x12s\n\x16SetReadAttributeDouble\x12+.nidaqmx_grpc.SetReadAttributeDoubleRequest\x1a,.nidaqmx_grpc.SetReadAttributeDoubleResponse\x12p\n\x15SetReadAttributeInt32\x12*.nidaqmx_grpc.SetReadAttributeInt32Request\x1a+.nidaqmx_grpc.SetReadAttributeInt32Response\x12s\n\x16SetReadAttributeString\x12+.nidaqmx_grpc.SetReadAttributeStringRequest\x1a,.nidaqmx_grpc.SetReadAttributeStringResponse\x12s\n\x16SetReadAttributeUInt32\x12+.nidaqmx_grpc.SetReadAttributeUInt32Request\x1a,.nidaqmx_grpc.SetReadAttributeUInt32Response\x12s\n\x16SetReadAttributeUInt64\x12+.nidaqmx_grpc.SetReadAttributeUInt64Request\x1a,.nidaqmx_grpc.SetReadAttributeUInt64Response\x12y\n\x18SetRealTimeAttributeBool\x12-.nidaqmx_grpc.SetRealTimeAttributeBoolRequest\x1a..nidaqmx_grpc.SetRealTimeAttributeBoolResponse\x12|\n\x19SetRealTimeAttributeInt32\x12..nidaqmx_grpc.SetRealTimeAttributeInt32Request\x1a/.nidaqmx_grpc.SetRealTimeAttributeInt32Response\x12\x7f\n\x1aSetRealTimeAttributeUInt32\x12/.nidaqmx_grpc.SetRealTimeAttributeUInt32Request\x1a\x30.nidaqmx_grpc.SetRealTimeAttributeUInt32Response\x12v\n\x17SetScaleAttributeDouble\x12,.nidaqmx_grpc.SetScaleAttributeDoubleRequest\x1a-.nidaqmx_grpc.SetScaleAttributeDoubleResponse\x12\x85\x01\n\x1cSetScaleAttributeDoubleArray\x12\x31.nidaqmx_grpc.SetScaleAttributeDoubleArrayRequest\x1a\x32.nidaqmx_grpc.SetScaleAttributeDoubleArrayResponse\x12s\n\x16SetScaleAttributeInt32\x12+.nidaqmx_grpc.SetScaleAttributeInt32Request\x1a,.nidaqmx_grpc.SetScaleAttributeInt32Response\x12v\n\x17SetScaleAttributeString\x12,.nidaqmx_grpc.SetScaleAttributeStringRequest\x1a-.nidaqmx_grpc.SetScaleAttributeStringResponse\x12m\n\x14SetStartTrigTrigWhen\x12).nidaqmx_grpc.SetStartTrigTrigWhenRequest\x1a*.nidaqmx_grpc.SetStartTrigTrigWhenResponse\x12m\n\x14SetSyncPulseTimeWhen\x12).nidaqmx_grpc.SetSyncPulseTimeWhenRequest\x1a*.nidaqmx_grpc.SetSyncPulseTimeWhenResponse\x12s\n\x16SetTimingAttributeBool\x12+.nidaqmx_grpc.SetTimingAttributeBoolRequest\x1a,.nidaqmx_grpc.SetTimingAttributeBoolResponse\x12y\n\x18SetTimingAttributeDouble\x12-.nidaqmx_grpc.SetTimingAttributeDoubleRequest\x1a..nidaqmx_grpc.SetTimingAttributeDoubleResponse\x12y\n\x18SetTimingAttributeExBool\x12-.nidaqmx_grpc.SetTimingAttributeExBoolRequest\x1a..nidaqmx_grpc.SetTimingAttributeExBoolResponse\x12\x7f\n\x1aSetTimingAttributeExDouble\x12/.nidaqmx_grpc.SetTimingAttributeExDoubleRequest\x1a\x30.nidaqmx_grpc.SetTimingAttributeExDoubleResponse\x12|\n\x19SetTimingAttributeExInt32\x12..nidaqmx_grpc.SetTimingAttributeExInt32Request\x1a/.nidaqmx_grpc.SetTimingAttributeExInt32Response\x12\x7f\n\x1aSetTimingAttributeExString\x12/.nidaqmx_grpc.SetTimingAttributeExStringRequest\x1a\x30.nidaqmx_grpc.SetTimingAttributeExStringResponse\x12\x88\x01\n\x1dSetTimingAttributeExTimestamp\x12\x32.nidaqmx_grpc.SetTimingAttributeExTimestampRequest\x1a\x33.nidaqmx_grpc.SetTimingAttributeExTimestampResponse\x12\x7f\n\x1aSetTimingAttributeExUInt32\x12/.nidaqmx_grpc.SetTimingAttributeExUInt32Request\x1a\x30.nidaqmx_grpc.SetTimingAttributeExUInt32Response\x12\x7f\n\x1aSetTimingAttributeExUInt64\x12/.nidaqmx_grpc.SetTimingAttributeExUInt64Request\x1a\x30.nidaqmx_grpc.SetTimingAttributeExUInt64Response\x12v\n\x17SetTimingAttributeInt32\x12,.nidaqmx_grpc.SetTimingAttributeInt32Request\x1a-.nidaqmx_grpc.SetTimingAttributeInt32Response\x12y\n\x18SetTimingAttributeString\x12-.nidaqmx_grpc.SetTimingAttributeStringRequest\x1a..nidaqmx_grpc.SetTimingAttributeStringResponse\x12\x82\x01\n\x1bSetTimingAttributeTimestamp\x12\x30.nidaqmx_grpc.SetTimingAttributeTimestampRequest\x1a\x31.nidaqmx_grpc.SetTimingAttributeTimestampResponse\x12y\n\x18SetTimingAttributeUInt32\x12-.nidaqmx_grpc.SetTimingAttributeUInt32Request\x1a..nidaqmx_grpc.SetTimingAttributeUInt32Response\x12y\n\x18SetTimingAttributeUInt64\x12-.nidaqmx_grpc.SetTimingAttributeUInt64Request\x1a..nidaqmx_grpc.SetTimingAttributeUInt64Response\x12m\n\x14SetTrigAttributeBool\x12).nidaqmx_grpc.SetTrigAttributeBoolRequest\x1a*.nidaqmx_grpc.SetTrigAttributeBoolResponse\x12s\n\x16SetTrigAttributeDouble\x12+.nidaqmx_grpc.SetTrigAttributeDoubleRequest\x1a,.nidaqmx_grpc.SetTrigAttributeDoubleResponse\x12\x82\x01\n\x1bSetTrigAttributeDoubleArray\x12\x30.nidaqmx_grpc.SetTrigAttributeDoubleArrayRequest\x1a\x31.nidaqmx_grpc.SetTrigAttributeDoubleArrayResponse\x12p\n\x15SetTrigAttributeInt32\x12*.nidaqmx_grpc.SetTrigAttributeInt32Request\x1a+.nidaqmx_grpc.SetTrigAttributeInt32Response\x12\x7f\n\x1aSetTrigAttributeInt32Array\x12/.nidaqmx_grpc.SetTrigAttributeInt32ArrayRequest\x1a\x30.nidaqmx_grpc.SetTrigAttributeInt32ArrayResponse\x12s\n\x16SetTrigAttributeString\x12+.nidaqmx_grpc.SetTrigAttributeStringRequest\x1a,.nidaqmx_grpc.SetTrigAttributeStringResponse\x12|\n\x19SetTrigAttributeTimestamp\x12..nidaqmx_grpc.SetTrigAttributeTimestampRequest\x1a/.nidaqmx_grpc.SetTrigAttributeTimestampResponse\x12s\n\x16SetTrigAttributeUInt32\x12+.nidaqmx_grpc.SetTrigAttributeUInt32Request\x1a,.nidaqmx_grpc.SetTrigAttributeUInt32Response\x12y\n\x18SetWatchdogAttributeBool\x12-.nidaqmx_grpc.SetWatchdogAttributeBoolRequest\x1a..nidaqmx_grpc.SetWatchdogAttributeBoolResponse\x12\x7f\n\x1aSetWatchdogAttributeDouble\x12/.nidaqmx_grpc.SetWatchdogAttributeDoubleRequest\x1a\x30.nidaqmx_grpc.SetWatchdogAttributeDoubleResponse\x12|\n\x19SetWatchdogAttributeInt32\x12..nidaqmx_grpc.SetWatchdogAttributeInt32Request\x1a/.nidaqmx_grpc.SetWatchdogAttributeInt32Response\x12\x7f\n\x1aSetWatchdogAttributeString\x12/.nidaqmx_grpc.SetWatchdogAttributeStringRequest\x1a\x30.nidaqmx_grpc.SetWatchdogAttributeStringResponse\x12p\n\x15SetWriteAttributeBool\x12*.nidaqmx_grpc.SetWriteAttributeBoolRequest\x1a+.nidaqmx_grpc.SetWriteAttributeBoolResponse\x12v\n\x17SetWriteAttributeDouble\x12,.nidaqmx_grpc.SetWriteAttributeDoubleRequest\x1a-.nidaqmx_grpc.SetWriteAttributeDoubleResponse\x12s\n\x16SetWriteAttributeInt32\x12+.nidaqmx_grpc.SetWriteAttributeInt32Request\x1a,.nidaqmx_grpc.SetWriteAttributeInt32Response\x12v\n\x17SetWriteAttributeString\x12,.nidaqmx_grpc.SetWriteAttributeStringRequest\x1a-.nidaqmx_grpc.SetWriteAttributeStringResponse\x12v\n\x17SetWriteAttributeUInt32\x12,.nidaqmx_grpc.SetWriteAttributeUInt32Request\x1a-.nidaqmx_grpc.SetWriteAttributeUInt32Response\x12v\n\x17SetWriteAttributeUInt64\x12,.nidaqmx_grpc.SetWriteAttributeUInt64Request\x1a-.nidaqmx_grpc.SetWriteAttributeUInt64Response\x12U\n\x0cStartNewFile\x12!.nidaqmx_grpc.StartNewFileRequest\x1a\".nidaqmx_grpc.StartNewFileResponse\x12L\n\tStartTask\x12\x1e.nidaqmx_grpc.StartTaskRequest\x1a\x1f.nidaqmx_grpc.StartTaskResponse\x12I\n\x08StopTask\x12\x1d.nidaqmx_grpc.StopTaskRequest\x1a\x1e.nidaqmx_grpc.StopTaskResponse\x12R\n\x0bTaskControl\x12 .nidaqmx_grpc.TaskControlRequest\x1a!.nidaqmx_grpc.TaskControlResponse\x12g\n\x12TristateOutputTerm\x12\'.nidaqmx_grpc.TristateOutputTermRequest\x1a(.nidaqmx_grpc.TristateOutputTermResponse\x12j\n\x13UnregisterDoneEvent\x12(.nidaqmx_grpc.UnregisterDoneEventRequest\x1a).nidaqmx_grpc.UnregisterDoneEventResponse\x12\x85\x01\n\x1cUnregisterEveryNSamplesEvent\x12\x31.nidaqmx_grpc.UnregisterEveryNSamplesEventRequest\x1a\x32.nidaqmx_grpc.UnregisterEveryNSamplesEventResponse\x12p\n\x15UnregisterSignalEvent\x12*.nidaqmx_grpc.UnregisterSignalEventRequest\x1a+.nidaqmx_grpc.UnregisterSignalEventResponse\x12s\n\x16UnreserveNetworkDevice\x12+.nidaqmx_grpc.UnreserveNetworkDeviceRequest\x1a,.nidaqmx_grpc.UnreserveNetworkDeviceResponse\x12s\n\x16WaitForNextSampleClock\x12+.nidaqmx_grpc.WaitForNextSampleClockRequest\x1a,.nidaqmx_grpc.WaitForNextSampleClockResponse\x12\x82\x01\n\x1b\x42\x65ginWaitForNextSampleClock\x12\x30.nidaqmx_grpc.BeginWaitForNextSampleClockRequest\x1a\x31.nidaqmx_grpc.BeginWaitForNextSampleClockResponse\x12p\n\x15WaitForValidTimestamp\x12*.nidaqmx_grpc.WaitForValidTimestampRequest\x1a+.nidaqmx_grpc.WaitForValidTimestampResponse\x12\x64\n\x11WaitUntilTaskDone\x12&.nidaqmx_grpc.WaitUntilTaskDoneRequest\x1a\'.nidaqmx_grpc.WaitUntilTaskDoneResponse\x12[\n\x0eWriteAnalogF64\x12#.nidaqmx_grpc.WriteAnalogF64Request\x1a$.nidaqmx_grpc.WriteAnalogF64Response\x12j\n\x13\x42\x65ginWriteAnalogF64\x12(.nidaqmx_grpc.BeginWriteAnalogF64Request\x1a).nidaqmx_grpc.BeginWriteAnalogF64Response\x12m\n\x14WriteAnalogScalarF64\x12).nidaqmx_grpc.WriteAnalogScalarF64Request\x1a*.nidaqmx_grpc.WriteAnalogScalarF64Response\x12|\n\x19\x42\x65ginWriteAnalogScalarF64\x12..nidaqmx_grpc.BeginWriteAnalogScalarF64Request\x1a/.nidaqmx_grpc.BeginWriteAnalogScalarF64Response\x12[\n\x0eWriteBinaryI16\x12#.nidaqmx_grpc.WriteBinaryI16Request\x1a$.nidaqmx_grpc.WriteBinaryI16Response\x12j\n\x13\x42\x65ginWriteBinaryI16\x12(.nidaqmx_grpc.BeginWriteBinaryI16Request\x1a).nidaqmx_grpc.BeginWriteBinaryI16Response\x12[\n\x0eWriteBinaryI32\x12#.nidaqmx_grpc.WriteBinaryI32Request\x1a$.nidaqmx_grpc.WriteBinaryI32Response\x12j\n\x13\x42\x65ginWriteBinaryI32\x12(.nidaqmx_grpc.BeginWriteBinaryI32Request\x1a).nidaqmx_grpc.BeginWriteBinaryI32Response\x12[\n\x0eWriteBinaryU16\x12#.nidaqmx_grpc.WriteBinaryU16Request\x1a$.nidaqmx_grpc.WriteBinaryU16Response\x12j\n\x13\x42\x65ginWriteBinaryU16\x12(.nidaqmx_grpc.BeginWriteBinaryU16Request\x1a).nidaqmx_grpc.BeginWriteBinaryU16Response\x12[\n\x0eWriteBinaryU32\x12#.nidaqmx_grpc.WriteBinaryU32Request\x1a$.nidaqmx_grpc.WriteBinaryU32Response\x12j\n\x13\x42\x65ginWriteBinaryU32\x12(.nidaqmx_grpc.BeginWriteBinaryU32Request\x1a).nidaqmx_grpc.BeginWriteBinaryU32Response\x12U\n\x0cWriteCtrFreq\x12!.nidaqmx_grpc.WriteCtrFreqRequest\x1a\".nidaqmx_grpc.WriteCtrFreqResponse\x12\x64\n\x11\x42\x65ginWriteCtrFreq\x12&.nidaqmx_grpc.BeginWriteCtrFreqRequest\x1a\'.nidaqmx_grpc.BeginWriteCtrFreqResponse\x12g\n\x12WriteCtrFreqScalar\x12\'.nidaqmx_grpc.WriteCtrFreqScalarRequest\x1a(.nidaqmx_grpc.WriteCtrFreqScalarResponse\x12v\n\x17\x42\x65ginWriteCtrFreqScalar\x12,.nidaqmx_grpc.BeginWriteCtrFreqScalarRequest\x1a-.nidaqmx_grpc.BeginWriteCtrFreqScalarResponse\x12X\n\rWriteCtrTicks\x12\".nidaqmx_grpc.WriteCtrTicksRequest\x1a#.nidaqmx_grpc.WriteCtrTicksResponse\x12g\n\x12\x42\x65ginWriteCtrTicks\x12\'.nidaqmx_grpc.BeginWriteCtrTicksRequest\x1a(.nidaqmx_grpc.BeginWriteCtrTicksResponse\x12j\n\x13WriteCtrTicksScalar\x12(.nidaqmx_grpc.WriteCtrTicksScalarRequest\x1a).nidaqmx_grpc.WriteCtrTicksScalarResponse\x12y\n\x18\x42\x65ginWriteCtrTicksScalar\x12-.nidaqmx_grpc.BeginWriteCtrTicksScalarRequest\x1a..nidaqmx_grpc.BeginWriteCtrTicksScalarResponse\x12U\n\x0cWriteCtrTime\x12!.nidaqmx_grpc.WriteCtrTimeRequest\x1a\".nidaqmx_grpc.WriteCtrTimeResponse\x12\x64\n\x11\x42\x65ginWriteCtrTime\x12&.nidaqmx_grpc.BeginWriteCtrTimeRequest\x1a\'.nidaqmx_grpc.BeginWriteCtrTimeResponse\x12g\n\x12WriteCtrTimeScalar\x12\'.nidaqmx_grpc.WriteCtrTimeScalarRequest\x1a(.nidaqmx_grpc.WriteCtrTimeScalarResponse\x12v\n\x17\x42\x65ginWriteCtrTimeScalar\x12,.nidaqmx_grpc.BeginWriteCtrTimeScalarRequest\x1a-.nidaqmx_grpc.BeginWriteCtrTimeScalarResponse\x12\x64\n\x11WriteDigitalLines\x12&.nidaqmx_grpc.WriteDigitalLinesRequest\x1a\'.nidaqmx_grpc.WriteDigitalLinesResponse\x12s\n\x16\x42\x65ginWriteDigitalLines\x12+.nidaqmx_grpc.BeginWriteDigitalLinesRequest\x1a,.nidaqmx_grpc.BeginWriteDigitalLinesResponse\x12p\n\x15WriteDigitalScalarU32\x12*.nidaqmx_grpc.WriteDigitalScalarU32Request\x1a+.nidaqmx_grpc.WriteDigitalScalarU32Response\x12\x7f\n\x1a\x42\x65ginWriteDigitalScalarU32\x12/.nidaqmx_grpc.BeginWriteDigitalScalarU32Request\x1a\x30.nidaqmx_grpc.BeginWriteDigitalScalarU32Response\x12^\n\x0fWriteDigitalU16\x12$.nidaqmx_grpc.WriteDigitalU16Request\x1a%.nidaqmx_grpc.WriteDigitalU16Response\x12m\n\x14\x42\x65ginWriteDigitalU16\x12).nidaqmx_grpc.BeginWriteDigitalU16Request\x1a*.nidaqmx_grpc.BeginWriteDigitalU16Response\x12^\n\x0fWriteDigitalU32\x12$.nidaqmx_grpc.WriteDigitalU32Request\x1a%.nidaqmx_grpc.WriteDigitalU32Response\x12m\n\x14\x42\x65ginWriteDigitalU32\x12).nidaqmx_grpc.BeginWriteDigitalU32Request\x1a*.nidaqmx_grpc.BeginWriteDigitalU32Response\x12[\n\x0eWriteDigitalU8\x12#.nidaqmx_grpc.WriteDigitalU8Request\x1a$.nidaqmx_grpc.WriteDigitalU8Response\x12j\n\x13\x42\x65ginWriteDigitalU8\x12(.nidaqmx_grpc.BeginWriteDigitalU8Request\x1a).nidaqmx_grpc.BeginWriteDigitalU8Response\x12\x61\n\x10WriteIDPinMemory\x12%.nidaqmx_grpc.WriteIDPinMemoryRequest\x1a&.nidaqmx_grpc.WriteIDPinMemoryResponse\x12I\n\x08WriteRaw\x12\x1d.nidaqmx_grpc.WriteRawRequest\x1a\x1e.nidaqmx_grpc.WriteRawResponse\x12X\n\rBeginWriteRaw\x12\".nidaqmx_grpc.BeginWriteRawRequest\x1a#.nidaqmx_grpc.BeginWriteRawResponse\x12m\n\x14WriteToTEDSFromArray\x12).nidaqmx_grpc.WriteToTEDSFromArrayRequest\x1a*.nidaqmx_grpc.WriteToTEDSFromArrayResponse\x12j\n\x13WriteToTEDSFromFile\x12(.nidaqmx_grpc.WriteToTEDSFromFileRequest\x1a).nidaqmx_grpc.WriteToTEDSFromFileResponseBF\n\x13\x63om.ni.grpc.nidaqmxB\x07NiDAQmxP\x01\xf8\x01\x01\xaa\x02 NationalInstruments.Grpc.NiDAQmxb\x06proto3') +DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\rnidaqmx.proto\x12\x0cnidaqmx_grpc\x1a\rsession.proto\x1a\x12\x64\x61ta_moniker.proto\x1a ni/protobuf/types/waveform.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"}\n\x1d\x41nalogPowerUpChannelsAndState\x12\x15\n\rchannel_names\x18\x01 \x01(\t\x12\r\n\x05state\x18\x02 \x01(\x01\x12\x36\n\x0c\x63hannel_type\x18\x03 \x01(\x0e\x32 .nidaqmx_grpc.PowerUpChannelType\"_\n\x1bWatchdogExpChannelsAndState\x12\r\n\x05lines\x18\x01 \x01(\t\x12\x31\n\texp_state\x18\x02 \x01(\x0e\x32\x1e.nidaqmx_grpc.DigitalLineState\"`\n\x1c\x44igitalPowerUpTypeAndChannel\x12\x14\n\x0c\x63hannel_name\x18\x01 \x01(\t\x12*\n\x05state\x18\x02 \x01(\x0e\x32\x1b.nidaqmx_grpc.PowerUpStates\"c\n\x1e\x44igitalPowerUpChannelsAndState\x12\x15\n\rchannel_names\x18\x01 \x01(\t\x12*\n\x05state\x18\x02 \x01(\x0e\x32\x1b.nidaqmx_grpc.PowerUpStates\"j\n%DigitalPullUpPullDownChannelsAndState\x12\x15\n\rchannel_names\x18\x01 \x01(\t\x12*\n\x05state\x18\x02 \x01(\x0e\x32\x1b.nidaqmx_grpc.ResistorState\"k\n\x1b\x41nalogPowerUpChannelAndType\x12\x14\n\x0c\x63hannel_name\x18\x01 \x01(\t\x12\x36\n\x0c\x63hannel_type\x18\x02 \x01(\x0e\x32 .nidaqmx_grpc.PowerUpChannelType\"1\n\x1c\x41\x64\x64\x43\x44\x41QSyncConnectionRequest\x12\x11\n\tport_list\x18\x01 \x01(\t\"/\n\x1d\x41\x64\x64\x43\x44\x41QSyncConnectionResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"Z\n\x1b\x41\x64\x64GlobalChansToTaskRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x15\n\rchannel_names\x18\x02 \x01(\t\".\n\x1c\x41\x64\x64GlobalChansToTaskResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"p\n\x17\x41\x64\x64NetworkDeviceRequest\x12\x12\n\nip_address\x18\x01 \x01(\t\x12\x13\n\x0b\x64\x65vice_name\x18\x02 \x01(\t\x12\x1b\n\x13\x61ttempt_reservation\x18\x03 \x01(\x08\x12\x0f\n\x07timeout\x18\x04 \x01(\x01\"C\n\x18\x41\x64\x64NetworkDeviceResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x17\n\x0f\x64\x65vice_name_out\x18\x02 \x01(\t\"_\n-AreConfiguredCDAQSyncPortsDisconnectedRequest\x12\x1d\n\x15\x63hassis_devices_ports\x18\x01 \x01(\t\x12\x0f\n\x07timeout\x18\x02 \x01(\x01\"b\n.AreConfiguredCDAQSyncPortsDisconnectedResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12 \n\x18\x64isconnected_ports_exist\x18\x02 \x01(\x08\"Y\n\'AutoConfigureCDAQSyncConnectionsRequest\x12\x1d\n\x15\x63hassis_devices_ports\x18\x01 \x01(\t\x12\x0f\n\x07timeout\x18\x02 \x01(\x01\":\n(AutoConfigureCDAQSyncConnectionsResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x9b\x01\n CalculateReversePolyCoeffRequest\x12\x16\n\x0e\x66orward_coeffs\x18\x01 \x03(\x01\x12\x11\n\tmin_val_x\x18\x02 \x01(\x01\x12\x11\n\tmax_val_x\x18\x03 \x01(\x01\x12\x1d\n\x15num_points_to_compute\x18\x04 \x01(\x05\x12\x1a\n\x12reverse_poly_order\x18\x05 \x01(\x05\"K\n!CalculateReversePolyCoeffResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x16\n\x0ereverse_coeffs\x18\x02 \x03(\x01\"\xee\x01\n\x19\x43\x66gAnlgEdgeRefTrigRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x16\n\x0etrigger_source\x18\x02 \x01(\t\x12-\n\rtrigger_slope\x18\x03 \x01(\x0e\x32\x14.nidaqmx_grpc.Slope1H\x00\x12\x1b\n\x11trigger_slope_raw\x18\x04 \x01(\x05H\x00\x12\x15\n\rtrigger_level\x18\x05 \x01(\x01\x12\x1a\n\x12pretrigger_samples\x18\x06 \x01(\rB\x14\n\x12trigger_slope_enum\",\n\x1a\x43\x66gAnlgEdgeRefTrigResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xd4\x01\n\x1b\x43\x66gAnlgEdgeStartTrigRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x16\n\x0etrigger_source\x18\x02 \x01(\t\x12-\n\rtrigger_slope\x18\x03 \x01(\x0e\x32\x14.nidaqmx_grpc.Slope1H\x00\x12\x1b\n\x11trigger_slope_raw\x18\x04 \x01(\x05H\x00\x12\x15\n\rtrigger_level\x18\x05 \x01(\x01\x42\x14\n\x12trigger_slope_enum\".\n\x1c\x43\x66gAnlgEdgeStartTrigResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xcb\x01\n\x1e\x43\x66gAnlgMultiEdgeRefTrigRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x17\n\x0ftrigger_sources\x18\x02 \x01(\t\x12\x31\n\x13trigger_slope_array\x18\x03 \x03(\x0e\x32\x14.nidaqmx_grpc.Slope1\x12\x1b\n\x13trigger_level_array\x18\x04 \x03(\x01\x12\x1a\n\x12pretrigger_samples\x18\x05 \x01(\r\"1\n\x1f\x43\x66gAnlgMultiEdgeRefTrigResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xb1\x01\n CfgAnlgMultiEdgeStartTrigRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x17\n\x0ftrigger_sources\x18\x02 \x01(\t\x12\x31\n\x13trigger_slope_array\x18\x03 \x03(\x0e\x32\x14.nidaqmx_grpc.Slope1\x12\x1b\n\x13trigger_level_array\x18\x04 \x03(\x01\"3\n!CfgAnlgMultiEdgeStartTrigResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x92\x02\n\x1b\x43\x66gAnlgWindowRefTrigRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x16\n\x0etrigger_source\x18\x02 \x01(\t\x12=\n\x0ctrigger_when\x18\x03 \x01(\x0e\x32%.nidaqmx_grpc.WindowTriggerCondition1H\x00\x12\x1a\n\x10trigger_when_raw\x18\x04 \x01(\x05H\x00\x12\x12\n\nwindow_top\x18\x05 \x01(\x01\x12\x15\n\rwindow_bottom\x18\x06 \x01(\x01\x12\x1a\n\x12pretrigger_samples\x18\x07 \x01(\rB\x13\n\x11trigger_when_enum\".\n\x1c\x43\x66gAnlgWindowRefTrigResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xf8\x01\n\x1d\x43\x66gAnlgWindowStartTrigRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x16\n\x0etrigger_source\x18\x02 \x01(\t\x12=\n\x0ctrigger_when\x18\x03 \x01(\x0e\x32%.nidaqmx_grpc.WindowTriggerCondition1H\x00\x12\x1a\n\x10trigger_when_raw\x18\x04 \x01(\x05H\x00\x12\x12\n\nwindow_top\x18\x05 \x01(\x01\x12\x15\n\rwindow_bottom\x18\x06 \x01(\x01\x42\x13\n\x11trigger_when_enum\"0\n\x1e\x43\x66gAnlgWindowStartTrigResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xef\x04\n+CfgBurstHandshakingTimingExportClockRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x34\n\x0bsample_mode\x18\x02 \x01(\x0e\x32\x1d.nidaqmx_grpc.AcquisitionTypeH\x00\x12\x19\n\x0fsample_mode_raw\x18\x03 \x01(\x05H\x00\x12\x16\n\x0esamps_per_chan\x18\x04 \x01(\x04\x12\x17\n\x0fsample_clk_rate\x18\x05 \x01(\x01\x12\x1c\n\x14sample_clk_outp_term\x18\x06 \x01(\t\x12<\n\x19sample_clk_pulse_polarity\x18\x07 \x01(\x0e\x32\x17.nidaqmx_grpc.Polarity2H\x01\x12\'\n\x1dsample_clk_pulse_polarity_raw\x18\x08 \x01(\x05H\x01\x12*\n\npause_when\x18\t \x01(\x0e\x32\x14.nidaqmx_grpc.Level1H\x02\x12\x18\n\x0epause_when_raw\x18\n \x01(\x05H\x02\x12;\n\x18ready_event_active_level\x18\x0b \x01(\x0e\x32\x17.nidaqmx_grpc.Polarity2H\x03\x12&\n\x1cready_event_active_level_raw\x18\x0c \x01(\x05H\x03\x42\x12\n\x10sample_mode_enumB \n\x1esample_clk_pulse_polarity_enumB\x11\n\x0fpause_when_enumB\x1f\n\x1dready_event_active_level_enum\">\n,CfgBurstHandshakingTimingExportClockResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xdc\x04\n+CfgBurstHandshakingTimingImportClockRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x34\n\x0bsample_mode\x18\x02 \x01(\x0e\x32\x1d.nidaqmx_grpc.AcquisitionTypeH\x00\x12\x19\n\x0fsample_mode_raw\x18\x03 \x01(\x05H\x00\x12\x16\n\x0esamps_per_chan\x18\x04 \x01(\x04\x12\x17\n\x0fsample_clk_rate\x18\x05 \x01(\x01\x12\x16\n\x0esample_clk_src\x18\x06 \x01(\t\x12\x35\n\x16sample_clk_active_edge\x18\x07 \x01(\x0e\x32\x13.nidaqmx_grpc.Edge1H\x01\x12$\n\x1asample_clk_active_edge_raw\x18\x08 \x01(\x05H\x01\x12*\n\npause_when\x18\t \x01(\x0e\x32\x14.nidaqmx_grpc.Level1H\x02\x12\x18\n\x0epause_when_raw\x18\n \x01(\x05H\x02\x12;\n\x18ready_event_active_level\x18\x0b \x01(\x0e\x32\x17.nidaqmx_grpc.Polarity2H\x03\x12&\n\x1cready_event_active_level_raw\x18\x0c \x01(\x05H\x03\x42\x12\n\x10sample_mode_enumB\x1d\n\x1bsample_clk_active_edge_enumB\x11\n\x0fpause_when_enumB\x1f\n\x1dready_event_active_level_enum\">\n,CfgBurstHandshakingTimingImportClockResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xf9\x01\n\x1f\x43\x66gChangeDetectionTimingRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10rising_edge_chan\x18\x02 \x01(\t\x12\x19\n\x11\x66\x61lling_edge_chan\x18\x03 \x01(\t\x12\x34\n\x0bsample_mode\x18\x04 \x01(\x0e\x32\x1d.nidaqmx_grpc.AcquisitionTypeH\x00\x12\x19\n\x0fsample_mode_raw\x18\x05 \x01(\x05H\x00\x12\x16\n\x0esamps_per_chan\x18\x06 \x01(\x04\x42\x12\n\x10sample_mode_enum\"2\n CfgChangeDetectionTimingResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xd2\x01\n\x18\x43\x66gDigEdgeRefTrigRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x16\n\x0etrigger_source\x18\x02 \x01(\t\x12+\n\x0ctrigger_edge\x18\x03 \x01(\x0e\x32\x13.nidaqmx_grpc.Edge1H\x00\x12\x1a\n\x10trigger_edge_raw\x18\x04 \x01(\x05H\x00\x12\x1a\n\x12pretrigger_samples\x18\x05 \x01(\rB\x13\n\x11trigger_edge_enum\"+\n\x19\x43\x66gDigEdgeRefTrigResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xb8\x01\n\x1a\x43\x66gDigEdgeStartTrigRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x16\n\x0etrigger_source\x18\x02 \x01(\t\x12+\n\x0ctrigger_edge\x18\x03 \x01(\x0e\x32\x13.nidaqmx_grpc.Edge1H\x00\x12\x1a\n\x10trigger_edge_raw\x18\x04 \x01(\x05H\x00\x42\x13\n\x11trigger_edge_enum\"-\n\x1b\x43\x66gDigEdgeStartTrigResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x81\x02\n\x1b\x43\x66gDigPatternRefTrigRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x16\n\x0etrigger_source\x18\x02 \x01(\t\x12\x17\n\x0ftrigger_pattern\x18\x03 \x01(\t\x12>\n\x0ctrigger_when\x18\x04 \x01(\x0e\x32&.nidaqmx_grpc.DigitalPatternCondition1H\x00\x12\x1a\n\x10trigger_when_raw\x18\x05 \x01(\x05H\x00\x12\x1a\n\x12pretrigger_samples\x18\x06 \x01(\rB\x13\n\x11trigger_when_enum\".\n\x1c\x43\x66gDigPatternRefTrigResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xe7\x01\n\x1d\x43\x66gDigPatternStartTrigRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x16\n\x0etrigger_source\x18\x02 \x01(\t\x12\x17\n\x0ftrigger_pattern\x18\x03 \x01(\t\x12>\n\x0ctrigger_when\x18\x04 \x01(\x0e\x32&.nidaqmx_grpc.DigitalPatternCondition1H\x00\x12\x1a\n\x10trigger_when_raw\x18\x05 \x01(\x05H\x00\x42\x13\n\x11trigger_when_enum\"0\n\x1e\x43\x66gDigPatternStartTrigResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xc0\x01\n\x1b\x43\x66gHandshakingTimingRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x34\n\x0bsample_mode\x18\x02 \x01(\x0e\x32\x1d.nidaqmx_grpc.AcquisitionTypeH\x00\x12\x19\n\x0fsample_mode_raw\x18\x03 \x01(\x05H\x00\x12\x16\n\x0esamps_per_chan\x18\x04 \x01(\x04\x42\x12\n\x10sample_mode_enum\".\n\x1c\x43\x66gHandshakingTimingResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xbd\x01\n\x18\x43\x66gImplicitTimingRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x34\n\x0bsample_mode\x18\x02 \x01(\x0e\x32\x1d.nidaqmx_grpc.AcquisitionTypeH\x00\x12\x19\n\x0fsample_mode_raw\x18\x03 \x01(\x05H\x00\x12\x16\n\x0esamps_per_chan\x18\x04 \x01(\x04\x42\x12\n\x10sample_mode_enum\"+\n\x19\x43\x66gImplicitTimingResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"Y\n\x15\x43\x66gInputBufferRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\r\"(\n\x16\x43\x66gInputBufferResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"Z\n\x16\x43\x66gOutputBufferRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\r\")\n\x17\x43\x66gOutputBufferResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xbe\x02\n CfgPipelinedSampClkTimingRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0e\n\x06source\x18\x02 \x01(\t\x12\x0c\n\x04rate\x18\x03 \x01(\x01\x12*\n\x0b\x61\x63tive_edge\x18\x04 \x01(\x0e\x32\x13.nidaqmx_grpc.Edge1H\x00\x12\x19\n\x0f\x61\x63tive_edge_raw\x18\x05 \x01(\x05H\x00\x12\x34\n\x0bsample_mode\x18\x06 \x01(\x0e\x32\x1d.nidaqmx_grpc.AcquisitionTypeH\x01\x12\x19\n\x0fsample_mode_raw\x18\x07 \x01(\x05H\x01\x12\x16\n\x0esamps_per_chan\x18\x08 \x01(\x04\x42\x12\n\x10\x61\x63tive_edge_enumB\x12\n\x10sample_mode_enum\"3\n!CfgPipelinedSampClkTimingResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xb5\x02\n\x17\x43\x66gSampClkTimingRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0e\n\x06source\x18\x02 \x01(\t\x12\x0c\n\x04rate\x18\x03 \x01(\x01\x12*\n\x0b\x61\x63tive_edge\x18\x04 \x01(\x0e\x32\x13.nidaqmx_grpc.Edge1H\x00\x12\x19\n\x0f\x61\x63tive_edge_raw\x18\x05 \x01(\x05H\x00\x12\x34\n\x0bsample_mode\x18\x06 \x01(\x0e\x32\x1d.nidaqmx_grpc.AcquisitionTypeH\x01\x12\x19\n\x0fsample_mode_raw\x18\x07 \x01(\x05H\x01\x12\x16\n\x0esamps_per_chan\x18\x08 \x01(\x04\x42\x12\n\x10\x61\x63tive_edge_enumB\x12\n\x10sample_mode_enum\"*\n\x18\x43\x66gSampClkTimingResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xc3\x01\n\x17\x43\x66gTimeStartTrigRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12(\n\x04when\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12-\n\ttimescale\x18\x03 \x01(\x0e\x32\x18.nidaqmx_grpc.Timescale2H\x00\x12\x17\n\rtimescale_raw\x18\x04 \x01(\x05H\x00\x42\x10\n\x0etimescale_enum\"*\n\x18\x43\x66gTimeStartTrigResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xb8\x01\n\x1f\x43\x66gWatchdogAOExpirStatesRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x15\n\rchannel_names\x18\x02 \x01(\t\x12\x19\n\x11\x65xpir_state_array\x18\x03 \x03(\x01\x12=\n\x11output_type_array\x18\x04 \x03(\x0e\x32\".nidaqmx_grpc.WatchdogAOOutputType\"2\n CfgWatchdogAOExpirStatesResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x9d\x01\n\x1f\x43\x66gWatchdogCOExpirStatesRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x15\n\rchannel_names\x18\x02 \x01(\t\x12=\n\x11\x65xpir_state_array\x18\x03 \x03(\x0e\x32\".nidaqmx_grpc.WatchdogCOExpirState\"2\n CfgWatchdogCOExpirStatesResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x99\x01\n\x1f\x43\x66gWatchdogDOExpirStatesRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x15\n\rchannel_names\x18\x02 \x01(\t\x12\x39\n\x11\x65xpir_state_array\x18\x03 \x03(\x0e\x32\x1e.nidaqmx_grpc.DigitalLineState\"2\n CfgWatchdogDOExpirStatesResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\",\n\x10\x43learTEDSRequest\x12\x18\n\x10physical_channel\x18\x01 \x01(\t\"#\n\x11\x43learTEDSResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"8\n\x10\x43learTaskRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\"#\n\x11\x43learTaskResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xaa\x02\n\x17\x43onfigureLoggingRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x11\n\tfile_path\x18\x02 \x01(\t\x12\x31\n\x0clogging_mode\x18\x03 \x01(\x0e\x32\x19.nidaqmx_grpc.LoggingModeH\x00\x12\x1a\n\x10logging_mode_raw\x18\x04 \x01(\x05H\x00\x12\x12\n\ngroup_name\x18\x05 \x01(\t\x12\x33\n\toperation\x18\x06 \x01(\x0e\x32\x1e.nidaqmx_grpc.LoggingOperationH\x01\x12\x17\n\roperation_raw\x18\x07 \x01(\x05H\x01\x42\x13\n\x11logging_mode_enumB\x10\n\x0eoperation_enum\"*\n\x18\x43onfigureLoggingResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"C\n\x14\x43onfigureTEDSRequest\x12\x18\n\x10physical_channel\x18\x01 \x01(\t\x12\x11\n\tfile_path\x18\x02 \x01(\t\"\'\n\x15\x43onfigureTEDSResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xbf\x01\n\x13\x43onnectTermsRequest\x12\x17\n\x0fsource_terminal\x18\x01 \x01(\t\x12\x1c\n\x14\x64\x65stination_terminal\x18\x02 \x01(\t\x12\x38\n\x10signal_modifiers\x18\x03 \x01(\x0e\x32\x1c.nidaqmx_grpc.InvertPolarityH\x00\x12\x1e\n\x14signal_modifiers_raw\x18\x04 \x01(\x05H\x00\x42\x17\n\x15signal_modifiers_enum\"&\n\x14\x43onnectTermsResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x9e\x01\n\x1a\x43ontrolWatchdogTaskRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x35\n\x06\x61\x63tion\x18\x02 \x01(\x0e\x32#.nidaqmx_grpc.WatchdogControlActionH\x00\x12\x14\n\naction_raw\x18\x03 \x01(\x05H\x00\x42\r\n\x0b\x61\x63tion_enum\"-\n\x1b\x43ontrolWatchdogTaskResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xde\x05\n&CreateAIAccel4WireDCVoltageChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12@\n\x0fterminal_config\x18\x04 \x01(\x0e\x32%.nidaqmx_grpc.InputTermCfgWithDefaultH\x00\x12\x1d\n\x13terminal_config_raw\x18\x05 \x01(\x05H\x00\x12\x0f\n\x07min_val\x18\x06 \x01(\x01\x12\x0f\n\x07max_val\x18\x07 \x01(\x01\x12*\n\x05units\x18\x08 \x01(\x0e\x32\x19.nidaqmx_grpc.AccelUnits2H\x01\x12\x13\n\tunits_raw\x18\t \x01(\x05H\x01\x12\x13\n\x0bsensitivity\x18\n \x01(\x01\x12\x41\n\x11sensitivity_units\x18\x0b \x01(\x0e\x32$.nidaqmx_grpc.AccelSensitivityUnits1H\x02\x12\x1f\n\x15sensitivity_units_raw\x18\x0c \x01(\x05H\x02\x12>\n\x14voltage_excit_source\x18\r \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x03\x12\"\n\x18voltage_excit_source_raw\x18\x0e \x01(\x05H\x03\x12\x19\n\x11voltage_excit_val\x18\x0f \x01(\x01\x12\x1d\n\x15use_excit_for_scaling\x18\x10 \x01(\x08\x12\x19\n\x11\x63ustom_scale_name\x18\x11 \x01(\tB\x16\n\x14terminal_config_enumB\x0c\n\nunits_enumB\x18\n\x16sensitivity_units_enumB\x1b\n\x19voltage_excit_source_enum\"9\n\'CreateAIAccel4WireDCVoltageChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xb1\x05\n\x18\x43reateAIAccelChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12@\n\x0fterminal_config\x18\x04 \x01(\x0e\x32%.nidaqmx_grpc.InputTermCfgWithDefaultH\x00\x12\x1d\n\x13terminal_config_raw\x18\x05 \x01(\x05H\x00\x12\x0f\n\x07min_val\x18\x06 \x01(\x01\x12\x0f\n\x07max_val\x18\x07 \x01(\x01\x12*\n\x05units\x18\x08 \x01(\x0e\x32\x19.nidaqmx_grpc.AccelUnits2H\x01\x12\x13\n\tunits_raw\x18\t \x01(\x05H\x01\x12\x13\n\x0bsensitivity\x18\n \x01(\x01\x12\x41\n\x11sensitivity_units\x18\x0b \x01(\x0e\x32$.nidaqmx_grpc.AccelSensitivityUnits1H\x02\x12\x1f\n\x15sensitivity_units_raw\x18\x0c \x01(\x05H\x02\x12>\n\x14\x63urrent_excit_source\x18\r \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x03\x12\"\n\x18\x63urrent_excit_source_raw\x18\x0e \x01(\x05H\x03\x12\x19\n\x11\x63urrent_excit_val\x18\x0f \x01(\x01\x12\x19\n\x11\x63ustom_scale_name\x18\x10 \x01(\tB\x16\n\x14terminal_config_enumB\x0c\n\nunits_enumB\x18\n\x16sensitivity_units_enumB\x1b\n\x19\x63urrent_excit_source_enum\"+\n\x19\x43reateAIAccelChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xa0\x04\n\x1e\x43reateAIAccelChargeChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12@\n\x0fterminal_config\x18\x04 \x01(\x0e\x32%.nidaqmx_grpc.InputTermCfgWithDefaultH\x00\x12\x1d\n\x13terminal_config_raw\x18\x05 \x01(\x05H\x00\x12\x0f\n\x07min_val\x18\x06 \x01(\x01\x12\x0f\n\x07max_val\x18\x07 \x01(\x01\x12*\n\x05units\x18\x08 \x01(\x0e\x32\x19.nidaqmx_grpc.AccelUnits2H\x01\x12\x13\n\tunits_raw\x18\t \x01(\x05H\x01\x12\x13\n\x0bsensitivity\x18\n \x01(\x01\x12\x46\n\x11sensitivity_units\x18\x0b \x01(\x0e\x32).nidaqmx_grpc.AccelChargeSensitivityUnitsH\x02\x12\x1f\n\x15sensitivity_units_raw\x18\x0c \x01(\x05H\x02\x12\x19\n\x11\x63ustom_scale_name\x18\r \x01(\tB\x16\n\x14terminal_config_enumB\x0c\n\nunits_enumB\x18\n\x16sensitivity_units_enum\"1\n\x1f\x43reateAIAccelChargeChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xb9\x04\n\x19\x43reateAIBridgeChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12*\n\x05units\x18\x06 \x01(\x0e\x32\x19.nidaqmx_grpc.BridgeUnitsH\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12;\n\rbridge_config\x18\x08 \x01(\x0e\x32\".nidaqmx_grpc.BridgeConfiguration1H\x01\x12\x1b\n\x11\x62ridge_config_raw\x18\t \x01(\x05H\x01\x12>\n\x14voltage_excit_source\x18\n \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x02\x12\"\n\x18voltage_excit_source_raw\x18\x0b \x01(\x05H\x02\x12\x19\n\x11voltage_excit_val\x18\x0c \x01(\x01\x12!\n\x19nominal_bridge_resistance\x18\r \x01(\x01\x12\x19\n\x11\x63ustom_scale_name\x18\x0e \x01(\tB\x0c\n\nunits_enumB\x14\n\x12\x62ridge_config_enumB\x1b\n\x19voltage_excit_source_enum\",\n\x1a\x43reateAIBridgeChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x83\x03\n\x19\x43reateAIChargeChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12@\n\x0fterminal_config\x18\x04 \x01(\x0e\x32%.nidaqmx_grpc.InputTermCfgWithDefaultH\x00\x12\x1d\n\x13terminal_config_raw\x18\x05 \x01(\x05H\x00\x12\x0f\n\x07min_val\x18\x06 \x01(\x01\x12\x0f\n\x07max_val\x18\x07 \x01(\x01\x12*\n\x05units\x18\x08 \x01(\x0e\x32\x19.nidaqmx_grpc.ChargeUnitsH\x01\x12\x13\n\tunits_raw\x18\t \x01(\x05H\x01\x12\x19\n\x11\x63ustom_scale_name\x18\n \x01(\tB\x16\n\x14terminal_config_enumB\x0c\n\nunits_enum\",\n\x1a\x43reateAIChargeChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xb8\x04\n\x1a\x43reateAICurrentChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12@\n\x0fterminal_config\x18\x04 \x01(\x0e\x32%.nidaqmx_grpc.InputTermCfgWithDefaultH\x00\x12\x1d\n\x13terminal_config_raw\x18\x05 \x01(\x05H\x00\x12\x0f\n\x07min_val\x18\x06 \x01(\x01\x12\x0f\n\x07max_val\x18\x07 \x01(\x01\x12,\n\x05units\x18\x08 \x01(\x0e\x32\x1b.nidaqmx_grpc.CurrentUnits2H\x01\x12\x13\n\tunits_raw\x18\t \x01(\x05H\x01\x12S\n\x12shunt_resistor_loc\x18\n \x01(\x0e\x32\x35.nidaqmx_grpc.CurrentShuntResistorLocationWithDefaultH\x02\x12 \n\x16shunt_resistor_loc_raw\x18\x0b \x01(\x05H\x02\x12\x1e\n\x16\x65xt_shunt_resistor_val\x18\x0c \x01(\x01\x12\x19\n\x11\x63ustom_scale_name\x18\r \x01(\tB\x16\n\x14terminal_config_enumB\x0c\n\nunits_enumB\x19\n\x17shunt_resistor_loc_enum\"-\n\x1b\x43reateAICurrentChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xbb\x04\n\x1d\x43reateAICurrentRMSChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12@\n\x0fterminal_config\x18\x04 \x01(\x0e\x32%.nidaqmx_grpc.InputTermCfgWithDefaultH\x00\x12\x1d\n\x13terminal_config_raw\x18\x05 \x01(\x05H\x00\x12\x0f\n\x07min_val\x18\x06 \x01(\x01\x12\x0f\n\x07max_val\x18\x07 \x01(\x01\x12,\n\x05units\x18\x08 \x01(\x0e\x32\x1b.nidaqmx_grpc.CurrentUnits2H\x01\x12\x13\n\tunits_raw\x18\t \x01(\x05H\x01\x12S\n\x12shunt_resistor_loc\x18\n \x01(\x0e\x32\x35.nidaqmx_grpc.CurrentShuntResistorLocationWithDefaultH\x02\x12 \n\x16shunt_resistor_loc_raw\x18\x0b \x01(\x05H\x02\x12\x1e\n\x16\x65xt_shunt_resistor_val\x18\x0c \x01(\x01\x12\x19\n\x11\x63ustom_scale_name\x18\r \x01(\tB\x16\n\x14terminal_config_enumB\x0c\n\nunits_enumB\x19\n\x17shunt_resistor_loc_enum\"0\n\x1e\x43reateAICurrentRMSChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xe3\x06\n(CreateAIForceBridgePolynomialChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12)\n\x05units\x18\x06 \x01(\x0e\x32\x18.nidaqmx_grpc.ForceUnitsH\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12;\n\rbridge_config\x18\x08 \x01(\x0e\x32\".nidaqmx_grpc.BridgeConfiguration1H\x01\x12\x1b\n\x11\x62ridge_config_raw\x18\t \x01(\x05H\x01\x12>\n\x14voltage_excit_source\x18\n \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x02\x12\"\n\x18voltage_excit_source_raw\x18\x0b \x01(\x05H\x02\x12\x19\n\x11voltage_excit_val\x18\x0c \x01(\x01\x12!\n\x19nominal_bridge_resistance\x18\r \x01(\x01\x12\x16\n\x0e\x66orward_coeffs\x18\x0e \x03(\x01\x12\x16\n\x0ereverse_coeffs\x18\x0f \x03(\x01\x12?\n\x10\x65lectrical_units\x18\x10 \x01(\x0e\x32#.nidaqmx_grpc.BridgeElectricalUnitsH\x03\x12\x1e\n\x14\x65lectrical_units_raw\x18\x11 \x01(\x05H\x03\x12;\n\x0ephysical_units\x18\x12 \x01(\x0e\x32!.nidaqmx_grpc.BridgePhysicalUnitsH\x04\x12\x1c\n\x12physical_units_raw\x18\x13 \x01(\x05H\x04\x12\x19\n\x11\x63ustom_scale_name\x18\x14 \x01(\tB\x0c\n\nunits_enumB\x14\n\x12\x62ridge_config_enumB\x1b\n\x19voltage_excit_source_enumB\x17\n\x15\x65lectrical_units_enumB\x15\n\x13physical_units_enum\";\n)CreateAIForceBridgePolynomialChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xde\x06\n#CreateAIForceBridgeTableChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12)\n\x05units\x18\x06 \x01(\x0e\x32\x18.nidaqmx_grpc.ForceUnitsH\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12;\n\rbridge_config\x18\x08 \x01(\x0e\x32\".nidaqmx_grpc.BridgeConfiguration1H\x01\x12\x1b\n\x11\x62ridge_config_raw\x18\t \x01(\x05H\x01\x12>\n\x14voltage_excit_source\x18\n \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x02\x12\"\n\x18voltage_excit_source_raw\x18\x0b \x01(\x05H\x02\x12\x19\n\x11voltage_excit_val\x18\x0c \x01(\x01\x12!\n\x19nominal_bridge_resistance\x18\r \x01(\x01\x12\x17\n\x0f\x65lectrical_vals\x18\x0e \x03(\x01\x12?\n\x10\x65lectrical_units\x18\x0f \x01(\x0e\x32#.nidaqmx_grpc.BridgeElectricalUnitsH\x03\x12\x1e\n\x14\x65lectrical_units_raw\x18\x10 \x01(\x05H\x03\x12\x15\n\rphysical_vals\x18\x11 \x03(\x01\x12;\n\x0ephysical_units\x18\x12 \x01(\x0e\x32!.nidaqmx_grpc.BridgePhysicalUnitsH\x04\x12\x1c\n\x12physical_units_raw\x18\x13 \x01(\x05H\x04\x12\x19\n\x11\x63ustom_scale_name\x18\x14 \x01(\tB\x0c\n\nunits_enumB\x14\n\x12\x62ridge_config_enumB\x1b\n\x19voltage_excit_source_enumB\x17\n\x15\x65lectrical_units_enumB\x15\n\x13physical_units_enum\"6\n$CreateAIForceBridgeTableChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xaa\x07\n)CreateAIForceBridgeTwoPointLinChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12)\n\x05units\x18\x06 \x01(\x0e\x32\x18.nidaqmx_grpc.ForceUnitsH\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12;\n\rbridge_config\x18\x08 \x01(\x0e\x32\".nidaqmx_grpc.BridgeConfiguration1H\x01\x12\x1b\n\x11\x62ridge_config_raw\x18\t \x01(\x05H\x01\x12>\n\x14voltage_excit_source\x18\n \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x02\x12\"\n\x18voltage_excit_source_raw\x18\x0b \x01(\x05H\x02\x12\x19\n\x11voltage_excit_val\x18\x0c \x01(\x01\x12!\n\x19nominal_bridge_resistance\x18\r \x01(\x01\x12\x1c\n\x14\x66irst_electrical_val\x18\x0e \x01(\x01\x12\x1d\n\x15second_electrical_val\x18\x0f \x01(\x01\x12?\n\x10\x65lectrical_units\x18\x10 \x01(\x0e\x32#.nidaqmx_grpc.BridgeElectricalUnitsH\x03\x12\x1e\n\x14\x65lectrical_units_raw\x18\x11 \x01(\x05H\x03\x12\x1a\n\x12\x66irst_physical_val\x18\x12 \x01(\x01\x12\x1b\n\x13second_physical_val\x18\x13 \x01(\x01\x12;\n\x0ephysical_units\x18\x14 \x01(\x0e\x32!.nidaqmx_grpc.BridgePhysicalUnitsH\x04\x12\x1c\n\x12physical_units_raw\x18\x15 \x01(\x05H\x04\x12\x19\n\x11\x63ustom_scale_name\x18\x16 \x01(\tB\x0c\n\nunits_enumB\x14\n\x12\x62ridge_config_enumB\x1b\n\x19voltage_excit_source_enumB\x17\n\x15\x65lectrical_units_enumB\x15\n\x13physical_units_enum\"<\n*CreateAIForceBridgeTwoPointLinChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xc1\x05\n\x1c\x43reateAIForceIEPEChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12@\n\x0fterminal_config\x18\x04 \x01(\x0e\x32%.nidaqmx_grpc.InputTermCfgWithDefaultH\x00\x12\x1d\n\x13terminal_config_raw\x18\x05 \x01(\x05H\x00\x12\x0f\n\x07min_val\x18\x06 \x01(\x01\x12\x0f\n\x07max_val\x18\x07 \x01(\x01\x12-\n\x05units\x18\x08 \x01(\x0e\x32\x1c.nidaqmx_grpc.ForceIEPEUnitsH\x01\x12\x13\n\tunits_raw\x18\t \x01(\x05H\x01\x12\x13\n\x0bsensitivity\x18\n \x01(\x01\x12J\n\x11sensitivity_units\x18\x0b \x01(\x0e\x32-.nidaqmx_grpc.ForceIEPESensorSensitivityUnitsH\x02\x12\x1f\n\x15sensitivity_units_raw\x18\x0c \x01(\x05H\x02\x12>\n\x14\x63urrent_excit_source\x18\r \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x03\x12\"\n\x18\x63urrent_excit_source_raw\x18\x0e \x01(\x05H\x03\x12\x19\n\x11\x63urrent_excit_val\x18\x0f \x01(\x01\x12\x19\n\x11\x63ustom_scale_name\x18\x10 \x01(\tB\x16\n\x14terminal_config_enumB\x0c\n\nunits_enumB\x18\n\x16sensitivity_units_enumB\x1b\n\x19\x63urrent_excit_source_enum\"/\n\x1d\x43reateAIForceIEPEChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xbf\x02\n\x1e\x43reateAIFreqVoltageChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12-\n\x05units\x18\x06 \x01(\x0e\x32\x1c.nidaqmx_grpc.FrequencyUnitsH\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12\x17\n\x0fthreshold_level\x18\x08 \x01(\x01\x12\x12\n\nhysteresis\x18\t \x01(\x01\x12\x19\n\x11\x63ustom_scale_name\x18\n \x01(\tB\x0c\n\nunits_enum\"1\n\x1f\x43reateAIFreqVoltageChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xbf\x04\n\x1d\x43reateAIMicrophoneChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12@\n\x0fterminal_config\x18\x04 \x01(\x0e\x32%.nidaqmx_grpc.InputTermCfgWithDefaultH\x00\x12\x1d\n\x13terminal_config_raw\x18\x05 \x01(\x05H\x00\x12\x32\n\x05units\x18\x06 \x01(\x0e\x32!.nidaqmx_grpc.SoundPressureUnits1H\x01\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x01\x12\x17\n\x0fmic_sensitivity\x18\x08 \x01(\x01\x12\x1b\n\x13max_snd_press_level\x18\t \x01(\x01\x12>\n\x14\x63urrent_excit_source\x18\n \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x02\x12\"\n\x18\x63urrent_excit_source_raw\x18\x0b \x01(\x05H\x02\x12\x19\n\x11\x63urrent_excit_val\x18\x0c \x01(\x01\x12\x19\n\x11\x63ustom_scale_name\x18\r \x01(\tB\x16\n\x14terminal_config_enumB\x0c\n\nunits_enumB\x1b\n\x19\x63urrent_excit_source_enum\"0\n\x1e\x43reateAIMicrophoneChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xba\x03\n\'CreateAIPosEddyCurrProxProbeChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12+\n\x05units\x18\x06 \x01(\x0e\x32\x1a.nidaqmx_grpc.LengthUnits2H\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12\x13\n\x0bsensitivity\x18\x08 \x01(\x01\x12O\n\x11sensitivity_units\x18\t \x01(\x0e\x32\x32.nidaqmx_grpc.EddyCurrentProxProbeSensitivityUnitsH\x01\x12\x1f\n\x15sensitivity_units_raw\x18\n \x01(\x05H\x01\x12\x19\n\x11\x63ustom_scale_name\x18\x0b \x01(\tB\x0c\n\nunits_enumB\x18\n\x16sensitivity_units_enum\":\n(CreateAIPosEddyCurrProxProbeChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xd0\x05\n\x1a\x43reateAIPosLVDTChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12+\n\x05units\x18\x06 \x01(\x0e\x32\x1a.nidaqmx_grpc.LengthUnits2H\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12\x13\n\x0bsensitivity\x18\x08 \x01(\x01\x12@\n\x11sensitivity_units\x18\t \x01(\x0e\x32#.nidaqmx_grpc.LVDTSensitivityUnits1H\x01\x12\x1f\n\x15sensitivity_units_raw\x18\n \x01(\x05H\x01\x12>\n\x14voltage_excit_source\x18\x0b \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x02\x12\"\n\x18voltage_excit_source_raw\x18\x0c \x01(\x05H\x02\x12\x19\n\x11voltage_excit_val\x18\r \x01(\x01\x12\x1a\n\x12voltage_excit_freq\x18\x0e \x01(\x01\x12;\n\x12\x61\x63_excit_wire_mode\x18\x0f \x01(\x0e\x32\x1d.nidaqmx_grpc.ACExcitWireModeH\x03\x12 \n\x16\x61\x63_excit_wire_mode_raw\x18\x10 \x01(\x05H\x03\x12\x19\n\x11\x63ustom_scale_name\x18\x11 \x01(\tB\x0c\n\nunits_enumB\x18\n\x16sensitivity_units_enumB\x1b\n\x19voltage_excit_source_enumB\x19\n\x17\x61\x63_excit_wire_mode_enum\"-\n\x1b\x43reateAIPosLVDTChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xcf\x05\n\x1a\x43reateAIPosRVDTChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12*\n\x05units\x18\x06 \x01(\x0e\x32\x19.nidaqmx_grpc.AngleUnits1H\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12\x13\n\x0bsensitivity\x18\x08 \x01(\x01\x12@\n\x11sensitivity_units\x18\t \x01(\x0e\x32#.nidaqmx_grpc.RVDTSensitivityUnits1H\x01\x12\x1f\n\x15sensitivity_units_raw\x18\n \x01(\x05H\x01\x12>\n\x14voltage_excit_source\x18\x0b \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x02\x12\"\n\x18voltage_excit_source_raw\x18\x0c \x01(\x05H\x02\x12\x19\n\x11voltage_excit_val\x18\r \x01(\x01\x12\x1a\n\x12voltage_excit_freq\x18\x0e \x01(\x01\x12;\n\x12\x61\x63_excit_wire_mode\x18\x0f \x01(\x0e\x32\x1d.nidaqmx_grpc.ACExcitWireModeH\x03\x12 \n\x16\x61\x63_excit_wire_mode_raw\x18\x10 \x01(\x05H\x03\x12\x19\n\x11\x63ustom_scale_name\x18\x11 \x01(\tB\x0c\n\nunits_enumB\x18\n\x16sensitivity_units_enumB\x1b\n\x19voltage_excit_source_enumB\x19\n\x17\x61\x63_excit_wire_mode_enum\"-\n\x1b\x43reateAIPosRVDTChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xc8\x01\n\x18\x43reateAIPowerChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x18\n\x10voltage_setpoint\x18\x04 \x01(\x01\x12\x18\n\x10\x63urrent_setpoint\x18\x05 \x01(\x01\x12\x15\n\routput_enable\x18\x06 \x01(\x08\"+\n\x19\x43reateAIPowerChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xe9\x06\n+CreateAIPressureBridgePolynomialChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12,\n\x05units\x18\x06 \x01(\x0e\x32\x1b.nidaqmx_grpc.PressureUnitsH\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12;\n\rbridge_config\x18\x08 \x01(\x0e\x32\".nidaqmx_grpc.BridgeConfiguration1H\x01\x12\x1b\n\x11\x62ridge_config_raw\x18\t \x01(\x05H\x01\x12>\n\x14voltage_excit_source\x18\n \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x02\x12\"\n\x18voltage_excit_source_raw\x18\x0b \x01(\x05H\x02\x12\x19\n\x11voltage_excit_val\x18\x0c \x01(\x01\x12!\n\x19nominal_bridge_resistance\x18\r \x01(\x01\x12\x16\n\x0e\x66orward_coeffs\x18\x0e \x03(\x01\x12\x16\n\x0ereverse_coeffs\x18\x0f \x03(\x01\x12?\n\x10\x65lectrical_units\x18\x10 \x01(\x0e\x32#.nidaqmx_grpc.BridgeElectricalUnitsH\x03\x12\x1e\n\x14\x65lectrical_units_raw\x18\x11 \x01(\x05H\x03\x12;\n\x0ephysical_units\x18\x12 \x01(\x0e\x32!.nidaqmx_grpc.BridgePhysicalUnitsH\x04\x12\x1c\n\x12physical_units_raw\x18\x13 \x01(\x05H\x04\x12\x19\n\x11\x63ustom_scale_name\x18\x14 \x01(\tB\x0c\n\nunits_enumB\x14\n\x12\x62ridge_config_enumB\x1b\n\x19voltage_excit_source_enumB\x17\n\x15\x65lectrical_units_enumB\x15\n\x13physical_units_enum\">\n,CreateAIPressureBridgePolynomialChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xe4\x06\n&CreateAIPressureBridgeTableChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12,\n\x05units\x18\x06 \x01(\x0e\x32\x1b.nidaqmx_grpc.PressureUnitsH\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12;\n\rbridge_config\x18\x08 \x01(\x0e\x32\".nidaqmx_grpc.BridgeConfiguration1H\x01\x12\x1b\n\x11\x62ridge_config_raw\x18\t \x01(\x05H\x01\x12>\n\x14voltage_excit_source\x18\n \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x02\x12\"\n\x18voltage_excit_source_raw\x18\x0b \x01(\x05H\x02\x12\x19\n\x11voltage_excit_val\x18\x0c \x01(\x01\x12!\n\x19nominal_bridge_resistance\x18\r \x01(\x01\x12\x17\n\x0f\x65lectrical_vals\x18\x0e \x03(\x01\x12?\n\x10\x65lectrical_units\x18\x0f \x01(\x0e\x32#.nidaqmx_grpc.BridgeElectricalUnitsH\x03\x12\x1e\n\x14\x65lectrical_units_raw\x18\x10 \x01(\x05H\x03\x12\x15\n\rphysical_vals\x18\x11 \x03(\x01\x12;\n\x0ephysical_units\x18\x12 \x01(\x0e\x32!.nidaqmx_grpc.BridgePhysicalUnitsH\x04\x12\x1c\n\x12physical_units_raw\x18\x13 \x01(\x05H\x04\x12\x19\n\x11\x63ustom_scale_name\x18\x14 \x01(\tB\x0c\n\nunits_enumB\x14\n\x12\x62ridge_config_enumB\x1b\n\x19voltage_excit_source_enumB\x17\n\x15\x65lectrical_units_enumB\x15\n\x13physical_units_enum\"9\n\'CreateAIPressureBridgeTableChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xb0\x07\n,CreateAIPressureBridgeTwoPointLinChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12,\n\x05units\x18\x06 \x01(\x0e\x32\x1b.nidaqmx_grpc.PressureUnitsH\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12;\n\rbridge_config\x18\x08 \x01(\x0e\x32\".nidaqmx_grpc.BridgeConfiguration1H\x01\x12\x1b\n\x11\x62ridge_config_raw\x18\t \x01(\x05H\x01\x12>\n\x14voltage_excit_source\x18\n \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x02\x12\"\n\x18voltage_excit_source_raw\x18\x0b \x01(\x05H\x02\x12\x19\n\x11voltage_excit_val\x18\x0c \x01(\x01\x12!\n\x19nominal_bridge_resistance\x18\r \x01(\x01\x12\x1c\n\x14\x66irst_electrical_val\x18\x0e \x01(\x01\x12\x1d\n\x15second_electrical_val\x18\x0f \x01(\x01\x12?\n\x10\x65lectrical_units\x18\x10 \x01(\x0e\x32#.nidaqmx_grpc.BridgeElectricalUnitsH\x03\x12\x1e\n\x14\x65lectrical_units_raw\x18\x11 \x01(\x05H\x03\x12\x1a\n\x12\x66irst_physical_val\x18\x12 \x01(\x01\x12\x1b\n\x13second_physical_val\x18\x13 \x01(\x01\x12;\n\x0ephysical_units\x18\x14 \x01(\x0e\x32!.nidaqmx_grpc.BridgePhysicalUnitsH\x04\x12\x1c\n\x12physical_units_raw\x18\x15 \x01(\x05H\x04\x12\x19\n\x11\x63ustom_scale_name\x18\x16 \x01(\tB\x0c\n\nunits_enumB\x14\n\x12\x62ridge_config_enumB\x1b\n\x19voltage_excit_source_enumB\x17\n\x15\x65lectrical_units_enumB\x15\n\x13physical_units_enum\"?\n-CreateAIPressureBridgeTwoPointLinChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xed\x04\n\x16\x43reateAIRTDChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12/\n\x05units\x18\x06 \x01(\x0e\x32\x1e.nidaqmx_grpc.TemperatureUnitsH\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12*\n\x08rtd_type\x18\x08 \x01(\x0e\x32\x16.nidaqmx_grpc.RTDType1H\x01\x12\x16\n\x0crtd_type_raw\x18\t \x01(\x05H\x01\x12\x42\n\x11resistance_config\x18\n \x01(\x0e\x32%.nidaqmx_grpc.ResistanceConfigurationH\x02\x12\x1f\n\x15resistance_config_raw\x18\x0b \x01(\x05H\x02\x12>\n\x14\x63urrent_excit_source\x18\x0c \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x03\x12\"\n\x18\x63urrent_excit_source_raw\x18\r \x01(\x05H\x03\x12\x19\n\x11\x63urrent_excit_val\x18\x0e \x01(\x01\x12\n\n\x02r0\x18\x0f \x01(\x01\x42\x0c\n\nunits_enumB\x0f\n\rrtd_type_enumB\x18\n\x16resistance_config_enumB\x1b\n\x19\x63urrent_excit_source_enum\")\n\x17\x43reateAIRTDChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xae\x04\n\x1d\x43reateAIResistanceChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12/\n\x05units\x18\x06 \x01(\x0e\x32\x1e.nidaqmx_grpc.ResistanceUnits2H\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12\x42\n\x11resistance_config\x18\x08 \x01(\x0e\x32%.nidaqmx_grpc.ResistanceConfigurationH\x01\x12\x1f\n\x15resistance_config_raw\x18\t \x01(\x05H\x01\x12>\n\x14\x63urrent_excit_source\x18\n \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x02\x12\"\n\x18\x63urrent_excit_source_raw\x18\x0b \x01(\x05H\x02\x12\x19\n\x11\x63urrent_excit_val\x18\x0c \x01(\x01\x12\x19\n\x11\x63ustom_scale_name\x18\r \x01(\tB\x0c\n\nunits_enumB\x18\n\x16resistance_config_enumB\x1b\n\x19\x63urrent_excit_source_enum\"0\n\x1e\x43reateAIResistanceChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xf7\x05\n$CreateAIRosetteStrainGageChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12;\n\x0crosette_type\x18\x06 \x01(\x0e\x32#.nidaqmx_grpc.StrainGageRosetteTypeH\x00\x12\x1a\n\x10rosette_type_raw\x18\x07 \x01(\x05H\x00\x12\x18\n\x10gage_orientation\x18\x08 \x01(\x01\x12J\n\x12rosette_meas_types\x18\t \x03(\x0e\x32..nidaqmx_grpc.StrainGageRosetteMeasurementType\x12<\n\rstrain_config\x18\n \x01(\x0e\x32#.nidaqmx_grpc.StrainGageBridgeType1H\x01\x12\x1b\n\x11strain_config_raw\x18\x0b \x01(\x05H\x01\x12>\n\x14voltage_excit_source\x18\x0c \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x02\x12\"\n\x18voltage_excit_source_raw\x18\r \x01(\x05H\x02\x12\x19\n\x11voltage_excit_val\x18\x0e \x01(\x01\x12\x13\n\x0bgage_factor\x18\x0f \x01(\x01\x12\x1f\n\x17nominal_gage_resistance\x18\x10 \x01(\x01\x12\x15\n\rpoisson_ratio\x18\x11 \x01(\x01\x12\x1c\n\x14lead_wire_resistance\x18\x12 \x01(\x01\x42\x13\n\x11rosette_type_enumB\x14\n\x12strain_config_enumB\x1b\n\x19voltage_excit_source_enum\"7\n%CreateAIRosetteStrainGageChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xa7\x05\n\x1d\x43reateAIStrainGageChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12+\n\x05units\x18\x06 \x01(\x0e\x32\x1a.nidaqmx_grpc.StrainUnits1H\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12<\n\rstrain_config\x18\x08 \x01(\x0e\x32#.nidaqmx_grpc.StrainGageBridgeType1H\x01\x12\x1b\n\x11strain_config_raw\x18\t \x01(\x05H\x01\x12>\n\x14voltage_excit_source\x18\n \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x02\x12\"\n\x18voltage_excit_source_raw\x18\x0b \x01(\x05H\x02\x12\x19\n\x11voltage_excit_val\x18\x0c \x01(\x01\x12\x13\n\x0bgage_factor\x18\r \x01(\x01\x12\x1e\n\x16initial_bridge_voltage\x18\x0e \x01(\x01\x12\x1f\n\x17nominal_gage_resistance\x18\x0f \x01(\x01\x12\x15\n\rpoisson_ratio\x18\x10 \x01(\x01\x12\x1c\n\x14lead_wire_resistance\x18\x11 \x01(\x01\x12\x19\n\x11\x63ustom_scale_name\x18\x12 \x01(\tB\x0c\n\nunits_enumB\x14\n\x12strain_config_enumB\x1b\n\x19voltage_excit_source_enum\"0\n\x1e\x43reateAIStrainGageChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xdd\x01\n$CreateAITempBuiltInSensorChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12/\n\x05units\x18\x04 \x01(\x0e\x32\x1e.nidaqmx_grpc.TemperatureUnitsH\x00\x12\x13\n\tunits_raw\x18\x05 \x01(\x05H\x00\x42\x0c\n\nunits_enum\"7\n%CreateAITempBuiltInSensorChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xf1\x03\n\x1a\x43reateAIThrmcplChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12/\n\x05units\x18\x06 \x01(\x0e\x32\x1e.nidaqmx_grpc.TemperatureUnitsH\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12<\n\x11thermocouple_type\x18\x08 \x01(\x0e\x32\x1f.nidaqmx_grpc.ThermocoupleType1H\x01\x12\x1f\n\x15thermocouple_type_raw\x18\t \x01(\x05H\x01\x12.\n\ncjc_source\x18\n \x01(\x0e\x32\x18.nidaqmx_grpc.CJCSource1H\x02\x12\x18\n\x0e\x63jc_source_raw\x18\x0b \x01(\x05H\x02\x12\x0f\n\x07\x63jc_val\x18\x0c \x01(\x01\x12\x13\n\x0b\x63jc_channel\x18\r \x01(\tB\x0c\n\nunits_enumB\x18\n\x16thermocouple_type_enumB\x11\n\x0f\x63jc_source_enum\"-\n\x1b\x43reateAIThrmcplChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xb4\x04\n\x1d\x43reateAIThrmstrChanIexRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12/\n\x05units\x18\x06 \x01(\x0e\x32\x1e.nidaqmx_grpc.TemperatureUnitsH\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12\x42\n\x11resistance_config\x18\x08 \x01(\x0e\x32%.nidaqmx_grpc.ResistanceConfigurationH\x01\x12\x1f\n\x15resistance_config_raw\x18\t \x01(\x05H\x01\x12>\n\x14\x63urrent_excit_source\x18\n \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x02\x12\"\n\x18\x63urrent_excit_source_raw\x18\x0b \x01(\x05H\x02\x12\x19\n\x11\x63urrent_excit_val\x18\x0c \x01(\x01\x12\t\n\x01\x61\x18\r \x01(\x01\x12\t\n\x01\x62\x18\x0e \x01(\x01\x12\t\n\x01\x63\x18\x0f \x01(\x01\x42\x0c\n\nunits_enumB\x18\n\x16resistance_config_enumB\x1b\n\x19\x63urrent_excit_source_enum\"0\n\x1e\x43reateAIThrmstrChanIexResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xc0\x04\n\x1d\x43reateAIThrmstrChanVexRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12/\n\x05units\x18\x06 \x01(\x0e\x32\x1e.nidaqmx_grpc.TemperatureUnitsH\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12\x42\n\x11resistance_config\x18\x08 \x01(\x0e\x32%.nidaqmx_grpc.ResistanceConfigurationH\x01\x12\x1f\n\x15resistance_config_raw\x18\t \x01(\x05H\x01\x12>\n\x14voltage_excit_source\x18\n \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x02\x12\"\n\x18voltage_excit_source_raw\x18\x0b \x01(\x05H\x02\x12\x19\n\x11voltage_excit_val\x18\x0c \x01(\x01\x12\t\n\x01\x61\x18\r \x01(\x01\x12\t\n\x01\x62\x18\x0e \x01(\x01\x12\t\n\x01\x63\x18\x0f \x01(\x01\x12\n\n\x02r1\x18\x10 \x01(\x01\x42\x0c\n\nunits_enumB\x18\n\x16resistance_config_enumB\x1b\n\x19voltage_excit_source_enum\"0\n\x1e\x43reateAIThrmstrChanVexResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xe5\x06\n)CreateAITorqueBridgePolynomialChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12*\n\x05units\x18\x06 \x01(\x0e\x32\x19.nidaqmx_grpc.TorqueUnitsH\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12;\n\rbridge_config\x18\x08 \x01(\x0e\x32\".nidaqmx_grpc.BridgeConfiguration1H\x01\x12\x1b\n\x11\x62ridge_config_raw\x18\t \x01(\x05H\x01\x12>\n\x14voltage_excit_source\x18\n \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x02\x12\"\n\x18voltage_excit_source_raw\x18\x0b \x01(\x05H\x02\x12\x19\n\x11voltage_excit_val\x18\x0c \x01(\x01\x12!\n\x19nominal_bridge_resistance\x18\r \x01(\x01\x12\x16\n\x0e\x66orward_coeffs\x18\x0e \x03(\x01\x12\x16\n\x0ereverse_coeffs\x18\x0f \x03(\x01\x12?\n\x10\x65lectrical_units\x18\x10 \x01(\x0e\x32#.nidaqmx_grpc.BridgeElectricalUnitsH\x03\x12\x1e\n\x14\x65lectrical_units_raw\x18\x11 \x01(\x05H\x03\x12;\n\x0ephysical_units\x18\x12 \x01(\x0e\x32!.nidaqmx_grpc.BridgePhysicalUnitsH\x04\x12\x1c\n\x12physical_units_raw\x18\x13 \x01(\x05H\x04\x12\x19\n\x11\x63ustom_scale_name\x18\x14 \x01(\tB\x0c\n\nunits_enumB\x14\n\x12\x62ridge_config_enumB\x1b\n\x19voltage_excit_source_enumB\x17\n\x15\x65lectrical_units_enumB\x15\n\x13physical_units_enum\"<\n*CreateAITorqueBridgePolynomialChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xe0\x06\n$CreateAITorqueBridgeTableChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12*\n\x05units\x18\x06 \x01(\x0e\x32\x19.nidaqmx_grpc.TorqueUnitsH\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12;\n\rbridge_config\x18\x08 \x01(\x0e\x32\".nidaqmx_grpc.BridgeConfiguration1H\x01\x12\x1b\n\x11\x62ridge_config_raw\x18\t \x01(\x05H\x01\x12>\n\x14voltage_excit_source\x18\n \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x02\x12\"\n\x18voltage_excit_source_raw\x18\x0b \x01(\x05H\x02\x12\x19\n\x11voltage_excit_val\x18\x0c \x01(\x01\x12!\n\x19nominal_bridge_resistance\x18\r \x01(\x01\x12\x17\n\x0f\x65lectrical_vals\x18\x0e \x03(\x01\x12?\n\x10\x65lectrical_units\x18\x0f \x01(\x0e\x32#.nidaqmx_grpc.BridgeElectricalUnitsH\x03\x12\x1e\n\x14\x65lectrical_units_raw\x18\x10 \x01(\x05H\x03\x12\x15\n\rphysical_vals\x18\x11 \x03(\x01\x12;\n\x0ephysical_units\x18\x12 \x01(\x0e\x32!.nidaqmx_grpc.BridgePhysicalUnitsH\x04\x12\x1c\n\x12physical_units_raw\x18\x13 \x01(\x05H\x04\x12\x19\n\x11\x63ustom_scale_name\x18\x14 \x01(\tB\x0c\n\nunits_enumB\x14\n\x12\x62ridge_config_enumB\x1b\n\x19voltage_excit_source_enumB\x17\n\x15\x65lectrical_units_enumB\x15\n\x13physical_units_enum\"7\n%CreateAITorqueBridgeTableChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xac\x07\n*CreateAITorqueBridgeTwoPointLinChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12*\n\x05units\x18\x06 \x01(\x0e\x32\x19.nidaqmx_grpc.TorqueUnitsH\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12;\n\rbridge_config\x18\x08 \x01(\x0e\x32\".nidaqmx_grpc.BridgeConfiguration1H\x01\x12\x1b\n\x11\x62ridge_config_raw\x18\t \x01(\x05H\x01\x12>\n\x14voltage_excit_source\x18\n \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x02\x12\"\n\x18voltage_excit_source_raw\x18\x0b \x01(\x05H\x02\x12\x19\n\x11voltage_excit_val\x18\x0c \x01(\x01\x12!\n\x19nominal_bridge_resistance\x18\r \x01(\x01\x12\x1c\n\x14\x66irst_electrical_val\x18\x0e \x01(\x01\x12\x1d\n\x15second_electrical_val\x18\x0f \x01(\x01\x12?\n\x10\x65lectrical_units\x18\x10 \x01(\x0e\x32#.nidaqmx_grpc.BridgeElectricalUnitsH\x03\x12\x1e\n\x14\x65lectrical_units_raw\x18\x11 \x01(\x05H\x03\x12\x1a\n\x12\x66irst_physical_val\x18\x12 \x01(\x01\x12\x1b\n\x13second_physical_val\x18\x13 \x01(\x01\x12;\n\x0ephysical_units\x18\x14 \x01(\x0e\x32!.nidaqmx_grpc.BridgePhysicalUnitsH\x04\x12\x1c\n\x12physical_units_raw\x18\x15 \x01(\x05H\x04\x12\x19\n\x11\x63ustom_scale_name\x18\x16 \x01(\tB\x0c\n\nunits_enumB\x14\n\x12\x62ridge_config_enumB\x1b\n\x19voltage_excit_source_enumB\x17\n\x15\x65lectrical_units_enumB\x15\n\x13physical_units_enum\"=\n+CreateAITorqueBridgeTwoPointLinChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xc6\x05\n\x1f\x43reateAIVelocityIEPEChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12@\n\x0fterminal_config\x18\x04 \x01(\x0e\x32%.nidaqmx_grpc.InputTermCfgWithDefaultH\x00\x12\x1d\n\x13terminal_config_raw\x18\x05 \x01(\x05H\x00\x12\x0f\n\x07min_val\x18\x06 \x01(\x01\x12\x0f\n\x07max_val\x18\x07 \x01(\x01\x12,\n\x05units\x18\x08 \x01(\x0e\x32\x1b.nidaqmx_grpc.VelocityUnitsH\x01\x12\x13\n\tunits_raw\x18\t \x01(\x05H\x01\x12\x13\n\x0bsensitivity\x18\n \x01(\x01\x12M\n\x11sensitivity_units\x18\x0b \x01(\x0e\x32\x30.nidaqmx_grpc.VelocityIEPESensorSensitivityUnitsH\x02\x12\x1f\n\x15sensitivity_units_raw\x18\x0c \x01(\x05H\x02\x12>\n\x14\x63urrent_excit_source\x18\r \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x03\x12\"\n\x18\x63urrent_excit_source_raw\x18\x0e \x01(\x05H\x03\x12\x19\n\x11\x63urrent_excit_val\x18\x0f \x01(\x01\x12\x19\n\x11\x63ustom_scale_name\x18\x10 \x01(\tB\x16\n\x14terminal_config_enumB\x0c\n\nunits_enumB\x18\n\x16sensitivity_units_enumB\x1b\n\x19\x63urrent_excit_source_enum\"2\n CreateAIVelocityIEPEChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x86\x03\n\x1a\x43reateAIVoltageChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12@\n\x0fterminal_config\x18\x04 \x01(\x0e\x32%.nidaqmx_grpc.InputTermCfgWithDefaultH\x00\x12\x1d\n\x13terminal_config_raw\x18\x05 \x01(\x05H\x00\x12\x0f\n\x07min_val\x18\x06 \x01(\x01\x12\x0f\n\x07max_val\x18\x07 \x01(\x01\x12,\n\x05units\x18\x08 \x01(\x0e\x32\x1b.nidaqmx_grpc.VoltageUnits2H\x01\x12\x13\n\tunits_raw\x18\t \x01(\x05H\x01\x12\x19\n\x11\x63ustom_scale_name\x18\n \x01(\tB\x16\n\x14terminal_config_enumB\x0c\n\nunits_enum\"-\n\x1b\x43reateAIVoltageChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xba\x05\n#CreateAIVoltageChanWithExcitRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12@\n\x0fterminal_config\x18\x04 \x01(\x0e\x32%.nidaqmx_grpc.InputTermCfgWithDefaultH\x00\x12\x1d\n\x13terminal_config_raw\x18\x05 \x01(\x05H\x00\x12\x0f\n\x07min_val\x18\x06 \x01(\x01\x12\x0f\n\x07max_val\x18\x07 \x01(\x01\x12,\n\x05units\x18\x08 \x01(\x0e\x32\x1b.nidaqmx_grpc.VoltageUnits2H\x01\x12\x13\n\tunits_raw\x18\t \x01(\x05H\x01\x12;\n\rbridge_config\x18\n \x01(\x0e\x32\".nidaqmx_grpc.BridgeConfiguration1H\x02\x12\x1b\n\x11\x62ridge_config_raw\x18\x0b \x01(\x05H\x02\x12>\n\x14voltage_excit_source\x18\x0c \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x03\x12\"\n\x18voltage_excit_source_raw\x18\r \x01(\x05H\x03\x12\x19\n\x11voltage_excit_val\x18\x0e \x01(\x01\x12\x1d\n\x15use_excit_for_scaling\x18\x0f \x01(\x08\x12\x19\n\x11\x63ustom_scale_name\x18\x10 \x01(\tB\x16\n\x14terminal_config_enumB\x0c\n\nunits_enumB\x14\n\x12\x62ridge_config_enumB\x1b\n\x19voltage_excit_source_enum\"6\n$CreateAIVoltageChanWithExcitResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x89\x03\n\x1d\x43reateAIVoltageRMSChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12@\n\x0fterminal_config\x18\x04 \x01(\x0e\x32%.nidaqmx_grpc.InputTermCfgWithDefaultH\x00\x12\x1d\n\x13terminal_config_raw\x18\x05 \x01(\x05H\x00\x12\x0f\n\x07min_val\x18\x06 \x01(\x01\x12\x0f\n\x07max_val\x18\x07 \x01(\x01\x12,\n\x05units\x18\x08 \x01(\x0e\x32\x1b.nidaqmx_grpc.VoltageUnits2H\x01\x12\x13\n\tunits_raw\x18\t \x01(\x05H\x01\x12\x19\n\x11\x63ustom_scale_name\x18\n \x01(\tB\x16\n\x14terminal_config_enumB\x0c\n\nunits_enum\"0\n\x1e\x43reateAIVoltageRMSChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x8d\x02\n\x1a\x43reateAOCurrentChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12,\n\x05units\x18\x06 \x01(\x0e\x32\x1b.nidaqmx_grpc.CurrentUnits2H\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12\x19\n\x11\x63ustom_scale_name\x18\x08 \x01(\tB\x0c\n\nunits_enum\"-\n\x1b\x43reateAOCurrentChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xfc\x01\n\x1a\x43reateAOFuncGenChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12)\n\x04type\x18\x04 \x01(\x0e\x32\x19.nidaqmx_grpc.FuncGenTypeH\x00\x12\x12\n\x08type_raw\x18\x05 \x01(\x05H\x00\x12\x0c\n\x04\x66req\x18\x06 \x01(\x01\x12\x11\n\tamplitude\x18\x07 \x01(\x01\x12\x0e\n\x06offset\x18\x08 \x01(\x01\x42\x0b\n\ttype_enum\"-\n\x1b\x43reateAOFuncGenChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x8d\x02\n\x1a\x43reateAOVoltageChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12,\n\x05units\x18\x06 \x01(\x0e\x32\x1b.nidaqmx_grpc.VoltageUnits2H\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12\x19\n\x11\x63ustom_scale_name\x18\x08 \x01(\tB\x0c\n\nunits_enum\"-\n\x1b\x43reateAOVoltageChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x87\x04\n\x1d\x43reateCIAngEncoderChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07\x63ounter\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x33\n\rdecoding_type\x18\x04 \x01(\x0e\x32\x1a.nidaqmx_grpc.EncoderType2H\x00\x12\x1b\n\x11\x64\x65\x63oding_type_raw\x18\x05 \x01(\x05H\x00\x12\x13\n\x0bzidx_enable\x18\x06 \x01(\x08\x12\x10\n\x08zidx_val\x18\x07 \x01(\x01\x12\x37\n\nzidx_phase\x18\x08 \x01(\x0e\x32!.nidaqmx_grpc.EncoderZIndexPhase1H\x01\x12\x18\n\x0ezidx_phase_raw\x18\t \x01(\x05H\x01\x12*\n\x05units\x18\n \x01(\x0e\x32\x19.nidaqmx_grpc.AngleUnits2H\x02\x12\x13\n\tunits_raw\x18\x0b \x01(\x05H\x02\x12\x16\n\x0epulses_per_rev\x18\x0c \x01(\r\x12\x15\n\rinitial_angle\x18\r \x01(\x01\x12\x19\n\x11\x63ustom_scale_name\x18\x0e \x01(\tB\x14\n\x12\x64\x65\x63oding_type_enumB\x11\n\x0fzidx_phase_enumB\x0c\n\nunits_enum\"0\n\x1e\x43reateCIAngEncoderChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x8f\x03\n\x1e\x43reateCIAngVelocityChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07\x63ounter\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12\x33\n\rdecoding_type\x18\x06 \x01(\x0e\x32\x1a.nidaqmx_grpc.EncoderType2H\x00\x12\x1b\n\x11\x64\x65\x63oding_type_raw\x18\x07 \x01(\x05H\x00\x12\x33\n\x05units\x18\x08 \x01(\x0e\x32\".nidaqmx_grpc.AngularVelocityUnitsH\x01\x12\x13\n\tunits_raw\x18\t \x01(\x05H\x01\x12\x16\n\x0epulses_per_rev\x18\n \x01(\r\x12\x19\n\x11\x63ustom_scale_name\x18\x0b \x01(\tB\x14\n\x12\x64\x65\x63oding_type_enumB\x0c\n\nunits_enum\"1\n\x1f\x43reateCIAngVelocityChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xc7\x02\n\x1d\x43reateCICountEdgesChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07\x63ounter\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12#\n\x04\x65\x64ge\x18\x04 \x01(\x0e\x32\x13.nidaqmx_grpc.Edge1H\x00\x12\x12\n\x08\x65\x64ge_raw\x18\x05 \x01(\x05H\x00\x12\x15\n\rinitial_count\x18\x06 \x01(\r\x12\x38\n\x0f\x63ount_direction\x18\x07 \x01(\x0e\x32\x1d.nidaqmx_grpc.CountDirection1H\x01\x12\x1d\n\x13\x63ount_direction_raw\x18\x08 \x01(\x05H\x01\x42\x0b\n\tedge_enumB\x16\n\x14\x63ount_direction_enum\"0\n\x1e\x43reateCICountEdgesChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xfd\x01\n\x1c\x43reateCIDutyCycleChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07\x63ounter\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x10\n\x08min_freq\x18\x04 \x01(\x01\x12\x10\n\x08max_freq\x18\x05 \x01(\x01\x12#\n\x04\x65\x64ge\x18\x06 \x01(\x0e\x32\x13.nidaqmx_grpc.Edge1H\x00\x12\x12\n\x08\x65\x64ge_raw\x18\x07 \x01(\x05H\x00\x12\x19\n\x11\x63ustom_scale_name\x18\x08 \x01(\tB\x0b\n\tedge_enum\"/\n\x1d\x43reateCIDutyCycleChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xd9\x03\n\x17\x43reateCIFreqChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07\x63ounter\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12.\n\x05units\x18\x06 \x01(\x0e\x32\x1d.nidaqmx_grpc.FrequencyUnits3H\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12#\n\x04\x65\x64ge\x18\x08 \x01(\x0e\x32\x13.nidaqmx_grpc.Edge1H\x01\x12\x12\n\x08\x65\x64ge_raw\x18\t \x01(\x05H\x01\x12;\n\x0bmeas_method\x18\n \x01(\x0e\x32$.nidaqmx_grpc.CounterFrequencyMethodH\x02\x12\x19\n\x0fmeas_method_raw\x18\x0b \x01(\x05H\x02\x12\x11\n\tmeas_time\x18\x0c \x01(\x01\x12\x0f\n\x07\x64ivisor\x18\r \x01(\r\x12\x19\n\x11\x63ustom_scale_name\x18\x0e \x01(\tB\x0c\n\nunits_enumB\x0b\n\tedge_enumB\x12\n\x10meas_method_enum\"*\n\x18\x43reateCIFreqChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xc7\x02\n\x1f\x43reateCIGPSTimestampChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07\x63ounter\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12(\n\x05units\x18\x04 \x01(\x0e\x32\x17.nidaqmx_grpc.TimeUnitsH\x00\x12\x13\n\tunits_raw\x18\x05 \x01(\x05H\x00\x12\x33\n\x0bsync_method\x18\x06 \x01(\x0e\x32\x1c.nidaqmx_grpc.GpsSignalType1H\x01\x12\x19\n\x0fsync_method_raw\x18\x07 \x01(\x05H\x01\x12\x19\n\x11\x63ustom_scale_name\x18\x08 \x01(\tB\x0c\n\nunits_enumB\x12\n\x10sync_method_enum\"2\n CreateCIGPSTimestampChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x86\x04\n\x1d\x43reateCILinEncoderChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07\x63ounter\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x33\n\rdecoding_type\x18\x04 \x01(\x0e\x32\x1a.nidaqmx_grpc.EncoderType2H\x00\x12\x1b\n\x11\x64\x65\x63oding_type_raw\x18\x05 \x01(\x05H\x00\x12\x13\n\x0bzidx_enable\x18\x06 \x01(\x08\x12\x10\n\x08zidx_val\x18\x07 \x01(\x01\x12\x37\n\nzidx_phase\x18\x08 \x01(\x0e\x32!.nidaqmx_grpc.EncoderZIndexPhase1H\x01\x12\x18\n\x0ezidx_phase_raw\x18\t \x01(\x05H\x01\x12+\n\x05units\x18\n \x01(\x0e\x32\x1a.nidaqmx_grpc.LengthUnits3H\x02\x12\x13\n\tunits_raw\x18\x0b \x01(\x05H\x02\x12\x16\n\x0e\x64ist_per_pulse\x18\x0c \x01(\x01\x12\x13\n\x0binitial_pos\x18\r \x01(\x01\x12\x19\n\x11\x63ustom_scale_name\x18\x0e \x01(\tB\x14\n\x12\x64\x65\x63oding_type_enumB\x11\n\x0fzidx_phase_enumB\x0c\n\nunits_enum\"0\n\x1e\x43reateCILinEncoderChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x88\x03\n\x1e\x43reateCILinVelocityChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07\x63ounter\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12\x33\n\rdecoding_type\x18\x06 \x01(\x0e\x32\x1a.nidaqmx_grpc.EncoderType2H\x00\x12\x1b\n\x11\x64\x65\x63oding_type_raw\x18\x07 \x01(\x05H\x00\x12,\n\x05units\x18\x08 \x01(\x0e\x32\x1b.nidaqmx_grpc.VelocityUnitsH\x01\x12\x13\n\tunits_raw\x18\t \x01(\x05H\x01\x12\x16\n\x0e\x64ist_per_pulse\x18\n \x01(\x01\x12\x19\n\x11\x63ustom_scale_name\x18\x0b \x01(\tB\x14\n\x12\x64\x65\x63oding_type_enumB\x0c\n\nunits_enum\"1\n\x1f\x43reateCILinVelocityChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xd6\x03\n\x19\x43reateCIPeriodChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07\x63ounter\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12)\n\x05units\x18\x06 \x01(\x0e\x32\x18.nidaqmx_grpc.TimeUnits3H\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12#\n\x04\x65\x64ge\x18\x08 \x01(\x0e\x32\x13.nidaqmx_grpc.Edge1H\x01\x12\x12\n\x08\x65\x64ge_raw\x18\t \x01(\x05H\x01\x12;\n\x0bmeas_method\x18\n \x01(\x0e\x32$.nidaqmx_grpc.CounterFrequencyMethodH\x02\x12\x19\n\x0fmeas_method_raw\x18\x0b \x01(\x05H\x02\x12\x11\n\tmeas_time\x18\x0c \x01(\x01\x12\x0f\n\x07\x64ivisor\x18\r \x01(\r\x12\x19\n\x11\x63ustom_scale_name\x18\x0e \x01(\tB\x0c\n\nunits_enumB\x0b\n\tedge_enumB\x12\n\x10meas_method_enum\",\n\x1a\x43reateCIPeriodChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xed\x01\n\x1c\x43reateCIPulseChanFreqRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07\x63ounter\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12.\n\x05units\x18\x06 \x01(\x0e\x32\x1d.nidaqmx_grpc.FrequencyUnits2H\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x42\x0c\n\nunits_enum\"/\n\x1d\x43reateCIPulseChanFreqResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xb4\x01\n\x1d\x43reateCIPulseChanTicksRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07\x63ounter\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x17\n\x0fsource_terminal\x18\x04 \x01(\t\x12\x0f\n\x07min_val\x18\x05 \x01(\x01\x12\x0f\n\x07max_val\x18\x06 \x01(\x01\"0\n\x1e\x43reateCIPulseChanTicksResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xf0\x01\n\x1c\x43reateCIPulseChanTimeRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07\x63ounter\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12\x31\n\x05units\x18\x06 \x01(\x0e\x32 .nidaqmx_grpc.DigitalWidthUnits3H\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x42\x0c\n\nunits_enum\"/\n\x1d\x43reateCIPulseChanTimeResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xe5\x02\n\x1d\x43reateCIPulseWidthChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07\x63ounter\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12)\n\x05units\x18\x06 \x01(\x0e\x32\x18.nidaqmx_grpc.TimeUnits3H\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12,\n\rstarting_edge\x18\x08 \x01(\x0e\x32\x13.nidaqmx_grpc.Edge1H\x01\x12\x1b\n\x11starting_edge_raw\x18\t \x01(\x05H\x01\x12\x19\n\x11\x63ustom_scale_name\x18\n \x01(\tB\x0c\n\nunits_enumB\x14\n\x12starting_edge_enum\"0\n\x1e\x43reateCIPulseWidthChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x84\x02\n\x1d\x43reateCISemiPeriodChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07\x63ounter\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12)\n\x05units\x18\x06 \x01(\x0e\x32\x18.nidaqmx_grpc.TimeUnits3H\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12\x19\n\x11\x63ustom_scale_name\x18\x08 \x01(\tB\x0c\n\nunits_enum\"0\n\x1e\x43reateCISemiPeriodChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xb7\x03\n\x1d\x43reateCITwoEdgeSepChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07\x63ounter\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12)\n\x05units\x18\x06 \x01(\x0e\x32\x18.nidaqmx_grpc.TimeUnits3H\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12)\n\nfirst_edge\x18\x08 \x01(\x0e\x32\x13.nidaqmx_grpc.Edge1H\x01\x12\x18\n\x0e\x66irst_edge_raw\x18\t \x01(\x05H\x01\x12*\n\x0bsecond_edge\x18\n \x01(\x0e\x32\x13.nidaqmx_grpc.Edge1H\x02\x12\x19\n\x0fsecond_edge_raw\x18\x0b \x01(\x05H\x02\x12\x19\n\x11\x63ustom_scale_name\x18\x0c \x01(\tB\x0c\n\nunits_enumB\x11\n\x0f\x66irst_edge_enumB\x12\n\x10second_edge_enum\"0\n\x1e\x43reateCITwoEdgeSepChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xdd\x02\n\x1c\x43reateCOPulseChanFreqRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07\x63ounter\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12.\n\x05units\x18\x04 \x01(\x0e\x32\x1d.nidaqmx_grpc.FrequencyUnits2H\x00\x12\x13\n\tunits_raw\x18\x05 \x01(\x05H\x00\x12*\n\nidle_state\x18\x06 \x01(\x0e\x32\x14.nidaqmx_grpc.Level1H\x01\x12\x18\n\x0eidle_state_raw\x18\x07 \x01(\x05H\x01\x12\x15\n\rinitial_delay\x18\x08 \x01(\x01\x12\x0c\n\x04\x66req\x18\t \x01(\x01\x12\x12\n\nduty_cycle\x18\n \x01(\x01\x42\x0c\n\nunits_enumB\x11\n\x0fidle_state_enum\"/\n\x1d\x43reateCOPulseChanFreqResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xa9\x02\n\x1d\x43reateCOPulseChanTicksRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07\x63ounter\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x17\n\x0fsource_terminal\x18\x04 \x01(\t\x12*\n\nidle_state\x18\x05 \x01(\x0e\x32\x14.nidaqmx_grpc.Level1H\x00\x12\x18\n\x0eidle_state_raw\x18\x06 \x01(\x05H\x00\x12\x15\n\rinitial_delay\x18\x07 \x01(\x05\x12\x11\n\tlow_ticks\x18\x08 \x01(\x05\x12\x12\n\nhigh_ticks\x18\t \x01(\x05\x42\x11\n\x0fidle_state_enum\"0\n\x1e\x43reateCOPulseChanTicksResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xe3\x02\n\x1c\x43reateCOPulseChanTimeRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07\x63ounter\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x31\n\x05units\x18\x04 \x01(\x0e\x32 .nidaqmx_grpc.DigitalWidthUnits3H\x00\x12\x13\n\tunits_raw\x18\x05 \x01(\x05H\x00\x12*\n\nidle_state\x18\x06 \x01(\x0e\x32\x14.nidaqmx_grpc.Level1H\x01\x12\x18\n\x0eidle_state_raw\x18\x07 \x01(\x05H\x01\x12\x15\n\rinitial_delay\x18\x08 \x01(\x01\x12\x10\n\x08low_time\x18\t \x01(\x01\x12\x11\n\thigh_time\x18\n \x01(\x01\x42\x0c\n\nunits_enumB\x11\n\x0fidle_state_enum\"/\n\x1d\x43reateCOPulseChanTimeResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xd3\x01\n\x13\x43reateDIChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\r\n\x05lines\x18\x02 \x01(\t\x12\x1f\n\x17name_to_assign_to_lines\x18\x03 \x01(\t\x12\x33\n\rline_grouping\x18\x04 \x01(\x0e\x32\x1a.nidaqmx_grpc.LineGroupingH\x00\x12\x1b\n\x11line_grouping_raw\x18\x05 \x01(\x05H\x00\x42\x14\n\x12line_grouping_enum\"&\n\x14\x43reateDIChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xd3\x01\n\x13\x43reateDOChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\r\n\x05lines\x18\x02 \x01(\t\x12\x1f\n\x17name_to_assign_to_lines\x18\x03 \x01(\t\x12\x33\n\rline_grouping\x18\x04 \x01(\x0e\x32\x1a.nidaqmx_grpc.LineGroupingH\x00\x12\x1b\n\x11line_grouping_raw\x18\x05 \x01(\x05H\x00\x42\x14\n\x12line_grouping_enum\"&\n\x14\x43reateDOChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xd2\x01\n\x15\x43reateLinScaleRequest\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\r\n\x05slope\x18\x02 \x01(\x01\x12\x13\n\x0by_intercept\x18\x03 \x01(\x01\x12\x38\n\x10pre_scaled_units\x18\x04 \x01(\x0e\x32\x1c.nidaqmx_grpc.UnitsPreScaledH\x00\x12\x1e\n\x14pre_scaled_units_raw\x18\x05 \x01(\x05H\x00\x12\x14\n\x0cscaled_units\x18\x06 \x01(\tB\x17\n\x15pre_scaled_units_enum\"(\n\x16\x43reateLinScaleResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x84\x02\n\x15\x43reateMapScaleRequest\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x15\n\rprescaled_min\x18\x02 \x01(\x01\x12\x15\n\rprescaled_max\x18\x03 \x01(\x01\x12\x12\n\nscaled_min\x18\x04 \x01(\x01\x12\x12\n\nscaled_max\x18\x05 \x01(\x01\x12\x38\n\x10pre_scaled_units\x18\x06 \x01(\x0e\x32\x1c.nidaqmx_grpc.UnitsPreScaledH\x00\x12\x1e\n\x14pre_scaled_units_raw\x18\x07 \x01(\x05H\x00\x12\x14\n\x0cscaled_units\x18\x08 \x01(\tB\x17\n\x15pre_scaled_units_enum\"(\n\x16\x43reateMapScaleResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xe5\x01\n\x1c\x43reatePolynomialScaleRequest\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x16\n\x0e\x66orward_coeffs\x18\x02 \x03(\x01\x12\x16\n\x0ereverse_coeffs\x18\x03 \x03(\x01\x12\x38\n\x10pre_scaled_units\x18\x04 \x01(\x0e\x32\x1c.nidaqmx_grpc.UnitsPreScaledH\x00\x12\x1e\n\x14pre_scaled_units_raw\x18\x05 \x01(\x05H\x00\x12\x14\n\x0cscaled_units\x18\x06 \x01(\tB\x17\n\x15pre_scaled_units_enum\"/\n\x1d\x43reatePolynomialScaleResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xa2\x04\n\x1c\x43reateTEDSAIAccelChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12@\n\x0fterminal_config\x18\x04 \x01(\x0e\x32%.nidaqmx_grpc.InputTermCfgWithDefaultH\x00\x12\x1d\n\x13terminal_config_raw\x18\x05 \x01(\x05H\x00\x12\x0f\n\x07min_val\x18\x06 \x01(\x01\x12\x0f\n\x07max_val\x18\x07 \x01(\x01\x12*\n\x05units\x18\x08 \x01(\x0e\x32\x19.nidaqmx_grpc.AccelUnits2H\x01\x12\x13\n\tunits_raw\x18\t \x01(\x05H\x01\x12>\n\x14\x63urrent_excit_source\x18\n \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x02\x12\"\n\x18\x63urrent_excit_source_raw\x18\x0b \x01(\x05H\x02\x12\x19\n\x11\x63urrent_excit_val\x18\x0c \x01(\x01\x12\x19\n\x11\x63ustom_scale_name\x18\r \x01(\tB\x16\n\x14terminal_config_enumB\x0c\n\nunits_enumB\x1b\n\x19\x63urrent_excit_source_enum\"/\n\x1d\x43reateTEDSAIAccelChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xa8\x03\n\x1d\x43reateTEDSAIBridgeChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12(\n\x05units\x18\x06 \x01(\x0e\x32\x17.nidaqmx_grpc.TEDSUnitsH\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12>\n\x14voltage_excit_source\x18\x08 \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x01\x12\"\n\x18voltage_excit_source_raw\x18\t \x01(\x05H\x01\x12\x19\n\x11voltage_excit_val\x18\n \x01(\x01\x12\x19\n\x11\x63ustom_scale_name\x18\x0b \x01(\tB\x0c\n\nunits_enumB\x1b\n\x19voltage_excit_source_enum\"0\n\x1e\x43reateTEDSAIBridgeChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xb8\x04\n\x1e\x43reateTEDSAICurrentChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12@\n\x0fterminal_config\x18\x04 \x01(\x0e\x32%.nidaqmx_grpc.InputTermCfgWithDefaultH\x00\x12\x1d\n\x13terminal_config_raw\x18\x05 \x01(\x05H\x00\x12\x0f\n\x07min_val\x18\x06 \x01(\x01\x12\x0f\n\x07max_val\x18\x07 \x01(\x01\x12(\n\x05units\x18\x08 \x01(\x0e\x32\x17.nidaqmx_grpc.TEDSUnitsH\x01\x12\x13\n\tunits_raw\x18\t \x01(\x05H\x01\x12S\n\x12shunt_resistor_loc\x18\n \x01(\x0e\x32\x35.nidaqmx_grpc.CurrentShuntResistorLocationWithDefaultH\x02\x12 \n\x16shunt_resistor_loc_raw\x18\x0b \x01(\x05H\x02\x12\x1e\n\x16\x65xt_shunt_resistor_val\x18\x0c \x01(\x01\x12\x19\n\x11\x63ustom_scale_name\x18\r \x01(\tB\x16\n\x14terminal_config_enumB\x0c\n\nunits_enumB\x19\n\x17shunt_resistor_loc_enum\"1\n\x1f\x43reateTEDSAICurrentChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xae\x03\n\"CreateTEDSAIForceBridgeChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12)\n\x05units\x18\x06 \x01(\x0e\x32\x18.nidaqmx_grpc.ForceUnitsH\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12>\n\x14voltage_excit_source\x18\x08 \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x01\x12\"\n\x18voltage_excit_source_raw\x18\t \x01(\x05H\x01\x12\x19\n\x11voltage_excit_val\x18\n \x01(\x01\x12\x19\n\x11\x63ustom_scale_name\x18\x0b \x01(\tB\x0c\n\nunits_enumB\x1b\n\x19voltage_excit_source_enum\"5\n#CreateTEDSAIForceBridgeChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xa9\x04\n CreateTEDSAIForceIEPEChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12@\n\x0fterminal_config\x18\x04 \x01(\x0e\x32%.nidaqmx_grpc.InputTermCfgWithDefaultH\x00\x12\x1d\n\x13terminal_config_raw\x18\x05 \x01(\x05H\x00\x12\x0f\n\x07min_val\x18\x06 \x01(\x01\x12\x0f\n\x07max_val\x18\x07 \x01(\x01\x12-\n\x05units\x18\x08 \x01(\x0e\x32\x1c.nidaqmx_grpc.ForceIEPEUnitsH\x01\x12\x13\n\tunits_raw\x18\t \x01(\x05H\x01\x12>\n\x14\x63urrent_excit_source\x18\n \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x02\x12\"\n\x18\x63urrent_excit_source_raw\x18\x0b \x01(\x05H\x02\x12\x19\n\x11\x63urrent_excit_val\x18\x0c \x01(\x01\x12\x19\n\x11\x63ustom_scale_name\x18\r \x01(\tB\x16\n\x14terminal_config_enumB\x0c\n\nunits_enumB\x1b\n\x19\x63urrent_excit_source_enum\"3\n!CreateTEDSAIForceIEPEChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xaa\x04\n!CreateTEDSAIMicrophoneChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12@\n\x0fterminal_config\x18\x04 \x01(\x0e\x32%.nidaqmx_grpc.InputTermCfgWithDefaultH\x00\x12\x1d\n\x13terminal_config_raw\x18\x05 \x01(\x05H\x00\x12\x32\n\x05units\x18\x06 \x01(\x0e\x32!.nidaqmx_grpc.SoundPressureUnits1H\x01\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x01\x12\x1b\n\x13max_snd_press_level\x18\x08 \x01(\x01\x12>\n\x14\x63urrent_excit_source\x18\t \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x02\x12\"\n\x18\x63urrent_excit_source_raw\x18\n \x01(\x05H\x02\x12\x19\n\x11\x63urrent_excit_val\x18\x0b \x01(\x01\x12\x19\n\x11\x63ustom_scale_name\x18\x0c \x01(\tB\x16\n\x14terminal_config_enumB\x0c\n\nunits_enumB\x1b\n\x19\x63urrent_excit_source_enum\"4\n\"CreateTEDSAIMicrophoneChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xc2\x04\n\x1e\x43reateTEDSAIPosLVDTChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12+\n\x05units\x18\x06 \x01(\x0e\x32\x1a.nidaqmx_grpc.LengthUnits2H\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12>\n\x14voltage_excit_source\x18\x08 \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x01\x12\"\n\x18voltage_excit_source_raw\x18\t \x01(\x05H\x01\x12\x19\n\x11voltage_excit_val\x18\n \x01(\x01\x12\x1a\n\x12voltage_excit_freq\x18\x0b \x01(\x01\x12;\n\x12\x61\x63_excit_wire_mode\x18\x0c \x01(\x0e\x32\x1d.nidaqmx_grpc.ACExcitWireModeH\x02\x12 \n\x16\x61\x63_excit_wire_mode_raw\x18\r \x01(\x05H\x02\x12\x19\n\x11\x63ustom_scale_name\x18\x0e \x01(\tB\x0c\n\nunits_enumB\x1b\n\x19voltage_excit_source_enumB\x19\n\x17\x61\x63_excit_wire_mode_enum\"1\n\x1f\x43reateTEDSAIPosLVDTChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xc1\x04\n\x1e\x43reateTEDSAIPosRVDTChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12*\n\x05units\x18\x06 \x01(\x0e\x32\x19.nidaqmx_grpc.AngleUnits1H\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12>\n\x14voltage_excit_source\x18\x08 \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x01\x12\"\n\x18voltage_excit_source_raw\x18\t \x01(\x05H\x01\x12\x19\n\x11voltage_excit_val\x18\n \x01(\x01\x12\x1a\n\x12voltage_excit_freq\x18\x0b \x01(\x01\x12;\n\x12\x61\x63_excit_wire_mode\x18\x0c \x01(\x0e\x32\x1d.nidaqmx_grpc.ACExcitWireModeH\x02\x12 \n\x16\x61\x63_excit_wire_mode_raw\x18\r \x01(\x05H\x02\x12\x19\n\x11\x63ustom_scale_name\x18\x0e \x01(\tB\x0c\n\nunits_enumB\x1b\n\x19voltage_excit_source_enumB\x19\n\x17\x61\x63_excit_wire_mode_enum\"1\n\x1f\x43reateTEDSAIPosRVDTChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xb4\x03\n%CreateTEDSAIPressureBridgeChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12,\n\x05units\x18\x06 \x01(\x0e\x32\x1b.nidaqmx_grpc.PressureUnitsH\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12>\n\x14voltage_excit_source\x18\x08 \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x01\x12\"\n\x18voltage_excit_source_raw\x18\t \x01(\x05H\x01\x12\x19\n\x11voltage_excit_val\x18\n \x01(\x01\x12\x19\n\x11\x63ustom_scale_name\x18\x0b \x01(\tB\x0c\n\nunits_enumB\x1b\n\x19voltage_excit_source_enum\"8\n&CreateTEDSAIPressureBridgeChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x90\x04\n\x1a\x43reateTEDSAIRTDChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12/\n\x05units\x18\x06 \x01(\x0e\x32\x1e.nidaqmx_grpc.TemperatureUnitsH\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12\x42\n\x11resistance_config\x18\x08 \x01(\x0e\x32%.nidaqmx_grpc.ResistanceConfigurationH\x01\x12\x1f\n\x15resistance_config_raw\x18\t \x01(\x05H\x01\x12>\n\x14\x63urrent_excit_source\x18\n \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x02\x12\"\n\x18\x63urrent_excit_source_raw\x18\x0b \x01(\x05H\x02\x12\x19\n\x11\x63urrent_excit_val\x18\x0c \x01(\x01\x42\x0c\n\nunits_enumB\x18\n\x16resistance_config_enumB\x1b\n\x19\x63urrent_excit_source_enum\"-\n\x1b\x43reateTEDSAIRTDChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xab\x04\n!CreateTEDSAIResistanceChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12(\n\x05units\x18\x06 \x01(\x0e\x32\x17.nidaqmx_grpc.TEDSUnitsH\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12\x42\n\x11resistance_config\x18\x08 \x01(\x0e\x32%.nidaqmx_grpc.ResistanceConfigurationH\x01\x12\x1f\n\x15resistance_config_raw\x18\t \x01(\x05H\x01\x12>\n\x14\x63urrent_excit_source\x18\n \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x02\x12\"\n\x18\x63urrent_excit_source_raw\x18\x0b \x01(\x05H\x02\x12\x19\n\x11\x63urrent_excit_val\x18\x0c \x01(\x01\x12\x19\n\x11\x63ustom_scale_name\x18\r \x01(\tB\x0c\n\nunits_enumB\x18\n\x16resistance_config_enumB\x1b\n\x19\x63urrent_excit_source_enum\"4\n\"CreateTEDSAIResistanceChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xed\x03\n!CreateTEDSAIStrainGageChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12+\n\x05units\x18\x06 \x01(\x0e\x32\x1a.nidaqmx_grpc.StrainUnits1H\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12>\n\x14voltage_excit_source\x18\x08 \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x01\x12\"\n\x18voltage_excit_source_raw\x18\t \x01(\x05H\x01\x12\x19\n\x11voltage_excit_val\x18\n \x01(\x01\x12\x1e\n\x16initial_bridge_voltage\x18\x0b \x01(\x01\x12\x1c\n\x14lead_wire_resistance\x18\x0c \x01(\x01\x12\x19\n\x11\x63ustom_scale_name\x18\r \x01(\tB\x0c\n\nunits_enumB\x1b\n\x19voltage_excit_source_enum\"4\n\"CreateTEDSAIStrainGageChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xfc\x02\n\x1e\x43reateTEDSAIThrmcplChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12/\n\x05units\x18\x06 \x01(\x0e\x32\x1e.nidaqmx_grpc.TemperatureUnitsH\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12.\n\ncjc_source\x18\x08 \x01(\x0e\x32\x18.nidaqmx_grpc.CJCSource1H\x01\x12\x18\n\x0e\x63jc_source_raw\x18\t \x01(\x05H\x01\x12\x0f\n\x07\x63jc_val\x18\n \x01(\x01\x12\x13\n\x0b\x63jc_channel\x18\x0b \x01(\tB\x0c\n\nunits_enumB\x11\n\x0f\x63jc_source_enum\"1\n\x1f\x43reateTEDSAIThrmcplChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x97\x04\n!CreateTEDSAIThrmstrChanIexRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12/\n\x05units\x18\x06 \x01(\x0e\x32\x1e.nidaqmx_grpc.TemperatureUnitsH\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12\x42\n\x11resistance_config\x18\x08 \x01(\x0e\x32%.nidaqmx_grpc.ResistanceConfigurationH\x01\x12\x1f\n\x15resistance_config_raw\x18\t \x01(\x05H\x01\x12>\n\x14\x63urrent_excit_source\x18\n \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x02\x12\"\n\x18\x63urrent_excit_source_raw\x18\x0b \x01(\x05H\x02\x12\x19\n\x11\x63urrent_excit_val\x18\x0c \x01(\x01\x42\x0c\n\nunits_enumB\x18\n\x16resistance_config_enumB\x1b\n\x19\x63urrent_excit_source_enum\"4\n\"CreateTEDSAIThrmstrChanIexResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xa3\x04\n!CreateTEDSAIThrmstrChanVexRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12/\n\x05units\x18\x06 \x01(\x0e\x32\x1e.nidaqmx_grpc.TemperatureUnitsH\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12\x42\n\x11resistance_config\x18\x08 \x01(\x0e\x32%.nidaqmx_grpc.ResistanceConfigurationH\x01\x12\x1f\n\x15resistance_config_raw\x18\t \x01(\x05H\x01\x12>\n\x14voltage_excit_source\x18\n \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x02\x12\"\n\x18voltage_excit_source_raw\x18\x0b \x01(\x05H\x02\x12\x19\n\x11voltage_excit_val\x18\x0c \x01(\x01\x12\n\n\x02r1\x18\r \x01(\x01\x42\x0c\n\nunits_enumB\x18\n\x16resistance_config_enumB\x1b\n\x19voltage_excit_source_enum\"4\n\"CreateTEDSAIThrmstrChanVexResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xb0\x03\n#CreateTEDSAITorqueBridgeChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12\x0f\n\x07min_val\x18\x04 \x01(\x01\x12\x0f\n\x07max_val\x18\x05 \x01(\x01\x12*\n\x05units\x18\x06 \x01(\x0e\x32\x19.nidaqmx_grpc.TorqueUnitsH\x00\x12\x13\n\tunits_raw\x18\x07 \x01(\x05H\x00\x12>\n\x14voltage_excit_source\x18\x08 \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x01\x12\"\n\x18voltage_excit_source_raw\x18\t \x01(\x05H\x01\x12\x19\n\x11voltage_excit_val\x18\n \x01(\x01\x12\x19\n\x11\x63ustom_scale_name\x18\x0b \x01(\tB\x0c\n\nunits_enumB\x1b\n\x19voltage_excit_source_enum\"6\n$CreateTEDSAITorqueBridgeChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x86\x03\n\x1e\x43reateTEDSAIVoltageChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12@\n\x0fterminal_config\x18\x04 \x01(\x0e\x32%.nidaqmx_grpc.InputTermCfgWithDefaultH\x00\x12\x1d\n\x13terminal_config_raw\x18\x05 \x01(\x05H\x00\x12\x0f\n\x07min_val\x18\x06 \x01(\x01\x12\x0f\n\x07max_val\x18\x07 \x01(\x01\x12(\n\x05units\x18\x08 \x01(\x0e\x32\x17.nidaqmx_grpc.TEDSUnitsH\x01\x12\x13\n\tunits_raw\x18\t \x01(\x05H\x01\x12\x19\n\x11\x63ustom_scale_name\x18\n \x01(\tB\x16\n\x14terminal_config_enumB\x0c\n\nunits_enum\"1\n\x1f\x43reateTEDSAIVoltageChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xab\x04\n\'CreateTEDSAIVoltageChanWithExcitRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10physical_channel\x18\x02 \x01(\t\x12!\n\x19name_to_assign_to_channel\x18\x03 \x01(\t\x12@\n\x0fterminal_config\x18\x04 \x01(\x0e\x32%.nidaqmx_grpc.InputTermCfgWithDefaultH\x00\x12\x1d\n\x13terminal_config_raw\x18\x05 \x01(\x05H\x00\x12\x0f\n\x07min_val\x18\x06 \x01(\x01\x12\x0f\n\x07max_val\x18\x07 \x01(\x01\x12(\n\x05units\x18\x08 \x01(\x0e\x32\x17.nidaqmx_grpc.TEDSUnitsH\x01\x12\x13\n\tunits_raw\x18\t \x01(\x05H\x01\x12>\n\x14voltage_excit_source\x18\n \x01(\x0e\x32\x1e.nidaqmx_grpc.ExcitationSourceH\x02\x12\"\n\x18voltage_excit_source_raw\x18\x0b \x01(\x05H\x02\x12\x19\n\x11voltage_excit_val\x18\x0c \x01(\x01\x12\x19\n\x11\x63ustom_scale_name\x18\r \x01(\tB\x16\n\x14terminal_config_enumB\x0c\n\nunits_enumB\x1b\n\x19voltage_excit_source_enum\":\n(CreateTEDSAIVoltageChanWithExcitResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xdd\x01\n\x17\x43reateTableScaleRequest\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x16\n\x0eprescaled_vals\x18\x02 \x03(\x01\x12\x13\n\x0bscaled_vals\x18\x03 \x03(\x01\x12\x38\n\x10pre_scaled_units\x18\x04 \x01(\x0e\x32\x1c.nidaqmx_grpc.UnitsPreScaledH\x00\x12\x1e\n\x14pre_scaled_units_raw\x18\x05 \x01(\x05H\x00\x12\x14\n\x0cscaled_units\x18\x06 \x01(\tB\x17\n\x15pre_scaled_units_enum\"*\n\x18\x43reateTableScaleResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"x\n\x11\x43reateTaskRequest\x12\x14\n\x0csession_name\x18\x01 \x01(\t\x12M\n\x17initialization_behavior\x18\x02 \x01(\x0e\x32,.nidevice_grpc.SessionInitializationBehavior\"k\n\x12\x43reateTaskResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12$\n\x04task\x18\x02 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1f\n\x17new_session_initialized\x18\x03 \x01(\x08\"\xea\x01\n\x1e\x43reateWatchdogTimerTaskRequest\x12\x13\n\x0b\x64\x65vice_name\x18\x01 \x01(\t\x12\x14\n\x0csession_name\x18\x02 \x01(\t\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12=\n\nexp_states\x18\x04 \x03(\x0b\x32).nidaqmx_grpc.WatchdogExpChannelsAndState\x12M\n\x17initialization_behavior\x18\x05 \x01(\x0e\x32,.nidevice_grpc.SessionInitializationBehavior\"x\n\x1f\x43reateWatchdogTimerTaskResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12$\n\x04task\x18\x02 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1f\n\x17new_session_initialized\x18\x03 \x01(\x08\"\xad\x01\n CreateWatchdogTimerTaskExRequest\x12\x13\n\x0b\x64\x65vice_name\x18\x01 \x01(\t\x12\x14\n\x0csession_name\x18\x02 \x01(\t\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12M\n\x17initialization_behavior\x18\x04 \x01(\x0e\x32,.nidevice_grpc.SessionInitializationBehavior\"z\n!CreateWatchdogTimerTaskExResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12$\n\x04task\x18\x02 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1f\n\x17new_session_initialized\x18\x03 \x01(\x08\"1\n\x1a\x44\x65leteNetworkDeviceRequest\x12\x13\n\x0b\x64\x65vice_name\x18\x01 \x01(\t\"-\n\x1b\x44\x65leteNetworkDeviceResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"4\n\x1c\x44\x65leteSavedGlobalChanRequest\x12\x14\n\x0c\x63hannel_name\x18\x01 \x01(\t\"/\n\x1d\x44\x65leteSavedGlobalChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"-\n\x17\x44\x65leteSavedScaleRequest\x12\x12\n\nscale_name\x18\x01 \x01(\t\"*\n\x18\x44\x65leteSavedScaleResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"+\n\x16\x44\x65leteSavedTaskRequest\x12\x11\n\ttask_name\x18\x01 \x01(\t\")\n\x17\x44\x65leteSavedTaskResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"/\n\x18\x44\x65viceSupportsCalRequest\x12\x13\n\x0b\x64\x65vice_name\x18\x01 \x01(\t\"B\n\x19\x44\x65viceSupportsCalResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x15\n\rcal_supported\x18\x02 \x01(\x08\"=\n\x15\x44isableRefTrigRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\"(\n\x16\x44isableRefTrigResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"?\n\x17\x44isableStartTrigRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\"*\n\x18\x44isableStartTrigResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"O\n\x16\x44isconnectTermsRequest\x12\x17\n\x0fsource_terminal\x18\x01 \x01(\t\x12\x1c\n\x14\x64\x65stination_terminal\x18\x02 \x01(\t\")\n\x17\x44isconnectTermsResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xaa\x01\n\x13\x45xportSignalRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12)\n\tsignal_id\x18\x02 \x01(\x0e\x32\x14.nidaqmx_grpc.SignalH\x00\x12\x17\n\rsignal_id_raw\x18\x03 \x01(\x05H\x00\x12\x17\n\x0foutput_terminal\x18\x04 \x01(\tB\x10\n\x0esignal_id_enum\"&\n\x14\x45xportSignalResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"X\n\x1aGetAIChanCalCalDateRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x14\n\x0c\x63hannel_name\x18\x02 \x01(\t\"u\n\x1bGetAIChanCalCalDateResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x0c\n\x04year\x18\x02 \x01(\r\x12\r\n\x05month\x18\x03 \x01(\r\x12\x0b\n\x03\x64\x61y\x18\x04 \x01(\r\x12\x0c\n\x04hour\x18\x05 \x01(\r\x12\x0e\n\x06minute\x18\x06 \x01(\r\"X\n\x1aGetAIChanCalExpDateRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x14\n\x0c\x63hannel_name\x18\x02 \x01(\t\"u\n\x1bGetAIChanCalExpDateResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x0c\n\x04year\x18\x02 \x01(\r\x12\r\n\x05month\x18\x03 \x01(\r\x12\x0b\n\x03\x64\x61y\x18\x04 \x01(\r\x12\x0c\n\x04hour\x18\x05 \x01(\r\x12\x0e\n\x06minute\x18\x06 \x01(\r\"q\n\x1dGetAnalogPowerUpStatesRequest\x12\x13\n\x0b\x64\x65vice_name\x18\x01 \x01(\t\x12;\n\x08\x63hannels\x18\x02 \x03(\x0b\x32).nidaqmx_grpc.AnalogPowerUpChannelAndType\"I\n\x1eGetAnalogPowerUpStatesResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x17\n\x0fpower_up_states\x18\x02 \x03(\x01\"X\n+GetAnalogPowerUpStatesWithOutputTypeRequest\x12\x15\n\rchannel_names\x18\x01 \x01(\t\x12\x12\n\narray_size\x18\x02 \x01(\r\"\xb1\x01\n,GetAnalogPowerUpStatesWithOutputTypeResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x13\n\x0bstate_array\x18\x02 \x03(\x01\x12<\n\x12\x63hannel_type_array\x18\x03 \x03(\x0e\x32 .nidaqmx_grpc.PowerUpChannelType\x12\x1e\n\x16\x63hannel_type_array_raw\x18\x04 \x03(\x05\"J\n\"GetArmStartTrigTimestampValRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\"_\n#GetArmStartTrigTimestampValResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"F\n\x1eGetArmStartTrigTrigWhenRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\"[\n\x1fGetArmStartTrigTrigWhenResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"-\n+GetAutoConfiguredCDAQSyncConnectionsRequest\"Q\n,GetAutoConfiguredCDAQSyncConnectionsResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x11\n\tport_list\x18\x02 \x01(\t\"\xac\x01\n\x1fGetBufferAttributeUInt32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x38\n\tattribute\x18\x02 \x01(\x0e\x32#.nidaqmx_grpc.BufferUInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"A\n GetBufferAttributeUInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\r\"\xa1\x01\n\x1eGetCalInfoAttributeBoolRequest\x12\x13\n\x0b\x64\x65vice_name\x18\x01 \x01(\t\x12?\n\tattribute\x18\x02 \x01(\x0e\x32*.nidaqmx_grpc.CalibrationInfoBoolAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"@\n\x1fGetCalInfoAttributeBoolResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x08\"\xa5\x01\n GetCalInfoAttributeDoubleRequest\x12\x13\n\x0b\x64\x65vice_name\x18\x01 \x01(\t\x12\x41\n\tattribute\x18\x02 \x01(\x0e\x32,.nidaqmx_grpc.CalibrationInfoDoubleAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"B\n!GetCalInfoAttributeDoubleResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x01\"\xa5\x01\n GetCalInfoAttributeStringRequest\x12\x13\n\x0b\x64\x65vice_name\x18\x01 \x01(\t\x12\x41\n\tattribute\x18\x02 \x01(\x0e\x32,.nidaqmx_grpc.CalibrationInfoStringAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"B\n!GetCalInfoAttributeStringResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\t\"\xa5\x01\n GetCalInfoAttributeUInt32Request\x12\x13\n\x0b\x64\x65vice_name\x18\x01 \x01(\t\x12\x41\n\tattribute\x18\x02 \x01(\x0e\x32,.nidaqmx_grpc.CalibrationInfoUInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"B\n!GetCalInfoAttributeUInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\r\"\xb8\x01\n\x1bGetChanAttributeBoolRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07\x63hannel\x18\x02 \x01(\t\x12\x37\n\tattribute\x18\x03 \x01(\x0e\x32\".nidaqmx_grpc.ChannelBoolAttributeH\x00\x12\x17\n\rattribute_raw\x18\x04 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"=\n\x1cGetChanAttributeBoolResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x08\"\xbc\x01\n\x1dGetChanAttributeDoubleRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07\x63hannel\x18\x02 \x01(\t\x12\x39\n\tattribute\x18\x03 \x01(\x0e\x32$.nidaqmx_grpc.ChannelDoubleAttributeH\x00\x12\x17\n\rattribute_raw\x18\x04 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"?\n\x1eGetChanAttributeDoubleResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x01\"\xc6\x01\n\"GetChanAttributeDoubleArrayRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07\x63hannel\x18\x02 \x01(\t\x12>\n\tattribute\x18\x03 \x01(\x0e\x32).nidaqmx_grpc.ChannelDoubleArrayAttributeH\x00\x12\x17\n\rattribute_raw\x18\x04 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"D\n#GetChanAttributeDoubleArrayResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x03(\x01\"\xba\x01\n\x1cGetChanAttributeInt32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07\x63hannel\x18\x02 \x01(\t\x12\x38\n\tattribute\x18\x03 \x01(\x0e\x32#.nidaqmx_grpc.ChannelInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x04 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"|\n\x1dGetChanAttributeInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x38\n\x05value\x18\x02 \x01(\x0e\x32).nidaqmx_grpc.ChannelInt32AttributeValues\x12\x11\n\tvalue_raw\x18\x03 \x01(\x05\"\xbc\x01\n\x1dGetChanAttributeStringRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07\x63hannel\x18\x02 \x01(\t\x12\x39\n\tattribute\x18\x03 \x01(\x0e\x32$.nidaqmx_grpc.ChannelStringAttributeH\x00\x12\x17\n\rattribute_raw\x18\x04 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"?\n\x1eGetChanAttributeStringResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\t\"\xbc\x01\n\x1dGetChanAttributeUInt32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07\x63hannel\x18\x02 \x01(\t\x12\x39\n\tattribute\x18\x03 \x01(\x0e\x32$.nidaqmx_grpc.ChannelUInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x04 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"?\n\x1eGetChanAttributeUInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\r\"\x97\x01\n\x1dGetDeviceAttributeBoolRequest\x12\x13\n\x0b\x64\x65vice_name\x18\x01 \x01(\t\x12\x36\n\tattribute\x18\x02 \x01(\x0e\x32!.nidaqmx_grpc.DeviceBoolAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"?\n\x1eGetDeviceAttributeBoolResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x08\"\x9b\x01\n\x1fGetDeviceAttributeDoubleRequest\x12\x13\n\x0b\x64\x65vice_name\x18\x01 \x01(\t\x12\x38\n\tattribute\x18\x02 \x01(\x0e\x32#.nidaqmx_grpc.DeviceDoubleAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"A\n GetDeviceAttributeDoubleResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x01\"\xa5\x01\n$GetDeviceAttributeDoubleArrayRequest\x12\x13\n\x0b\x64\x65vice_name\x18\x01 \x01(\t\x12=\n\tattribute\x18\x02 \x01(\x0e\x32(.nidaqmx_grpc.DeviceDoubleArrayAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"F\n%GetDeviceAttributeDoubleArrayResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x03(\x01\"\x99\x01\n\x1eGetDeviceAttributeInt32Request\x12\x13\n\x0b\x64\x65vice_name\x18\x01 \x01(\t\x12\x37\n\tattribute\x18\x02 \x01(\x0e\x32\".nidaqmx_grpc.DeviceInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"}\n\x1fGetDeviceAttributeInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x37\n\x05value\x18\x02 \x01(\x0e\x32(.nidaqmx_grpc.DeviceInt32AttributeValues\x12\x11\n\tvalue_raw\x18\x03 \x01(\x05\"\xa3\x01\n#GetDeviceAttributeInt32ArrayRequest\x12\x13\n\x0b\x64\x65vice_name\x18\x01 \x01(\t\x12<\n\tattribute\x18\x02 \x01(\x0e\x32\'.nidaqmx_grpc.DeviceInt32ArrayAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"\x82\x01\n$GetDeviceAttributeInt32ArrayResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x37\n\x05value\x18\x02 \x03(\x0e\x32(.nidaqmx_grpc.DeviceInt32AttributeValues\x12\x11\n\tvalue_raw\x18\x03 \x03(\x05\"\x9b\x01\n\x1fGetDeviceAttributeStringRequest\x12\x13\n\x0b\x64\x65vice_name\x18\x01 \x01(\t\x12\x38\n\tattribute\x18\x02 \x01(\x0e\x32#.nidaqmx_grpc.DeviceStringAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"A\n GetDeviceAttributeStringResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\t\"\x9b\x01\n\x1fGetDeviceAttributeUInt32Request\x12\x13\n\x0b\x64\x65vice_name\x18\x01 \x01(\t\x12\x38\n\tattribute\x18\x02 \x01(\x0e\x32#.nidaqmx_grpc.DeviceUInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"A\n GetDeviceAttributeUInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\r\"\xa5\x01\n$GetDeviceAttributeUInt32ArrayRequest\x12\x13\n\x0b\x64\x65vice_name\x18\x01 \x01(\t\x12=\n\tattribute\x18\x02 \x01(\x0e\x32(.nidaqmx_grpc.DeviceUInt32ArrayAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"F\n%GetDeviceAttributeUInt32ArrayResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x03(\r\"?\n(GetDigitalLogicFamilyPowerUpStateRequest\x12\x13\n\x0b\x64\x65vice_name\x18\x01 \x01(\t\"Q\n)GetDigitalLogicFamilyPowerUpStateResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x14\n\x0clogic_family\x18\x02 \x01(\x05\"K\n\x1eGetDigitalPowerUpStatesRequest\x12\x13\n\x0b\x64\x65vice_name\x18\x01 \x01(\t\x12\x14\n\x0c\x63hannel_name\x18\x02 \x03(\t\"g\n\x1fGetDigitalPowerUpStatesResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x34\n\x0fpower_up_states\x18\x02 \x03(\x0e\x32\x1b.nidaqmx_grpc.PowerUpStates\"R\n%GetDigitalPullUpPullDownStatesRequest\x12\x13\n\x0b\x64\x65vice_name\x18\x01 \x01(\t\x12\x14\n\x0c\x63hannel_name\x18\x02 \x03(\t\"w\n&GetDigitalPullUpPullDownStatesResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12=\n\x18pull_up_pull_down_states\x18\x02 \x03(\x0e\x32\x1b.nidaqmx_grpc.ResistorState\"%\n#GetDisconnectedCDAQSyncPortsRequest\"I\n$GetDisconnectedCDAQSyncPortsResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x11\n\tport_list\x18\x02 \x01(\t\"+\n\x15GetErrorStringRequest\x12\x12\n\nerror_code\x18\x01 \x01(\x05\">\n\x16GetErrorStringResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x14\n\x0c\x65rror_string\x18\x02 \x01(\t\"\xb6\x01\n%GetExportedSignalAttributeBoolRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12<\n\tattribute\x18\x02 \x01(\x0e\x32\'.nidaqmx_grpc.ExportSignalBoolAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"G\n&GetExportedSignalAttributeBoolResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x08\"\xba\x01\n\'GetExportedSignalAttributeDoubleRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12>\n\tattribute\x18\x02 \x01(\x0e\x32).nidaqmx_grpc.ExportSignalDoubleAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"I\n(GetExportedSignalAttributeDoubleResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x01\"\xb8\x01\n&GetExportedSignalAttributeInt32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12=\n\tattribute\x18\x02 \x01(\x0e\x32(.nidaqmx_grpc.ExportSignalInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"\x8b\x01\n\'GetExportedSignalAttributeInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12=\n\x05value\x18\x02 \x01(\x0e\x32..nidaqmx_grpc.ExportSignalInt32AttributeValues\x12\x11\n\tvalue_raw\x18\x03 \x01(\x05\"\xba\x01\n\'GetExportedSignalAttributeStringRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12>\n\tattribute\x18\x02 \x01(\x0e\x32).nidaqmx_grpc.ExportSignalStringAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"I\n(GetExportedSignalAttributeStringResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\t\"\xba\x01\n\'GetExportedSignalAttributeUInt32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12>\n\tattribute\x18\x02 \x01(\x0e\x32).nidaqmx_grpc.ExportSignalUInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"I\n(GetExportedSignalAttributeUInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\r\"6\n\x1fGetExtCalLastDateAndTimeRequest\x12\x13\n\x0b\x64\x65vice_name\x18\x01 \x01(\t\"z\n GetExtCalLastDateAndTimeResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x0c\n\x04year\x18\x02 \x01(\r\x12\r\n\x05month\x18\x03 \x01(\r\x12\x0b\n\x03\x64\x61y\x18\x04 \x01(\r\x12\x0c\n\x04hour\x18\x05 \x01(\r\x12\x0e\n\x06minute\x18\x06 \x01(\r\"B\n\x1aGetFirstSampClkWhenRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\"W\n\x1bGetFirstSampClkWhenResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"G\n\x1fGetFirstSampTimestampValRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\"\\\n GetFirstSampTimestampValResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"O\n\x18GetNthTaskChannelRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\r\n\x05index\x18\x02 \x01(\r\";\n\x19GetNthTaskChannelResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x0e\n\x06\x62uffer\x18\x02 \x01(\t\"N\n\x17GetNthTaskDeviceRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\r\n\x05index\x18\x02 \x01(\r\":\n\x18GetNthTaskDeviceResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x0e\n\x06\x62uffer\x18\x02 \x01(\t\"S\n\x1cGetNthTaskReadChannelRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\r\n\x05index\x18\x02 \x01(\r\"?\n\x1dGetNthTaskReadChannelResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x0e\n\x06\x62uffer\x18\x02 \x01(\t\"\xa4\x01\n$GetPersistedChanAttributeBoolRequest\x12\x0f\n\x07\x63hannel\x18\x01 \x01(\t\x12@\n\tattribute\x18\x02 \x01(\x0e\x32+.nidaqmx_grpc.PersistedChannelBoolAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"F\n%GetPersistedChanAttributeBoolResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x08\"\xa8\x01\n&GetPersistedChanAttributeStringRequest\x12\x0f\n\x07\x63hannel\x18\x01 \x01(\t\x12\x42\n\tattribute\x18\x02 \x01(\x0e\x32-.nidaqmx_grpc.PersistedChannelStringAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"H\n\'GetPersistedChanAttributeStringResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\t\"\xa6\x01\n%GetPersistedScaleAttributeBoolRequest\x12\x12\n\nscale_name\x18\x01 \x01(\t\x12>\n\tattribute\x18\x02 \x01(\x0e\x32).nidaqmx_grpc.PersistedScaleBoolAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"G\n&GetPersistedScaleAttributeBoolResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x08\"\xaa\x01\n\'GetPersistedScaleAttributeStringRequest\x12\x12\n\nscale_name\x18\x01 \x01(\t\x12@\n\tattribute\x18\x02 \x01(\x0e\x32+.nidaqmx_grpc.PersistedScaleStringAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"I\n(GetPersistedScaleAttributeStringResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\t\"\xa3\x01\n$GetPersistedTaskAttributeBoolRequest\x12\x11\n\ttask_name\x18\x01 \x01(\t\x12=\n\tattribute\x18\x02 \x01(\x0e\x32(.nidaqmx_grpc.PersistedTaskBoolAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"F\n%GetPersistedTaskAttributeBoolResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x08\"\xa7\x01\n&GetPersistedTaskAttributeStringRequest\x12\x11\n\ttask_name\x18\x01 \x01(\t\x12?\n\tattribute\x18\x02 \x01(\x0e\x32*.nidaqmx_grpc.PersistedTaskStringAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"H\n\'GetPersistedTaskAttributeStringResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\t\"\xab\x01\n#GetPhysicalChanAttributeBoolRequest\x12\x18\n\x10physical_channel\x18\x01 \x01(\t\x12?\n\tattribute\x18\x02 \x01(\x0e\x32*.nidaqmx_grpc.PhysicalChannelBoolAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"E\n$GetPhysicalChanAttributeBoolResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x08\"\xad\x01\n$GetPhysicalChanAttributeBytesRequest\x12\x18\n\x10physical_channel\x18\x01 \x01(\t\x12@\n\tattribute\x18\x02 \x01(\x0e\x32+.nidaqmx_grpc.PhysicalChannelBytesAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"F\n%GetPhysicalChanAttributeBytesResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x0c\"\xaf\x01\n%GetPhysicalChanAttributeDoubleRequest\x12\x18\n\x10physical_channel\x18\x01 \x01(\t\x12\x41\n\tattribute\x18\x02 \x01(\x0e\x32,.nidaqmx_grpc.PhysicalChannelDoubleAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"G\n&GetPhysicalChanAttributeDoubleResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x01\"\xb9\x01\n*GetPhysicalChanAttributeDoubleArrayRequest\x12\x18\n\x10physical_channel\x18\x01 \x01(\t\x12\x46\n\tattribute\x18\x02 \x01(\x0e\x32\x31.nidaqmx_grpc.PhysicalChannelDoubleArrayAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"L\n+GetPhysicalChanAttributeDoubleArrayResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x03(\x01\"\xad\x01\n$GetPhysicalChanAttributeInt32Request\x12\x18\n\x10physical_channel\x18\x01 \x01(\t\x12@\n\tattribute\x18\x02 \x01(\x0e\x32+.nidaqmx_grpc.PhysicalChannelInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"\x8c\x01\n%GetPhysicalChanAttributeInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12@\n\x05value\x18\x02 \x01(\x0e\x32\x31.nidaqmx_grpc.PhysicalChannelInt32AttributeValues\x12\x11\n\tvalue_raw\x18\x03 \x01(\x05\"\xb7\x01\n)GetPhysicalChanAttributeInt32ArrayRequest\x12\x18\n\x10physical_channel\x18\x01 \x01(\t\x12\x45\n\tattribute\x18\x02 \x01(\x0e\x32\x30.nidaqmx_grpc.PhysicalChannelInt32ArrayAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"\x91\x01\n*GetPhysicalChanAttributeInt32ArrayResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12@\n\x05value\x18\x02 \x03(\x0e\x32\x31.nidaqmx_grpc.PhysicalChannelInt32AttributeValues\x12\x11\n\tvalue_raw\x18\x03 \x03(\x05\"\xaf\x01\n%GetPhysicalChanAttributeStringRequest\x12\x18\n\x10physical_channel\x18\x01 \x01(\t\x12\x41\n\tattribute\x18\x02 \x01(\x0e\x32,.nidaqmx_grpc.PhysicalChannelStringAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"G\n&GetPhysicalChanAttributeStringResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\t\"\xaf\x01\n%GetPhysicalChanAttributeUInt32Request\x12\x18\n\x10physical_channel\x18\x01 \x01(\t\x12\x41\n\tattribute\x18\x02 \x01(\x0e\x32,.nidaqmx_grpc.PhysicalChannelUInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"G\n&GetPhysicalChanAttributeUInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\r\"\xb9\x01\n*GetPhysicalChanAttributeUInt32ArrayRequest\x12\x18\n\x10physical_channel\x18\x01 \x01(\t\x12\x46\n\tattribute\x18\x02 \x01(\x0e\x32\x31.nidaqmx_grpc.PhysicalChannelUInt32ArrayAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"L\n+GetPhysicalChanAttributeUInt32ArrayResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x03(\r\"\xa4\x01\n\x1bGetReadAttributeBoolRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x34\n\tattribute\x18\x02 \x01(\x0e\x32\x1f.nidaqmx_grpc.ReadBoolAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"=\n\x1cGetReadAttributeBoolResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x08\"\xa8\x01\n\x1dGetReadAttributeDoubleRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x36\n\tattribute\x18\x02 \x01(\x0e\x32!.nidaqmx_grpc.ReadDoubleAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"?\n\x1eGetReadAttributeDoubleResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x01\"\xa6\x01\n\x1cGetReadAttributeInt32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x35\n\tattribute\x18\x02 \x01(\x0e\x32 .nidaqmx_grpc.ReadInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"y\n\x1dGetReadAttributeInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x35\n\x05value\x18\x02 \x01(\x0e\x32&.nidaqmx_grpc.ReadInt32AttributeValues\x12\x11\n\tvalue_raw\x18\x03 \x01(\x05\"\xa8\x01\n\x1dGetReadAttributeStringRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x36\n\tattribute\x18\x02 \x01(\x0e\x32!.nidaqmx_grpc.ReadStringAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"?\n\x1eGetReadAttributeStringResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\t\"\xa8\x01\n\x1dGetReadAttributeUInt32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x36\n\tattribute\x18\x02 \x01(\x0e\x32!.nidaqmx_grpc.ReadUInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"?\n\x1eGetReadAttributeUInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\r\"\xa8\x01\n\x1dGetReadAttributeUInt64Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x36\n\tattribute\x18\x02 \x01(\x0e\x32!.nidaqmx_grpc.ReadUInt64AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"?\n\x1eGetReadAttributeUInt64Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x04\"\xac\x01\n\x1fGetRealTimeAttributeBoolRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x38\n\tattribute\x18\x02 \x01(\x0e\x32#.nidaqmx_grpc.RealTimeBoolAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"A\n GetRealTimeAttributeBoolResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x08\"\xae\x01\n GetRealTimeAttributeInt32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x39\n\tattribute\x18\x02 \x01(\x0e\x32$.nidaqmx_grpc.RealTimeInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"\x81\x01\n!GetRealTimeAttributeInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x39\n\x05value\x18\x02 \x01(\x0e\x32*.nidaqmx_grpc.RealTimeInt32AttributeValues\x12\x11\n\tvalue_raw\x18\x03 \x01(\x05\"\xb0\x01\n!GetRealTimeAttributeUInt32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12:\n\tattribute\x18\x02 \x01(\x0e\x32%.nidaqmx_grpc.RealTimeUInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"C\n\"GetRealTimeAttributeUInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\r\"E\n\x1dGetRefTrigTimestampValRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\"Z\n\x1eGetRefTrigTimestampValResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"\x98\x01\n\x1eGetScaleAttributeDoubleRequest\x12\x12\n\nscale_name\x18\x01 \x01(\t\x12\x37\n\tattribute\x18\x02 \x01(\x0e\x32\".nidaqmx_grpc.ScaleDoubleAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"@\n\x1fGetScaleAttributeDoubleResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x01\"\xa2\x01\n#GetScaleAttributeDoubleArrayRequest\x12\x12\n\nscale_name\x18\x01 \x01(\t\x12<\n\tattribute\x18\x02 \x01(\x0e\x32\'.nidaqmx_grpc.ScaleDoubleArrayAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"E\n$GetScaleAttributeDoubleArrayResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x03(\x01\"\x96\x01\n\x1dGetScaleAttributeInt32Request\x12\x12\n\nscale_name\x18\x01 \x01(\t\x12\x36\n\tattribute\x18\x02 \x01(\x0e\x32!.nidaqmx_grpc.ScaleInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"{\n\x1eGetScaleAttributeInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x36\n\x05value\x18\x02 \x01(\x0e\x32\'.nidaqmx_grpc.ScaleInt32AttributeValues\x12\x11\n\tvalue_raw\x18\x03 \x01(\x05\"\x98\x01\n\x1eGetScaleAttributeStringRequest\x12\x12\n\nscale_name\x18\x01 \x01(\t\x12\x37\n\tattribute\x18\x02 \x01(\x0e\x32\".nidaqmx_grpc.ScaleStringAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"@\n\x1fGetScaleAttributeStringResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\t\"7\n GetSelfCalLastDateAndTimeRequest\x12\x13\n\x0b\x64\x65vice_name\x18\x01 \x01(\t\"{\n!GetSelfCalLastDateAndTimeResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x0c\n\x04year\x18\x02 \x01(\r\x12\r\n\x05month\x18\x03 \x01(\r\x12\x0b\n\x03\x64\x61y\x18\x04 \x01(\r\x12\x0c\n\x04hour\x18\x05 \x01(\r\x12\x0e\n\x06minute\x18\x06 \x01(\r\"G\n\x1fGetStartTrigTimestampValRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\"\\\n GetStartTrigTimestampValResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"C\n\x1bGetStartTrigTrigWhenRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\"X\n\x1cGetStartTrigTrigWhenResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"C\n\x1bGetSyncPulseTimeWhenRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\"X\n\x1cGetSyncPulseTimeWhenResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"\x8a\x01\n#GetSystemInfoAttributeStringRequest\x12\x38\n\tattribute\x18\x01 \x01(\x0e\x32#.nidaqmx_grpc.SystemStringAttributeH\x00\x12\x17\n\rattribute_raw\x18\x02 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"E\n$GetSystemInfoAttributeStringResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\t\"\x8a\x01\n#GetSystemInfoAttributeUInt32Request\x12\x38\n\tattribute\x18\x01 \x01(\x0e\x32#.nidaqmx_grpc.SystemUInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x02 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"E\n$GetSystemInfoAttributeUInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\r\"\xa4\x01\n\x1bGetTaskAttributeBoolRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x34\n\tattribute\x18\x02 \x01(\x0e\x32\x1f.nidaqmx_grpc.TaskBoolAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"=\n\x1cGetTaskAttributeBoolResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x08\"\xa8\x01\n\x1dGetTaskAttributeStringRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x36\n\tattribute\x18\x02 \x01(\x0e\x32!.nidaqmx_grpc.TaskStringAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"?\n\x1eGetTaskAttributeStringResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\t\"\xa8\x01\n\x1dGetTaskAttributeUInt32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x36\n\tattribute\x18\x02 \x01(\x0e\x32!.nidaqmx_grpc.TaskUInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"?\n\x1eGetTaskAttributeUInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\r\"\xa8\x01\n\x1dGetTimingAttributeBoolRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x36\n\tattribute\x18\x02 \x01(\x0e\x32!.nidaqmx_grpc.TimingBoolAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"?\n\x1eGetTimingAttributeBoolResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x08\"\xac\x01\n\x1fGetTimingAttributeDoubleRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x38\n\tattribute\x18\x02 \x01(\x0e\x32#.nidaqmx_grpc.TimingDoubleAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"A\n GetTimingAttributeDoubleResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x01\"\xc0\x01\n\x1fGetTimingAttributeExBoolRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x14\n\x0c\x64\x65vice_names\x18\x02 \x01(\t\x12\x36\n\tattribute\x18\x03 \x01(\x0e\x32!.nidaqmx_grpc.TimingBoolAttributeH\x00\x12\x17\n\rattribute_raw\x18\x04 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"A\n GetTimingAttributeExBoolResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x08\"\xc4\x01\n!GetTimingAttributeExDoubleRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x14\n\x0c\x64\x65vice_names\x18\x02 \x01(\t\x12\x38\n\tattribute\x18\x03 \x01(\x0e\x32#.nidaqmx_grpc.TimingDoubleAttributeH\x00\x12\x17\n\rattribute_raw\x18\x04 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"C\n\"GetTimingAttributeExDoubleResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x01\"\xc2\x01\n GetTimingAttributeExInt32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x14\n\x0c\x64\x65vice_names\x18\x02 \x01(\t\x12\x37\n\tattribute\x18\x03 \x01(\x0e\x32\".nidaqmx_grpc.TimingInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x04 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"\x7f\n!GetTimingAttributeExInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x37\n\x05value\x18\x02 \x01(\x0e\x32(.nidaqmx_grpc.TimingInt32AttributeValues\x12\x11\n\tvalue_raw\x18\x03 \x01(\x05\"\xc4\x01\n!GetTimingAttributeExStringRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x14\n\x0c\x64\x65vice_names\x18\x02 \x01(\t\x12\x38\n\tattribute\x18\x03 \x01(\x0e\x32#.nidaqmx_grpc.TimingStringAttributeH\x00\x12\x17\n\rattribute_raw\x18\x04 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"C\n\"GetTimingAttributeExStringResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\t\"\xca\x01\n$GetTimingAttributeExTimestampRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x14\n\x0c\x64\x65vice_names\x18\x02 \x01(\t\x12;\n\tattribute\x18\x03 \x01(\x0e\x32&.nidaqmx_grpc.TimingTimestampAttributeH\x00\x12\x17\n\rattribute_raw\x18\x04 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"b\n%GetTimingAttributeExTimestampResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12)\n\x05value\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"\xc4\x01\n!GetTimingAttributeExUInt32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x14\n\x0c\x64\x65vice_names\x18\x02 \x01(\t\x12\x38\n\tattribute\x18\x03 \x01(\x0e\x32#.nidaqmx_grpc.TimingUInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x04 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"C\n\"GetTimingAttributeExUInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\r\"\xc4\x01\n!GetTimingAttributeExUInt64Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x14\n\x0c\x64\x65vice_names\x18\x02 \x01(\t\x12\x38\n\tattribute\x18\x03 \x01(\x0e\x32#.nidaqmx_grpc.TimingUInt64AttributeH\x00\x12\x17\n\rattribute_raw\x18\x04 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"C\n\"GetTimingAttributeExUInt64Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x04\"\xaa\x01\n\x1eGetTimingAttributeInt32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x37\n\tattribute\x18\x02 \x01(\x0e\x32\".nidaqmx_grpc.TimingInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"}\n\x1fGetTimingAttributeInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x37\n\x05value\x18\x02 \x01(\x0e\x32(.nidaqmx_grpc.TimingInt32AttributeValues\x12\x11\n\tvalue_raw\x18\x03 \x01(\x05\"\xac\x01\n\x1fGetTimingAttributeStringRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x38\n\tattribute\x18\x02 \x01(\x0e\x32#.nidaqmx_grpc.TimingStringAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"A\n GetTimingAttributeStringResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\t\"\xb2\x01\n\"GetTimingAttributeTimestampRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12;\n\tattribute\x18\x02 \x01(\x0e\x32&.nidaqmx_grpc.TimingTimestampAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"`\n#GetTimingAttributeTimestampResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12)\n\x05value\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"\xac\x01\n\x1fGetTimingAttributeUInt32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x38\n\tattribute\x18\x02 \x01(\x0e\x32#.nidaqmx_grpc.TimingUInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"A\n GetTimingAttributeUInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\r\"\xac\x01\n\x1fGetTimingAttributeUInt64Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x38\n\tattribute\x18\x02 \x01(\x0e\x32#.nidaqmx_grpc.TimingUInt64AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"A\n GetTimingAttributeUInt64Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x04\"\xa7\x01\n\x1bGetTrigAttributeBoolRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x37\n\tattribute\x18\x02 \x01(\x0e\x32\".nidaqmx_grpc.TriggerBoolAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"=\n\x1cGetTrigAttributeBoolResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x08\"\xab\x01\n\x1dGetTrigAttributeDoubleRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x39\n\tattribute\x18\x02 \x01(\x0e\x32$.nidaqmx_grpc.TriggerDoubleAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"?\n\x1eGetTrigAttributeDoubleResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x01\"\xb5\x01\n\"GetTrigAttributeDoubleArrayRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12>\n\tattribute\x18\x02 \x01(\x0e\x32).nidaqmx_grpc.TriggerDoubleArrayAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"D\n#GetTrigAttributeDoubleArrayResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x03(\x01\"\xa9\x01\n\x1cGetTrigAttributeInt32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x38\n\tattribute\x18\x02 \x01(\x0e\x32#.nidaqmx_grpc.TriggerInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"|\n\x1dGetTrigAttributeInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x38\n\x05value\x18\x02 \x01(\x0e\x32).nidaqmx_grpc.TriggerInt32AttributeValues\x12\x11\n\tvalue_raw\x18\x03 \x01(\x05\"\xb3\x01\n!GetTrigAttributeInt32ArrayRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12=\n\tattribute\x18\x02 \x01(\x0e\x32(.nidaqmx_grpc.TriggerInt32ArrayAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"\x81\x01\n\"GetTrigAttributeInt32ArrayResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x38\n\x05value\x18\x02 \x03(\x0e\x32).nidaqmx_grpc.TriggerInt32AttributeValues\x12\x11\n\tvalue_raw\x18\x03 \x03(\x05\"\xab\x01\n\x1dGetTrigAttributeStringRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x39\n\tattribute\x18\x02 \x01(\x0e\x32$.nidaqmx_grpc.TriggerStringAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"?\n\x1eGetTrigAttributeStringResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\t\"\xb1\x01\n GetTrigAttributeTimestampRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12<\n\tattribute\x18\x02 \x01(\x0e\x32\'.nidaqmx_grpc.TriggerTimestampAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"^\n!GetTrigAttributeTimestampResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12)\n\x05value\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"\xab\x01\n\x1dGetTrigAttributeUInt32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x39\n\tattribute\x18\x02 \x01(\x0e\x32$.nidaqmx_grpc.TriggerUInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"?\n\x1eGetTrigAttributeUInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\r\"\xbb\x01\n\x1fGetWatchdogAttributeBoolRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\r\n\x05lines\x18\x02 \x01(\t\x12\x38\n\tattribute\x18\x03 \x01(\x0e\x32#.nidaqmx_grpc.WatchdogBoolAttributeH\x00\x12\x17\n\rattribute_raw\x18\x04 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"A\n GetWatchdogAttributeBoolResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x08\"\xbf\x01\n!GetWatchdogAttributeDoubleRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\r\n\x05lines\x18\x02 \x01(\t\x12:\n\tattribute\x18\x03 \x01(\x0e\x32%.nidaqmx_grpc.WatchdogDoubleAttributeH\x00\x12\x17\n\rattribute_raw\x18\x04 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"C\n\"GetWatchdogAttributeDoubleResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x01\"\xbd\x01\n GetWatchdogAttributeInt32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\r\n\x05lines\x18\x02 \x01(\t\x12\x39\n\tattribute\x18\x03 \x01(\x0e\x32$.nidaqmx_grpc.WatchdogInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x04 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"\x81\x01\n!GetWatchdogAttributeInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x39\n\x05value\x18\x02 \x01(\x0e\x32*.nidaqmx_grpc.WatchdogInt32AttributeValues\x12\x11\n\tvalue_raw\x18\x03 \x01(\x05\"\xbf\x01\n!GetWatchdogAttributeStringRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\r\n\x05lines\x18\x02 \x01(\t\x12:\n\tattribute\x18\x03 \x01(\x0e\x32%.nidaqmx_grpc.WatchdogStringAttributeH\x00\x12\x17\n\rattribute_raw\x18\x04 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"C\n\"GetWatchdogAttributeStringResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\t\"\xa6\x01\n\x1cGetWriteAttributeBoolRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x35\n\tattribute\x18\x02 \x01(\x0e\x32 .nidaqmx_grpc.WriteBoolAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\">\n\x1dGetWriteAttributeBoolResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x08\"\xaa\x01\n\x1eGetWriteAttributeDoubleRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x37\n\tattribute\x18\x02 \x01(\x0e\x32\".nidaqmx_grpc.WriteDoubleAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"@\n\x1fGetWriteAttributeDoubleResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x01\"\xa8\x01\n\x1dGetWriteAttributeInt32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x36\n\tattribute\x18\x02 \x01(\x0e\x32!.nidaqmx_grpc.WriteInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"{\n\x1eGetWriteAttributeInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x36\n\x05value\x18\x02 \x01(\x0e\x32\'.nidaqmx_grpc.WriteInt32AttributeValues\x12\x11\n\tvalue_raw\x18\x03 \x01(\x05\"\xaa\x01\n\x1eGetWriteAttributeStringRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x37\n\tattribute\x18\x02 \x01(\x0e\x32\".nidaqmx_grpc.WriteStringAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"@\n\x1fGetWriteAttributeStringResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\t\"\xaa\x01\n\x1eGetWriteAttributeUInt32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x37\n\tattribute\x18\x02 \x01(\x0e\x32\".nidaqmx_grpc.WriteUInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"@\n\x1fGetWriteAttributeUInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\r\"\xaa\x01\n\x1eGetWriteAttributeUInt64Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x37\n\tattribute\x18\x02 \x01(\x0e\x32\".nidaqmx_grpc.WriteUInt64AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"@\n\x1fGetWriteAttributeUInt64Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x04\"9\n\x11IsTaskDoneRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\":\n\x12IsTaskDoneResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x14\n\x0cis_task_done\x18\x02 \x01(\x08\"v\n\x0fLoadTaskRequest\x12\x14\n\x0csession_name\x18\x01 \x01(\t\x12M\n\x17initialization_behavior\x18\x02 \x01(\x0e\x32,.nidevice_grpc.SessionInitializationBehavior\"i\n\x10LoadTaskResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12$\n\x04task\x18\x02 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1f\n\x17new_session_initialized\x18\x03 \x01(\x08\"\x82\x01\n&PerformBridgeOffsetNullingCalExRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07\x63hannel\x18\x02 \x01(\t\x12!\n\x19skip_unsupported_channels\x18\x03 \x01(\x08\"9\n\'PerformBridgeOffsetNullingCalExResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xc5\x04\n\x1ePerformBridgeShuntCalExRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07\x63hannel\x18\x02 \x01(\t\x12\x1c\n\x14shunt_resistor_value\x18\x03 \x01(\x01\x12\x45\n\x17shunt_resistor_location\x18\x04 \x01(\x0e\x32\".nidaqmx_grpc.ShuntElementLocationH\x00\x12%\n\x1bshunt_resistor_location_raw\x18\x05 \x01(\x05H\x00\x12=\n\x15shunt_resistor_select\x18\x06 \x01(\x0e\x32\x1c.nidaqmx_grpc.ShuntCalSelectH\x01\x12#\n\x19shunt_resistor_select_raw\x18\x07 \x01(\x05H\x01\x12=\n\x15shunt_resistor_source\x18\x08 \x01(\x0e\x32\x1c.nidaqmx_grpc.ShuntCalSourceH\x02\x12#\n\x19shunt_resistor_source_raw\x18\t \x01(\x05H\x02\x12\x19\n\x11\x62ridge_resistance\x18\n \x01(\x01\x12!\n\x19skip_unsupported_channels\x18\x0b \x01(\x08\x42\x1e\n\x1cshunt_resistor_location_enumB\x1c\n\x1ashunt_resistor_select_enumB\x1c\n\x1ashunt_resistor_source_enum\"1\n\x1fPerformBridgeShuntCalExResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xaa\x04\n\x1ePerformStrainShuntCalExRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07\x63hannel\x18\x02 \x01(\t\x12\x1c\n\x14shunt_resistor_value\x18\x03 \x01(\x01\x12\x45\n\x17shunt_resistor_location\x18\x04 \x01(\x0e\x32\".nidaqmx_grpc.ShuntElementLocationH\x00\x12%\n\x1bshunt_resistor_location_raw\x18\x05 \x01(\x05H\x00\x12=\n\x15shunt_resistor_select\x18\x06 \x01(\x0e\x32\x1c.nidaqmx_grpc.ShuntCalSelectH\x01\x12#\n\x19shunt_resistor_select_raw\x18\x07 \x01(\x05H\x01\x12=\n\x15shunt_resistor_source\x18\x08 \x01(\x0e\x32\x1c.nidaqmx_grpc.ShuntCalSourceH\x02\x12#\n\x19shunt_resistor_source_raw\x18\t \x01(\x05H\x02\x12!\n\x19skip_unsupported_channels\x18\n \x01(\x08\x42\x1e\n\x1cshunt_resistor_location_enumB\x1c\n\x1ashunt_resistor_select_enumB\x1c\n\x1ashunt_resistor_source_enum\"1\n\x1fPerformStrainShuntCalExResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x85\x01\n)PerformThrmcplLeadOffsetNullingCalRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07\x63hannel\x18\x02 \x01(\t\x12!\n\x19skip_unsupported_channels\x18\x03 \x01(\x08\"<\n*PerformThrmcplLeadOffsetNullingCalResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xdd\x01\n\x14ReadAnalogF64Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12*\n\tfill_mode\x18\x04 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x17\n\rfill_mode_raw\x18\x05 \x01(\x05H\x00\x12\x1b\n\x13\x61rray_size_in_samps\x18\x06 \x01(\rB\x10\n\x0e\x66ill_mode_enum\"X\n\x15ReadAnalogF64Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x12\n\nread_array\x18\x02 \x03(\x01\x12\x1b\n\x13samps_per_chan_read\x18\x03 \x01(\x05\"\xe2\x01\n\x19\x42\x65ginReadAnalogF64Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12*\n\tfill_mode\x18\x04 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x17\n\rfill_mode_raw\x18\x05 \x01(\x05H\x00\x12\x1b\n\x13\x61rray_size_in_samps\x18\x06 \x01(\rB\x10\n\x0e\x66ill_mode_enum\"X\n\x1a\x42\x65ginReadAnalogF64Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"_\n\x1cMonikerReadAnalogF64Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x12\n\nread_array\x18\x02 \x03(\x01\x12\x1b\n\x13samps_per_chan_read\x18\x03 \x01(\x05\"S\n\x1aReadAnalogScalarF64Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07timeout\x18\x02 \x01(\x01\"<\n\x1bReadAnalogScalarF64Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x01\"X\n\x1f\x42\x65ginReadAnalogScalarF64Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07timeout\x18\x02 \x01(\x01\"^\n BeginReadAnalogScalarF64Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"C\n\"MonikerReadAnalogScalarF64Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x01\"\xdd\x01\n\x14ReadBinaryI16Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12*\n\tfill_mode\x18\x04 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x17\n\rfill_mode_raw\x18\x05 \x01(\x05H\x00\x12\x1b\n\x13\x61rray_size_in_samps\x18\x06 \x01(\rB\x10\n\x0e\x66ill_mode_enum\"X\n\x15ReadBinaryI16Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x12\n\nread_array\x18\x02 \x03(\x05\x12\x1b\n\x13samps_per_chan_read\x18\x03 \x01(\x05\"\xe2\x01\n\x19\x42\x65ginReadBinaryI16Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12*\n\tfill_mode\x18\x04 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x17\n\rfill_mode_raw\x18\x05 \x01(\x05H\x00\x12\x1b\n\x13\x61rray_size_in_samps\x18\x06 \x01(\rB\x10\n\x0e\x66ill_mode_enum\"X\n\x1a\x42\x65ginReadBinaryI16Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"_\n\x1cMonikerReadBinaryI16Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x12\n\nread_array\x18\x02 \x03(\x05\x12\x1b\n\x13samps_per_chan_read\x18\x03 \x01(\x05\"\xdd\x01\n\x14ReadBinaryI32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12*\n\tfill_mode\x18\x04 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x17\n\rfill_mode_raw\x18\x05 \x01(\x05H\x00\x12\x1b\n\x13\x61rray_size_in_samps\x18\x06 \x01(\rB\x10\n\x0e\x66ill_mode_enum\"X\n\x15ReadBinaryI32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x12\n\nread_array\x18\x02 \x03(\x05\x12\x1b\n\x13samps_per_chan_read\x18\x03 \x01(\x05\"\xe2\x01\n\x19\x42\x65ginReadBinaryI32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12*\n\tfill_mode\x18\x04 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x17\n\rfill_mode_raw\x18\x05 \x01(\x05H\x00\x12\x1b\n\x13\x61rray_size_in_samps\x18\x06 \x01(\rB\x10\n\x0e\x66ill_mode_enum\"X\n\x1a\x42\x65ginReadBinaryI32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"_\n\x1cMonikerReadBinaryI32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x12\n\nread_array\x18\x02 \x03(\x05\x12\x1b\n\x13samps_per_chan_read\x18\x03 \x01(\x05\"\xdd\x01\n\x14ReadBinaryU16Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12*\n\tfill_mode\x18\x04 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x17\n\rfill_mode_raw\x18\x05 \x01(\x05H\x00\x12\x1b\n\x13\x61rray_size_in_samps\x18\x06 \x01(\rB\x10\n\x0e\x66ill_mode_enum\"X\n\x15ReadBinaryU16Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x12\n\nread_array\x18\x02 \x03(\r\x12\x1b\n\x13samps_per_chan_read\x18\x03 \x01(\x05\"\xe2\x01\n\x19\x42\x65ginReadBinaryU16Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12*\n\tfill_mode\x18\x04 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x17\n\rfill_mode_raw\x18\x05 \x01(\x05H\x00\x12\x1b\n\x13\x61rray_size_in_samps\x18\x06 \x01(\rB\x10\n\x0e\x66ill_mode_enum\"X\n\x1a\x42\x65ginReadBinaryU16Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"_\n\x1cMonikerReadBinaryU16Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x12\n\nread_array\x18\x02 \x03(\r\x12\x1b\n\x13samps_per_chan_read\x18\x03 \x01(\x05\"\xdd\x01\n\x14ReadBinaryU32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12*\n\tfill_mode\x18\x04 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x17\n\rfill_mode_raw\x18\x05 \x01(\x05H\x00\x12\x1b\n\x13\x61rray_size_in_samps\x18\x06 \x01(\rB\x10\n\x0e\x66ill_mode_enum\"X\n\x15ReadBinaryU32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x12\n\nread_array\x18\x02 \x03(\r\x12\x1b\n\x13samps_per_chan_read\x18\x03 \x01(\x05\"\xe2\x01\n\x19\x42\x65ginReadBinaryU32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12*\n\tfill_mode\x18\x04 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x17\n\rfill_mode_raw\x18\x05 \x01(\x05H\x00\x12\x1b\n\x13\x61rray_size_in_samps\x18\x06 \x01(\rB\x10\n\x0e\x66ill_mode_enum\"X\n\x1a\x42\x65ginReadBinaryU32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"_\n\x1cMonikerReadBinaryU32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x12\n\nread_array\x18\x02 \x03(\r\x12\x1b\n\x13samps_per_chan_read\x18\x03 \x01(\x05\"\x87\x01\n\x15ReadCounterF64Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12\x1b\n\x13\x61rray_size_in_samps\x18\x04 \x01(\r\"Y\n\x16ReadCounterF64Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x12\n\nread_array\x18\x02 \x03(\x01\x12\x1b\n\x13samps_per_chan_read\x18\x03 \x01(\x05\"\x8c\x01\n\x1a\x42\x65ginReadCounterF64Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12\x1b\n\x13\x61rray_size_in_samps\x18\x04 \x01(\r\"Y\n\x1b\x42\x65ginReadCounterF64Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"`\n\x1dMonikerReadCounterF64Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x12\n\nread_array\x18\x02 \x03(\x01\x12\x1b\n\x13samps_per_chan_read\x18\x03 \x01(\x05\"\xe0\x01\n\x17ReadCounterF64ExRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12*\n\tfill_mode\x18\x04 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x17\n\rfill_mode_raw\x18\x05 \x01(\x05H\x00\x12\x1b\n\x13\x61rray_size_in_samps\x18\x06 \x01(\rB\x10\n\x0e\x66ill_mode_enum\"[\n\x18ReadCounterF64ExResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x12\n\nread_array\x18\x02 \x03(\x01\x12\x1b\n\x13samps_per_chan_read\x18\x03 \x01(\x05\"\xe5\x01\n\x1c\x42\x65ginReadCounterF64ExRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12*\n\tfill_mode\x18\x04 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x17\n\rfill_mode_raw\x18\x05 \x01(\x05H\x00\x12\x1b\n\x13\x61rray_size_in_samps\x18\x06 \x01(\rB\x10\n\x0e\x66ill_mode_enum\"[\n\x1d\x42\x65ginReadCounterF64ExResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"b\n\x1fMonikerReadCounterF64ExResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x12\n\nread_array\x18\x02 \x03(\x01\x12\x1b\n\x13samps_per_chan_read\x18\x03 \x01(\x05\"T\n\x1bReadCounterScalarF64Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07timeout\x18\x02 \x01(\x01\"=\n\x1cReadCounterScalarF64Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x01\"Y\n BeginReadCounterScalarF64Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07timeout\x18\x02 \x01(\x01\"_\n!BeginReadCounterScalarF64Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"D\n#MonikerReadCounterScalarF64Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x01\"T\n\x1bReadCounterScalarU32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07timeout\x18\x02 \x01(\x01\"=\n\x1cReadCounterScalarU32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\r\"Y\n BeginReadCounterScalarU32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07timeout\x18\x02 \x01(\x01\"_\n!BeginReadCounterScalarU32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"D\n#MonikerReadCounterScalarU32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\r\"\x87\x01\n\x15ReadCounterU32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12\x1b\n\x13\x61rray_size_in_samps\x18\x04 \x01(\r\"Y\n\x16ReadCounterU32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x12\n\nread_array\x18\x02 \x03(\r\x12\x1b\n\x13samps_per_chan_read\x18\x03 \x01(\x05\"\x8c\x01\n\x1a\x42\x65ginReadCounterU32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12\x1b\n\x13\x61rray_size_in_samps\x18\x04 \x01(\r\"Y\n\x1b\x42\x65ginReadCounterU32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"`\n\x1dMonikerReadCounterU32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x12\n\nread_array\x18\x02 \x03(\r\x12\x1b\n\x13samps_per_chan_read\x18\x03 \x01(\x05\"\xe0\x01\n\x17ReadCounterU32ExRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12*\n\tfill_mode\x18\x04 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x17\n\rfill_mode_raw\x18\x05 \x01(\x05H\x00\x12\x1b\n\x13\x61rray_size_in_samps\x18\x06 \x01(\rB\x10\n\x0e\x66ill_mode_enum\"[\n\x18ReadCounterU32ExResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x12\n\nread_array\x18\x02 \x03(\r\x12\x1b\n\x13samps_per_chan_read\x18\x03 \x01(\x05\"\xe5\x01\n\x1c\x42\x65ginReadCounterU32ExRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12*\n\tfill_mode\x18\x04 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x17\n\rfill_mode_raw\x18\x05 \x01(\x05H\x00\x12\x1b\n\x13\x61rray_size_in_samps\x18\x06 \x01(\rB\x10\n\x0e\x66ill_mode_enum\"[\n\x1d\x42\x65ginReadCounterU32ExResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"b\n\x1fMonikerReadCounterU32ExResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x12\n\nread_array\x18\x02 \x03(\r\x12\x1b\n\x13samps_per_chan_read\x18\x03 \x01(\x05\"\xe1\x01\n\x12ReadCtrFreqRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12,\n\x0binterleaved\x18\x04 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x19\n\x0finterleaved_raw\x18\x05 \x01(\x05H\x00\x12\x1b\n\x13\x61rray_size_in_samps\x18\x06 \x01(\rB\x12\n\x10interleaved_enum\"\x7f\n\x13ReadCtrFreqResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x1c\n\x14read_array_frequency\x18\x02 \x03(\x01\x12\x1d\n\x15read_array_duty_cycle\x18\x03 \x03(\x01\x12\x1b\n\x13samps_per_chan_read\x18\x04 \x01(\x05\"\xe6\x01\n\x17\x42\x65ginReadCtrFreqRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12,\n\x0binterleaved\x18\x04 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x19\n\x0finterleaved_raw\x18\x05 \x01(\x05H\x00\x12\x1b\n\x13\x61rray_size_in_samps\x18\x06 \x01(\rB\x12\n\x10interleaved_enum\"V\n\x18\x42\x65ginReadCtrFreqResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"\x86\x01\n\x1aMonikerReadCtrFreqResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x1c\n\x14read_array_frequency\x18\x02 \x03(\x01\x12\x1d\n\x15read_array_duty_cycle\x18\x03 \x03(\x01\x12\x1b\n\x13samps_per_chan_read\x18\x04 \x01(\x05\"Q\n\x18ReadCtrFreqScalarRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07timeout\x18\x02 \x01(\x01\"R\n\x19ReadCtrFreqScalarResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x11\n\tfrequency\x18\x02 \x01(\x01\x12\x12\n\nduty_cycle\x18\x03 \x01(\x01\"V\n\x1d\x42\x65ginReadCtrFreqScalarRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07timeout\x18\x02 \x01(\x01\"\\\n\x1e\x42\x65ginReadCtrFreqScalarResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"Y\n MonikerReadCtrFreqScalarResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x11\n\tfrequency\x18\x02 \x01(\x01\x12\x12\n\nduty_cycle\x18\x03 \x01(\x01\"\xe2\x01\n\x13ReadCtrTicksRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12,\n\x0binterleaved\x18\x04 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x19\n\x0finterleaved_raw\x18\x05 \x01(\x05H\x00\x12\x1b\n\x13\x61rray_size_in_samps\x18\x06 \x01(\rB\x12\n\x10interleaved_enum\"\x80\x01\n\x14ReadCtrTicksResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x1d\n\x15read_array_high_ticks\x18\x02 \x03(\r\x12\x1c\n\x14read_array_low_ticks\x18\x03 \x03(\r\x12\x1b\n\x13samps_per_chan_read\x18\x04 \x01(\x05\"\xe7\x01\n\x18\x42\x65ginReadCtrTicksRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12,\n\x0binterleaved\x18\x04 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x19\n\x0finterleaved_raw\x18\x05 \x01(\x05H\x00\x12\x1b\n\x13\x61rray_size_in_samps\x18\x06 \x01(\rB\x12\n\x10interleaved_enum\"W\n\x19\x42\x65ginReadCtrTicksResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"\x87\x01\n\x1bMonikerReadCtrTicksResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x1d\n\x15read_array_high_ticks\x18\x02 \x03(\r\x12\x1c\n\x14read_array_low_ticks\x18\x03 \x03(\r\x12\x1b\n\x13samps_per_chan_read\x18\x04 \x01(\x05\"R\n\x19ReadCtrTicksScalarRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07timeout\x18\x02 \x01(\x01\"S\n\x1aReadCtrTicksScalarResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x12\n\nhigh_ticks\x18\x02 \x01(\r\x12\x11\n\tlow_ticks\x18\x03 \x01(\r\"W\n\x1e\x42\x65ginReadCtrTicksScalarRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07timeout\x18\x02 \x01(\x01\"]\n\x1f\x42\x65ginReadCtrTicksScalarResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"Z\n!MonikerReadCtrTicksScalarResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x12\n\nhigh_ticks\x18\x02 \x01(\r\x12\x11\n\tlow_ticks\x18\x03 \x01(\r\"\xe1\x01\n\x12ReadCtrTimeRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12,\n\x0binterleaved\x18\x04 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x19\n\x0finterleaved_raw\x18\x05 \x01(\x05H\x00\x12\x1b\n\x13\x61rray_size_in_samps\x18\x06 \x01(\rB\x12\n\x10interleaved_enum\"}\n\x13ReadCtrTimeResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x1c\n\x14read_array_high_time\x18\x02 \x03(\x01\x12\x1b\n\x13read_array_low_time\x18\x03 \x03(\x01\x12\x1b\n\x13samps_per_chan_read\x18\x04 \x01(\x05\"\xe6\x01\n\x17\x42\x65ginReadCtrTimeRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12,\n\x0binterleaved\x18\x04 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x19\n\x0finterleaved_raw\x18\x05 \x01(\x05H\x00\x12\x1b\n\x13\x61rray_size_in_samps\x18\x06 \x01(\rB\x12\n\x10interleaved_enum\"V\n\x18\x42\x65ginReadCtrTimeResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"\x84\x01\n\x1aMonikerReadCtrTimeResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x1c\n\x14read_array_high_time\x18\x02 \x03(\x01\x12\x1b\n\x13read_array_low_time\x18\x03 \x03(\x01\x12\x1b\n\x13samps_per_chan_read\x18\x04 \x01(\x05\"Q\n\x18ReadCtrTimeScalarRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07timeout\x18\x02 \x01(\x01\"P\n\x19ReadCtrTimeScalarResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x11\n\thigh_time\x18\x02 \x01(\x01\x12\x10\n\x08low_time\x18\x03 \x01(\x01\"V\n\x1d\x42\x65ginReadCtrTimeScalarRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07timeout\x18\x02 \x01(\x01\"\\\n\x1e\x42\x65ginReadCtrTimeScalarResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"W\n MonikerReadCtrTimeScalarResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x11\n\thigh_time\x18\x02 \x01(\x01\x12\x10\n\x08low_time\x18\x03 \x01(\x01\"\xe0\x01\n\x17ReadDigitalLinesRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12*\n\tfill_mode\x18\x04 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x17\n\rfill_mode_raw\x18\x05 \x01(\x05H\x00\x12\x1b\n\x13\x61rray_size_in_bytes\x18\x06 \x01(\rB\x10\n\x0e\x66ill_mode_enum\"w\n\x18ReadDigitalLinesResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x12\n\nread_array\x18\x02 \x01(\x0c\x12\x1b\n\x13samps_per_chan_read\x18\x03 \x01(\x05\x12\x1a\n\x12num_bytes_per_samp\x18\x04 \x01(\x05\"\xe5\x01\n\x1c\x42\x65ginReadDigitalLinesRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12*\n\tfill_mode\x18\x04 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x17\n\rfill_mode_raw\x18\x05 \x01(\x05H\x00\x12\x1b\n\x13\x61rray_size_in_bytes\x18\x06 \x01(\rB\x10\n\x0e\x66ill_mode_enum\"w\n\x1d\x42\x65ginReadDigitalLinesResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x1a\n\x12num_bytes_per_samp\x18\x02 \x01(\x05\x12*\n\x07moniker\x18\x03 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"~\n\x1fMonikerReadDigitalLinesResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x12\n\nread_array\x18\x02 \x01(\x0c\x12\x1b\n\x13samps_per_chan_read\x18\x03 \x01(\x05\x12\x1a\n\x12num_bytes_per_samp\x18\x04 \x01(\x05\"T\n\x1bReadDigitalScalarU32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07timeout\x18\x02 \x01(\x01\"=\n\x1cReadDigitalScalarU32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\r\"Y\n BeginReadDigitalScalarU32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07timeout\x18\x02 \x01(\x01\"_\n!BeginReadDigitalScalarU32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"D\n#MonikerReadDigitalScalarU32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\r\"\xde\x01\n\x15ReadDigitalU16Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12*\n\tfill_mode\x18\x04 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x17\n\rfill_mode_raw\x18\x05 \x01(\x05H\x00\x12\x1b\n\x13\x61rray_size_in_samps\x18\x06 \x01(\rB\x10\n\x0e\x66ill_mode_enum\"Y\n\x16ReadDigitalU16Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x12\n\nread_array\x18\x02 \x03(\r\x12\x1b\n\x13samps_per_chan_read\x18\x03 \x01(\x05\"\xe3\x01\n\x1a\x42\x65ginReadDigitalU16Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12*\n\tfill_mode\x18\x04 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x17\n\rfill_mode_raw\x18\x05 \x01(\x05H\x00\x12\x1b\n\x13\x61rray_size_in_samps\x18\x06 \x01(\rB\x10\n\x0e\x66ill_mode_enum\"Y\n\x1b\x42\x65ginReadDigitalU16Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"`\n\x1dMonikerReadDigitalU16Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x12\n\nread_array\x18\x02 \x03(\r\x12\x1b\n\x13samps_per_chan_read\x18\x03 \x01(\x05\"\xde\x01\n\x15ReadDigitalU32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12*\n\tfill_mode\x18\x04 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x17\n\rfill_mode_raw\x18\x05 \x01(\x05H\x00\x12\x1b\n\x13\x61rray_size_in_samps\x18\x06 \x01(\rB\x10\n\x0e\x66ill_mode_enum\"Y\n\x16ReadDigitalU32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x12\n\nread_array\x18\x02 \x03(\r\x12\x1b\n\x13samps_per_chan_read\x18\x03 \x01(\x05\"\xe3\x01\n\x1a\x42\x65ginReadDigitalU32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12*\n\tfill_mode\x18\x04 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x17\n\rfill_mode_raw\x18\x05 \x01(\x05H\x00\x12\x1b\n\x13\x61rray_size_in_samps\x18\x06 \x01(\rB\x10\n\x0e\x66ill_mode_enum\"Y\n\x1b\x42\x65ginReadDigitalU32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"`\n\x1dMonikerReadDigitalU32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x12\n\nread_array\x18\x02 \x03(\r\x12\x1b\n\x13samps_per_chan_read\x18\x03 \x01(\x05\"\xdd\x01\n\x14ReadDigitalU8Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12*\n\tfill_mode\x18\x04 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x17\n\rfill_mode_raw\x18\x05 \x01(\x05H\x00\x12\x1b\n\x13\x61rray_size_in_samps\x18\x06 \x01(\rB\x10\n\x0e\x66ill_mode_enum\"X\n\x15ReadDigitalU8Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x12\n\nread_array\x18\x02 \x01(\x0c\x12\x1b\n\x13samps_per_chan_read\x18\x03 \x01(\x05\"\xe2\x01\n\x19\x42\x65ginReadDigitalU8Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12*\n\tfill_mode\x18\x04 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x17\n\rfill_mode_raw\x18\x05 \x01(\x05H\x00\x12\x1b\n\x13\x61rray_size_in_samps\x18\x06 \x01(\rB\x10\n\x0e\x66ill_mode_enum\"X\n\x1a\x42\x65ginReadDigitalU8Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"_\n\x1cMonikerReadDigitalU8Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x12\n\nread_array\x18\x02 \x01(\x0c\x12\x1b\n\x13samps_per_chan_read\x18\x03 \x01(\x05\"V\n\x16ReadIDPinMemoryRequest\x12\x13\n\x0b\x64\x65vice_name\x18\x01 \x01(\t\x12\x13\n\x0bid_pin_name\x18\x02 \x01(\t\x12\x12\n\narray_size\x18\x03 \x01(\r\"f\n\x17ReadIDPinMemoryResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x0c\n\x04\x64\x61ta\x18\x02 \x01(\x0c\x12\x18\n\x10\x64\x61ta_length_read\x18\x03 \x01(\r\x12\x13\n\x0b\x66ormat_code\x18\x04 \x01(\r\"\xe2\x01\n\x19ReadPowerBinaryI16Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12*\n\tfill_mode\x18\x04 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x17\n\rfill_mode_raw\x18\x05 \x01(\x05H\x00\x12\x1b\n\x13\x61rray_size_in_samps\x18\x06 \x01(\rB\x10\n\x0e\x66ill_mode_enum\"\x81\x01\n\x1aReadPowerBinaryI16Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x1a\n\x12read_array_voltage\x18\x02 \x03(\x05\x12\x1a\n\x12read_array_current\x18\x03 \x03(\x05\x12\x1b\n\x13samps_per_chan_read\x18\x04 \x01(\x05\"\xe7\x01\n\x1e\x42\x65ginReadPowerBinaryI16Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12*\n\tfill_mode\x18\x04 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x17\n\rfill_mode_raw\x18\x05 \x01(\x05H\x00\x12\x1b\n\x13\x61rray_size_in_samps\x18\x06 \x01(\rB\x10\n\x0e\x66ill_mode_enum\"]\n\x1f\x42\x65ginReadPowerBinaryI16Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"\x88\x01\n!MonikerReadPowerBinaryI16Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x1a\n\x12read_array_voltage\x18\x02 \x03(\x05\x12\x1a\n\x12read_array_current\x18\x03 \x03(\x05\x12\x1b\n\x13samps_per_chan_read\x18\x04 \x01(\x05\"\xdc\x01\n\x13ReadPowerF64Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12*\n\tfill_mode\x18\x04 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x17\n\rfill_mode_raw\x18\x05 \x01(\x05H\x00\x12\x1b\n\x13\x61rray_size_in_samps\x18\x06 \x01(\rB\x10\n\x0e\x66ill_mode_enum\"{\n\x14ReadPowerF64Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x1a\n\x12read_array_voltage\x18\x02 \x03(\x01\x12\x1a\n\x12read_array_current\x18\x03 \x03(\x01\x12\x1b\n\x13samps_per_chan_read\x18\x04 \x01(\x05\"\xe1\x01\n\x18\x42\x65ginReadPowerF64Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12*\n\tfill_mode\x18\x04 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x17\n\rfill_mode_raw\x18\x05 \x01(\x05H\x00\x12\x1b\n\x13\x61rray_size_in_samps\x18\x06 \x01(\rB\x10\n\x0e\x66ill_mode_enum\"W\n\x19\x42\x65ginReadPowerF64Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"\x82\x01\n\x1bMonikerReadPowerF64Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x1a\n\x12read_array_voltage\x18\x02 \x03(\x01\x12\x1a\n\x12read_array_current\x18\x03 \x03(\x01\x12\x1b\n\x13samps_per_chan_read\x18\x04 \x01(\x05\"R\n\x19ReadPowerScalarF64Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07timeout\x18\x02 \x01(\x01\"N\n\x1aReadPowerScalarF64Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x0f\n\x07voltage\x18\x02 \x01(\x01\x12\x0f\n\x07\x63urrent\x18\x03 \x01(\x01\"W\n\x1e\x42\x65ginReadPowerScalarF64Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07timeout\x18\x02 \x01(\x01\"]\n\x1f\x42\x65ginReadPowerScalarF64Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"U\n!MonikerReadPowerScalarF64Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x0f\n\x07voltage\x18\x02 \x01(\x01\x12\x0f\n\x07\x63urrent\x18\x03 \x01(\x01\"\x80\x01\n\x0eReadRawRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12\x1b\n\x13\x61rray_size_in_bytes\x18\x04 \x01(\r\"e\n\x0fReadRawResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x12\n\nread_array\x18\x02 \x01(\x0c\x12\x12\n\nsamps_read\x18\x03 \x01(\x05\x12\x1a\n\x12num_bytes_per_samp\x18\x04 \x01(\x05\"\x85\x01\n\x13\x42\x65ginReadRawRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12\x1b\n\x13\x61rray_size_in_bytes\x18\x04 \x01(\r\"R\n\x14\x42\x65ginReadRawResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"l\n\x16MonikerReadRawResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x12\n\nread_array\x18\x02 \x01(\x0c\x12\x12\n\nsamps_read\x18\x03 \x01(\x05\x12\x1a\n\x12num_bytes_per_samp\x18\x04 \x01(\x05\"@\n\x18RegisterDoneEventRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\"+\n\x19RegisterDoneEventResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xf5\x01\n!RegisterEveryNSamplesEventRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12J\n\x1a\x65very_n_samples_event_type\x18\x02 \x01(\x0e\x32$.nidaqmx_grpc.EveryNSamplesEventTypeH\x00\x12(\n\x1e\x65very_n_samples_event_type_raw\x18\x03 \x01(\x05H\x00\x12\x11\n\tn_samples\x18\x04 \x01(\rB!\n\x1f\x65very_n_samples_event_type_enum\"\xb9\x01\n\"RegisterEveryNSamplesEventResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12H\n\x1a\x65very_n_samples_event_type\x18\x02 \x01(\x0e\x32$.nidaqmx_grpc.EveryNSamplesEventType\x12&\n\x1e\x65very_n_samples_event_type_raw\x18\x03 \x01(\x05\x12\x11\n\tn_samples\x18\x04 \x01(\r\"\x99\x01\n\x1aRegisterSignalEventRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12*\n\tsignal_id\x18\x02 \x01(\x0e\x32\x15.nidaqmx_grpc.Signal2H\x00\x12\x17\n\rsignal_id_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0esignal_id_enum\"@\n\x1bRegisterSignalEventResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x11\n\tsignal_id\x18\x02 \x01(\x05\"4\n\x1fRemoveCDAQSyncConnectionRequest\x12\x11\n\tport_list\x18\x01 \x01(\t\"2\n RemoveCDAQSyncConnectionResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"P\n\x1bReserveNetworkDeviceRequest\x12\x13\n\x0b\x64\x65vice_name\x18\x01 \x01(\t\x12\x1c\n\x14override_reservation\x18\x02 \x01(\x08\".\n\x1cReserveNetworkDeviceResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xa7\x01\n\x1bResetBufferAttributeRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x37\n\tattribute\x18\x02 \x01(\x0e\x32\".nidaqmx_grpc.BufferResetAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\".\n\x1cResetBufferAttributeResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xb7\x01\n\x19ResetChanAttributeRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07\x63hannel\x18\x02 \x01(\t\x12\x38\n\tattribute\x18\x03 \x01(\x0e\x32#.nidaqmx_grpc.ChannelResetAttributeH\x00\x12\x17\n\rattribute_raw\x18\x04 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\",\n\x1aResetChanAttributeResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\")\n\x12ResetDeviceRequest\x12\x13\n\x0b\x64\x65vice_name\x18\x01 \x01(\t\"%\n\x13ResetDeviceResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xb5\x01\n#ResetExportedSignalAttributeRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12=\n\tattribute\x18\x02 \x01(\x0e\x32(.nidaqmx_grpc.ExportSignalResetAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"6\n$ResetExportedSignalAttributeResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xa3\x01\n\x19ResetReadAttributeRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x35\n\tattribute\x18\x02 \x01(\x0e\x32 .nidaqmx_grpc.ReadResetAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\",\n\x1aResetReadAttributeResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xab\x01\n\x1dResetRealTimeAttributeRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x39\n\tattribute\x18\x02 \x01(\x0e\x32$.nidaqmx_grpc.RealTimeResetAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"0\n\x1eResetRealTimeAttributeResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xa7\x01\n\x1bResetTimingAttributeRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x37\n\tattribute\x18\x02 \x01(\x0e\x32\".nidaqmx_grpc.TimingResetAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\".\n\x1cResetTimingAttributeResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xbf\x01\n\x1dResetTimingAttributeExRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x14\n\x0c\x64\x65vice_names\x18\x02 \x01(\t\x12\x37\n\tattribute\x18\x03 \x01(\x0e\x32\".nidaqmx_grpc.TimingResetAttributeH\x00\x12\x17\n\rattribute_raw\x18\x04 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"0\n\x1eResetTimingAttributeExResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xa6\x01\n\x19ResetTrigAttributeRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x38\n\tattribute\x18\x02 \x01(\x0e\x32#.nidaqmx_grpc.TriggerResetAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\",\n\x1aResetTrigAttributeResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xba\x01\n\x1dResetWatchdogAttributeRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\r\n\x05lines\x18\x02 \x01(\t\x12\x39\n\tattribute\x18\x03 \x01(\x0e\x32$.nidaqmx_grpc.WatchdogResetAttributeH\x00\x12\x17\n\rattribute_raw\x18\x04 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"0\n\x1eResetWatchdogAttributeResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xa5\x01\n\x1aResetWriteAttributeRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x36\n\tattribute\x18\x02 \x01(\x0e\x32!.nidaqmx_grpc.WriteResetAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0e\x61ttribute_enum\"-\n\x1bResetWriteAttributeResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"4\n\x1dRestoreLastExtCalConstRequest\x12\x13\n\x0b\x64\x65vice_name\x18\x01 \x01(\t\"0\n\x1eRestoreLastExtCalConstResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xc9\x01\n\x15SaveGlobalChanRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x14\n\x0c\x63hannel_name\x18\x02 \x01(\t\x12\x0f\n\x07save_as\x18\x03 \x01(\t\x12\x0e\n\x06\x61uthor\x18\x04 \x01(\t\x12,\n\x07options\x18\x05 \x01(\x0e\x32\x19.nidaqmx_grpc.SaveOptionsH\x00\x12\x15\n\x0boptions_raw\x18\x06 \x01(\rH\x00\x42\x0e\n\x0coptions_enum\"(\n\x16SaveGlobalChanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x9c\x01\n\x10SaveScaleRequest\x12\x12\n\nscale_name\x18\x01 \x01(\t\x12\x0f\n\x07save_as\x18\x02 \x01(\t\x12\x0e\n\x06\x61uthor\x18\x03 \x01(\t\x12,\n\x07options\x18\x04 \x01(\x0e\x32\x19.nidaqmx_grpc.SaveOptionsH\x00\x12\x15\n\x0boptions_raw\x18\x05 \x01(\rH\x00\x42\x0e\n\x0coptions_enum\"#\n\x11SaveScaleResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xad\x01\n\x0fSaveTaskRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07save_as\x18\x02 \x01(\t\x12\x0e\n\x06\x61uthor\x18\x03 \x01(\t\x12,\n\x07options\x18\x04 \x01(\x0e\x32\x19.nidaqmx_grpc.SaveOptionsH\x00\x12\x15\n\x0boptions_raw\x18\x05 \x01(\rH\x00\x42\x0e\n\x0coptions_enum\"\"\n\x10SaveTaskResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"%\n\x0eSelfCalRequest\x12\x13\n\x0b\x64\x65vice_name\x18\x01 \x01(\t\"!\n\x0fSelfCalResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\",\n\x15SelfTestDeviceRequest\x12\x13\n\x0b\x64\x65vice_name\x18\x01 \x01(\t\"(\n\x16SelfTestDeviceResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xa0\x01\n\x1aSetAIChanCalCalDateRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x14\n\x0c\x63hannel_name\x18\x02 \x01(\t\x12\x0c\n\x04year\x18\x03 \x01(\r\x12\r\n\x05month\x18\x04 \x01(\r\x12\x0b\n\x03\x64\x61y\x18\x05 \x01(\r\x12\x0c\n\x04hour\x18\x06 \x01(\r\x12\x0e\n\x06minute\x18\x07 \x01(\r\"-\n\x1bSetAIChanCalCalDateResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xa0\x01\n\x1aSetAIChanCalExpDateRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x14\n\x0c\x63hannel_name\x18\x02 \x01(\t\x12\x0c\n\x04year\x18\x03 \x01(\r\x12\r\n\x05month\x18\x04 \x01(\r\x12\x0b\n\x03\x64\x61y\x18\x05 \x01(\r\x12\x0c\n\x04hour\x18\x06 \x01(\r\x12\x0e\n\x06minute\x18\x07 \x01(\r\"-\n\x1bSetAIChanCalExpDateResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"z\n\x1dSetAnalogPowerUpStatesRequest\x12\x13\n\x0b\x64\x65vice_name\x18\x01 \x01(\t\x12\x44\n\x0fpower_up_states\x18\x02 \x03(\x0b\x32+.nidaqmx_grpc.AnalogPowerUpChannelsAndState\"0\n\x1eSetAnalogPowerUpStatesResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x97\x01\n+SetAnalogPowerUpStatesWithOutputTypeRequest\x12\x15\n\rchannel_names\x18\x01 \x01(\t\x12\x13\n\x0bstate_array\x18\x02 \x03(\x01\x12<\n\x12\x63hannel_type_array\x18\x03 \x03(\x0e\x32 .nidaqmx_grpc.PowerUpChannelType\">\n,SetAnalogPowerUpStatesWithOutputTypeResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"p\n\x1eSetArmStartTrigTrigWhenRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"1\n\x1fSetArmStartTrigTrigWhenResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xbb\x01\n\x1fSetBufferAttributeUInt32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x38\n\tattribute\x18\x02 \x01(\x0e\x32#.nidaqmx_grpc.BufferUInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\r\n\x05value\x18\x04 \x01(\rB\x10\n\x0e\x61ttribute_enum\"2\n SetBufferAttributeUInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xb0\x01\n\x1eSetCalInfoAttributeBoolRequest\x12\x13\n\x0b\x64\x65vice_name\x18\x01 \x01(\t\x12?\n\tattribute\x18\x02 \x01(\x0e\x32*.nidaqmx_grpc.CalibrationInfoBoolAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\r\n\x05value\x18\x04 \x01(\x08\x42\x10\n\x0e\x61ttribute_enum\"1\n\x1fSetCalInfoAttributeBoolResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xb4\x01\n SetCalInfoAttributeDoubleRequest\x12\x13\n\x0b\x64\x65vice_name\x18\x01 \x01(\t\x12\x41\n\tattribute\x18\x02 \x01(\x0e\x32,.nidaqmx_grpc.CalibrationInfoDoubleAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\r\n\x05value\x18\x04 \x01(\x01\x42\x10\n\x0e\x61ttribute_enum\"3\n!SetCalInfoAttributeDoubleResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xb4\x01\n SetCalInfoAttributeStringRequest\x12\x13\n\x0b\x64\x65vice_name\x18\x01 \x01(\t\x12\x41\n\tattribute\x18\x02 \x01(\x0e\x32,.nidaqmx_grpc.CalibrationInfoStringAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\r\n\x05value\x18\x04 \x01(\tB\x10\n\x0e\x61ttribute_enum\"3\n!SetCalInfoAttributeStringResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xb4\x01\n SetCalInfoAttributeUInt32Request\x12\x13\n\x0b\x64\x65vice_name\x18\x01 \x01(\t\x12\x41\n\tattribute\x18\x02 \x01(\x0e\x32,.nidaqmx_grpc.CalibrationInfoUInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\r\n\x05value\x18\x04 \x01(\rB\x10\n\x0e\x61ttribute_enum\"3\n!SetCalInfoAttributeUInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xc7\x01\n\x1bSetChanAttributeBoolRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07\x63hannel\x18\x02 \x01(\t\x12\x37\n\tattribute\x18\x03 \x01(\x0e\x32\".nidaqmx_grpc.ChannelBoolAttributeH\x00\x12\x17\n\rattribute_raw\x18\x04 \x01(\x05H\x00\x12\r\n\x05value\x18\x05 \x01(\x08\x42\x10\n\x0e\x61ttribute_enum\".\n\x1cSetChanAttributeBoolResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xcb\x01\n\x1dSetChanAttributeDoubleRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07\x63hannel\x18\x02 \x01(\t\x12\x39\n\tattribute\x18\x03 \x01(\x0e\x32$.nidaqmx_grpc.ChannelDoubleAttributeH\x00\x12\x17\n\rattribute_raw\x18\x04 \x01(\x05H\x00\x12\r\n\x05value\x18\x05 \x01(\x01\x42\x10\n\x0e\x61ttribute_enum\"0\n\x1eSetChanAttributeDoubleResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xd5\x01\n\"SetChanAttributeDoubleArrayRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07\x63hannel\x18\x02 \x01(\t\x12>\n\tattribute\x18\x03 \x01(\x0e\x32).nidaqmx_grpc.ChannelDoubleArrayAttributeH\x00\x12\x17\n\rattribute_raw\x18\x04 \x01(\x05H\x00\x12\r\n\x05value\x18\x05 \x03(\x01\x42\x10\n\x0e\x61ttribute_enum\"5\n#SetChanAttributeDoubleArrayResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x99\x02\n\x1cSetChanAttributeInt32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07\x63hannel\x18\x02 \x01(\t\x12\x38\n\tattribute\x18\x03 \x01(\x0e\x32#.nidaqmx_grpc.ChannelInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x04 \x01(\x05H\x00\x12:\n\x05value\x18\x05 \x01(\x0e\x32).nidaqmx_grpc.ChannelInt32AttributeValuesH\x01\x12\x13\n\tvalue_raw\x18\x06 \x01(\x05H\x01\x42\x10\n\x0e\x61ttribute_enumB\x0c\n\nvalue_enum\"/\n\x1dSetChanAttributeInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xcb\x01\n\x1dSetChanAttributeStringRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07\x63hannel\x18\x02 \x01(\t\x12\x39\n\tattribute\x18\x03 \x01(\x0e\x32$.nidaqmx_grpc.ChannelStringAttributeH\x00\x12\x17\n\rattribute_raw\x18\x04 \x01(\x05H\x00\x12\r\n\x05value\x18\x05 \x01(\tB\x10\n\x0e\x61ttribute_enum\"0\n\x1eSetChanAttributeStringResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xcb\x01\n\x1dSetChanAttributeUInt32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07\x63hannel\x18\x02 \x01(\t\x12\x39\n\tattribute\x18\x03 \x01(\x0e\x32$.nidaqmx_grpc.ChannelUInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x04 \x01(\x05H\x00\x12\r\n\x05value\x18\x05 \x01(\rB\x10\n\x0e\x61ttribute_enum\"0\n\x1eSetChanAttributeUInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xa3\x01\n(SetDigitalLogicFamilyPowerUpStateRequest\x12\x13\n\x0b\x64\x65vice_name\x18\x01 \x01(\t\x12\x31\n\x0clogic_family\x18\x02 \x01(\x0e\x32\x19.nidaqmx_grpc.LogicFamilyH\x00\x12\x1a\n\x10logic_family_raw\x18\x03 \x01(\x05H\x00\x42\x13\n\x11logic_family_enum\";\n)SetDigitalLogicFamilyPowerUpStateResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"|\n\x1eSetDigitalPowerUpStatesRequest\x12\x13\n\x0b\x64\x65vice_name\x18\x01 \x01(\t\x12\x45\n\x0fpower_up_states\x18\x02 \x03(\x0b\x32,.nidaqmx_grpc.DigitalPowerUpChannelsAndState\"1\n\x1fSetDigitalPowerUpStatesResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x93\x01\n%SetDigitalPullUpPullDownStatesRequest\x12\x13\n\x0b\x64\x65vice_name\x18\x01 \x01(\t\x12U\n\x18pull_up_pull_down_states\x18\x02 \x03(\x0b\x32\x33.nidaqmx_grpc.DigitalPullUpPullDownChannelsAndState\"8\n&SetDigitalPullUpPullDownStatesResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xc5\x01\n%SetExportedSignalAttributeBoolRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12<\n\tattribute\x18\x02 \x01(\x0e\x32\'.nidaqmx_grpc.ExportSignalBoolAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\r\n\x05value\x18\x04 \x01(\x08\x42\x10\n\x0e\x61ttribute_enum\"8\n&SetExportedSignalAttributeBoolResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xc9\x01\n\'SetExportedSignalAttributeDoubleRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12>\n\tattribute\x18\x02 \x01(\x0e\x32).nidaqmx_grpc.ExportSignalDoubleAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\r\n\x05value\x18\x04 \x01(\x01\x42\x10\n\x0e\x61ttribute_enum\":\n(SetExportedSignalAttributeDoubleResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x9c\x02\n&SetExportedSignalAttributeInt32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12=\n\tattribute\x18\x02 \x01(\x0e\x32(.nidaqmx_grpc.ExportSignalInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12?\n\x05value\x18\x04 \x01(\x0e\x32..nidaqmx_grpc.ExportSignalInt32AttributeValuesH\x01\x12\x13\n\tvalue_raw\x18\x05 \x01(\x05H\x01\x42\x10\n\x0e\x61ttribute_enumB\x0c\n\nvalue_enum\"9\n\'SetExportedSignalAttributeInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xc9\x01\n\'SetExportedSignalAttributeStringRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12>\n\tattribute\x18\x02 \x01(\x0e\x32).nidaqmx_grpc.ExportSignalStringAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\r\n\x05value\x18\x04 \x01(\tB\x10\n\x0e\x61ttribute_enum\":\n(SetExportedSignalAttributeStringResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xc9\x01\n\'SetExportedSignalAttributeUInt32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12>\n\tattribute\x18\x02 \x01(\x0e\x32).nidaqmx_grpc.ExportSignalUInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\r\n\x05value\x18\x04 \x01(\rB\x10\n\x0e\x61ttribute_enum\":\n(SetExportedSignalAttributeUInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\"l\n\x1aSetFirstSampClkWhenRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"-\n\x1bSetFirstSampClkWhenResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xb3\x01\n\x1bSetReadAttributeBoolRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x34\n\tattribute\x18\x02 \x01(\x0e\x32\x1f.nidaqmx_grpc.ReadBoolAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\r\n\x05value\x18\x04 \x01(\x08\x42\x10\n\x0e\x61ttribute_enum\".\n\x1cSetReadAttributeBoolResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xb7\x01\n\x1dSetReadAttributeDoubleRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x36\n\tattribute\x18\x02 \x01(\x0e\x32!.nidaqmx_grpc.ReadDoubleAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\r\n\x05value\x18\x04 \x01(\x01\x42\x10\n\x0e\x61ttribute_enum\"0\n\x1eSetReadAttributeDoubleResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x82\x02\n\x1cSetReadAttributeInt32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x35\n\tattribute\x18\x02 \x01(\x0e\x32 .nidaqmx_grpc.ReadInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\x37\n\x05value\x18\x04 \x01(\x0e\x32&.nidaqmx_grpc.ReadInt32AttributeValuesH\x01\x12\x13\n\tvalue_raw\x18\x05 \x01(\x05H\x01\x42\x10\n\x0e\x61ttribute_enumB\x0c\n\nvalue_enum\"/\n\x1dSetReadAttributeInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xb7\x01\n\x1dSetReadAttributeStringRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x36\n\tattribute\x18\x02 \x01(\x0e\x32!.nidaqmx_grpc.ReadStringAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\r\n\x05value\x18\x04 \x01(\tB\x10\n\x0e\x61ttribute_enum\"0\n\x1eSetReadAttributeStringResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xb7\x01\n\x1dSetReadAttributeUInt32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x36\n\tattribute\x18\x02 \x01(\x0e\x32!.nidaqmx_grpc.ReadUInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\r\n\x05value\x18\x04 \x01(\rB\x10\n\x0e\x61ttribute_enum\"0\n\x1eSetReadAttributeUInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xb7\x01\n\x1dSetReadAttributeUInt64Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x36\n\tattribute\x18\x02 \x01(\x0e\x32!.nidaqmx_grpc.ReadUInt64AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\r\n\x05value\x18\x04 \x01(\x04\x42\x10\n\x0e\x61ttribute_enum\"0\n\x1eSetReadAttributeUInt64Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xbb\x01\n\x1fSetRealTimeAttributeBoolRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x38\n\tattribute\x18\x02 \x01(\x0e\x32#.nidaqmx_grpc.RealTimeBoolAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\r\n\x05value\x18\x04 \x01(\x08\x42\x10\n\x0e\x61ttribute_enum\"2\n SetRealTimeAttributeBoolResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x8e\x02\n SetRealTimeAttributeInt32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x39\n\tattribute\x18\x02 \x01(\x0e\x32$.nidaqmx_grpc.RealTimeInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12;\n\x05value\x18\x04 \x01(\x0e\x32*.nidaqmx_grpc.RealTimeInt32AttributeValuesH\x01\x12\x13\n\tvalue_raw\x18\x05 \x01(\x05H\x01\x42\x10\n\x0e\x61ttribute_enumB\x0c\n\nvalue_enum\"3\n!SetRealTimeAttributeInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xbf\x01\n!SetRealTimeAttributeUInt32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12:\n\tattribute\x18\x02 \x01(\x0e\x32%.nidaqmx_grpc.RealTimeUInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\r\n\x05value\x18\x04 \x01(\rB\x10\n\x0e\x61ttribute_enum\"4\n\"SetRealTimeAttributeUInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xa7\x01\n\x1eSetScaleAttributeDoubleRequest\x12\x12\n\nscale_name\x18\x01 \x01(\t\x12\x37\n\tattribute\x18\x02 \x01(\x0e\x32\".nidaqmx_grpc.ScaleDoubleAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\r\n\x05value\x18\x04 \x01(\x01\x42\x10\n\x0e\x61ttribute_enum\"1\n\x1fSetScaleAttributeDoubleResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xb1\x01\n#SetScaleAttributeDoubleArrayRequest\x12\x12\n\nscale_name\x18\x01 \x01(\t\x12<\n\tattribute\x18\x02 \x01(\x0e\x32\'.nidaqmx_grpc.ScaleDoubleArrayAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\r\n\x05value\x18\x04 \x03(\x01\x42\x10\n\x0e\x61ttribute_enum\"6\n$SetScaleAttributeDoubleArrayResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xf3\x01\n\x1dSetScaleAttributeInt32Request\x12\x12\n\nscale_name\x18\x01 \x01(\t\x12\x36\n\tattribute\x18\x02 \x01(\x0e\x32!.nidaqmx_grpc.ScaleInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\x38\n\x05value\x18\x04 \x01(\x0e\x32\'.nidaqmx_grpc.ScaleInt32AttributeValuesH\x01\x12\x13\n\tvalue_raw\x18\x05 \x01(\x05H\x01\x42\x10\n\x0e\x61ttribute_enumB\x0c\n\nvalue_enum\"0\n\x1eSetScaleAttributeInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xa7\x01\n\x1eSetScaleAttributeStringRequest\x12\x12\n\nscale_name\x18\x01 \x01(\t\x12\x37\n\tattribute\x18\x02 \x01(\x0e\x32\".nidaqmx_grpc.ScaleStringAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\r\n\x05value\x18\x04 \x01(\tB\x10\n\x0e\x61ttribute_enum\"1\n\x1fSetScaleAttributeStringResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"m\n\x1bSetStartTrigTrigWhenRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\".\n\x1cSetStartTrigTrigWhenResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"m\n\x1bSetSyncPulseTimeWhenRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\".\n\x1cSetSyncPulseTimeWhenResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xb7\x01\n\x1dSetTimingAttributeBoolRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x36\n\tattribute\x18\x02 \x01(\x0e\x32!.nidaqmx_grpc.TimingBoolAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\r\n\x05value\x18\x04 \x01(\x08\x42\x10\n\x0e\x61ttribute_enum\"0\n\x1eSetTimingAttributeBoolResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xbb\x01\n\x1fSetTimingAttributeDoubleRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x38\n\tattribute\x18\x02 \x01(\x0e\x32#.nidaqmx_grpc.TimingDoubleAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\r\n\x05value\x18\x04 \x01(\x01\x42\x10\n\x0e\x61ttribute_enum\"2\n SetTimingAttributeDoubleResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xcf\x01\n\x1fSetTimingAttributeExBoolRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x14\n\x0c\x64\x65vice_names\x18\x02 \x01(\t\x12\x36\n\tattribute\x18\x03 \x01(\x0e\x32!.nidaqmx_grpc.TimingBoolAttributeH\x00\x12\x17\n\rattribute_raw\x18\x04 \x01(\x05H\x00\x12\r\n\x05value\x18\x05 \x01(\x08\x42\x10\n\x0e\x61ttribute_enum\"2\n SetTimingAttributeExBoolResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xd3\x01\n!SetTimingAttributeExDoubleRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x14\n\x0c\x64\x65vice_names\x18\x02 \x01(\t\x12\x38\n\tattribute\x18\x03 \x01(\x0e\x32#.nidaqmx_grpc.TimingDoubleAttributeH\x00\x12\x17\n\rattribute_raw\x18\x04 \x01(\x05H\x00\x12\r\n\x05value\x18\x05 \x01(\x01\x42\x10\n\x0e\x61ttribute_enum\"4\n\"SetTimingAttributeExDoubleResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xa0\x02\n SetTimingAttributeExInt32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x14\n\x0c\x64\x65vice_names\x18\x02 \x01(\t\x12\x37\n\tattribute\x18\x03 \x01(\x0e\x32\".nidaqmx_grpc.TimingInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x04 \x01(\x05H\x00\x12\x39\n\x05value\x18\x05 \x01(\x0e\x32(.nidaqmx_grpc.TimingInt32AttributeValuesH\x01\x12\x13\n\tvalue_raw\x18\x06 \x01(\x05H\x01\x42\x10\n\x0e\x61ttribute_enumB\x0c\n\nvalue_enum\"3\n!SetTimingAttributeExInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xd3\x01\n!SetTimingAttributeExStringRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x14\n\x0c\x64\x65vice_names\x18\x02 \x01(\t\x12\x38\n\tattribute\x18\x03 \x01(\x0e\x32#.nidaqmx_grpc.TimingStringAttributeH\x00\x12\x17\n\rattribute_raw\x18\x04 \x01(\x05H\x00\x12\r\n\x05value\x18\x05 \x01(\tB\x10\n\x0e\x61ttribute_enum\"4\n\"SetTimingAttributeExStringResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xf5\x01\n$SetTimingAttributeExTimestampRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x14\n\x0c\x64\x65vice_names\x18\x02 \x01(\t\x12;\n\tattribute\x18\x03 \x01(\x0e\x32&.nidaqmx_grpc.TimingTimestampAttributeH\x00\x12\x17\n\rattribute_raw\x18\x04 \x01(\x05H\x00\x12)\n\x05value\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x10\n\x0e\x61ttribute_enum\"7\n%SetTimingAttributeExTimestampResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xd3\x01\n!SetTimingAttributeExUInt32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x14\n\x0c\x64\x65vice_names\x18\x02 \x01(\t\x12\x38\n\tattribute\x18\x03 \x01(\x0e\x32#.nidaqmx_grpc.TimingUInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x04 \x01(\x05H\x00\x12\r\n\x05value\x18\x05 \x01(\rB\x10\n\x0e\x61ttribute_enum\"4\n\"SetTimingAttributeExUInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xd3\x01\n!SetTimingAttributeExUInt64Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x14\n\x0c\x64\x65vice_names\x18\x02 \x01(\t\x12\x38\n\tattribute\x18\x03 \x01(\x0e\x32#.nidaqmx_grpc.TimingUInt64AttributeH\x00\x12\x17\n\rattribute_raw\x18\x04 \x01(\x05H\x00\x12\r\n\x05value\x18\x05 \x01(\x04\x42\x10\n\x0e\x61ttribute_enum\"4\n\"SetTimingAttributeExUInt64Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x88\x02\n\x1eSetTimingAttributeInt32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x37\n\tattribute\x18\x02 \x01(\x0e\x32\".nidaqmx_grpc.TimingInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\x39\n\x05value\x18\x04 \x01(\x0e\x32(.nidaqmx_grpc.TimingInt32AttributeValuesH\x01\x12\x13\n\tvalue_raw\x18\x05 \x01(\x05H\x01\x42\x10\n\x0e\x61ttribute_enumB\x0c\n\nvalue_enum\"1\n\x1fSetTimingAttributeInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xbb\x01\n\x1fSetTimingAttributeStringRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x38\n\tattribute\x18\x02 \x01(\x0e\x32#.nidaqmx_grpc.TimingStringAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\r\n\x05value\x18\x04 \x01(\tB\x10\n\x0e\x61ttribute_enum\"2\n SetTimingAttributeStringResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xdd\x01\n\"SetTimingAttributeTimestampRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12;\n\tattribute\x18\x02 \x01(\x0e\x32&.nidaqmx_grpc.TimingTimestampAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12)\n\x05value\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x10\n\x0e\x61ttribute_enum\"5\n#SetTimingAttributeTimestampResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xbb\x01\n\x1fSetTimingAttributeUInt32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x38\n\tattribute\x18\x02 \x01(\x0e\x32#.nidaqmx_grpc.TimingUInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\r\n\x05value\x18\x04 \x01(\rB\x10\n\x0e\x61ttribute_enum\"2\n SetTimingAttributeUInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xbb\x01\n\x1fSetTimingAttributeUInt64Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x38\n\tattribute\x18\x02 \x01(\x0e\x32#.nidaqmx_grpc.TimingUInt64AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\r\n\x05value\x18\x04 \x01(\x04\x42\x10\n\x0e\x61ttribute_enum\"2\n SetTimingAttributeUInt64Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xb6\x01\n\x1bSetTrigAttributeBoolRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x37\n\tattribute\x18\x02 \x01(\x0e\x32\".nidaqmx_grpc.TriggerBoolAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\r\n\x05value\x18\x04 \x01(\x08\x42\x10\n\x0e\x61ttribute_enum\".\n\x1cSetTrigAttributeBoolResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xba\x01\n\x1dSetTrigAttributeDoubleRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x39\n\tattribute\x18\x02 \x01(\x0e\x32$.nidaqmx_grpc.TriggerDoubleAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\r\n\x05value\x18\x04 \x01(\x01\x42\x10\n\x0e\x61ttribute_enum\"0\n\x1eSetTrigAttributeDoubleResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xc4\x01\n\"SetTrigAttributeDoubleArrayRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12>\n\tattribute\x18\x02 \x01(\x0e\x32).nidaqmx_grpc.TriggerDoubleArrayAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\r\n\x05value\x18\x04 \x03(\x01\x42\x10\n\x0e\x61ttribute_enum\"5\n#SetTrigAttributeDoubleArrayResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x88\x02\n\x1cSetTrigAttributeInt32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x38\n\tattribute\x18\x02 \x01(\x0e\x32#.nidaqmx_grpc.TriggerInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12:\n\x05value\x18\x04 \x01(\x0e\x32).nidaqmx_grpc.TriggerInt32AttributeValuesH\x01\x12\x13\n\tvalue_raw\x18\x05 \x01(\x05H\x01\x42\x10\n\x0e\x61ttribute_enumB\x0c\n\nvalue_enum\"/\n\x1dSetTrigAttributeInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xc2\x01\n!SetTrigAttributeInt32ArrayRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12=\n\tattribute\x18\x02 \x01(\x0e\x32(.nidaqmx_grpc.TriggerInt32ArrayAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\r\n\x05value\x18\x04 \x03(\x05\x42\x10\n\x0e\x61ttribute_enum\"4\n\"SetTrigAttributeInt32ArrayResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xba\x01\n\x1dSetTrigAttributeStringRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x39\n\tattribute\x18\x02 \x01(\x0e\x32$.nidaqmx_grpc.TriggerStringAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\r\n\x05value\x18\x04 \x01(\tB\x10\n\x0e\x61ttribute_enum\"0\n\x1eSetTrigAttributeStringResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xdc\x01\n SetTrigAttributeTimestampRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12<\n\tattribute\x18\x02 \x01(\x0e\x32\'.nidaqmx_grpc.TriggerTimestampAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12)\n\x05value\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x10\n\x0e\x61ttribute_enum\"3\n!SetTrigAttributeTimestampResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xba\x01\n\x1dSetTrigAttributeUInt32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x39\n\tattribute\x18\x02 \x01(\x0e\x32$.nidaqmx_grpc.TriggerUInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\r\n\x05value\x18\x04 \x01(\rB\x10\n\x0e\x61ttribute_enum\"0\n\x1eSetTrigAttributeUInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xca\x01\n\x1fSetWatchdogAttributeBoolRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\r\n\x05lines\x18\x02 \x01(\t\x12\x38\n\tattribute\x18\x03 \x01(\x0e\x32#.nidaqmx_grpc.WatchdogBoolAttributeH\x00\x12\x17\n\rattribute_raw\x18\x04 \x01(\x05H\x00\x12\r\n\x05value\x18\x05 \x01(\x08\x42\x10\n\x0e\x61ttribute_enum\"2\n SetWatchdogAttributeBoolResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xce\x01\n!SetWatchdogAttributeDoubleRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\r\n\x05lines\x18\x02 \x01(\t\x12:\n\tattribute\x18\x03 \x01(\x0e\x32%.nidaqmx_grpc.WatchdogDoubleAttributeH\x00\x12\x17\n\rattribute_raw\x18\x04 \x01(\x05H\x00\x12\r\n\x05value\x18\x05 \x01(\x01\x42\x10\n\x0e\x61ttribute_enum\"4\n\"SetWatchdogAttributeDoubleResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x9d\x02\n SetWatchdogAttributeInt32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\r\n\x05lines\x18\x02 \x01(\t\x12\x39\n\tattribute\x18\x03 \x01(\x0e\x32$.nidaqmx_grpc.WatchdogInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x04 \x01(\x05H\x00\x12;\n\x05value\x18\x05 \x01(\x0e\x32*.nidaqmx_grpc.WatchdogInt32AttributeValuesH\x01\x12\x13\n\tvalue_raw\x18\x06 \x01(\x05H\x01\x42\x10\n\x0e\x61ttribute_enumB\x0c\n\nvalue_enum\"3\n!SetWatchdogAttributeInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xce\x01\n!SetWatchdogAttributeStringRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\r\n\x05lines\x18\x02 \x01(\t\x12:\n\tattribute\x18\x03 \x01(\x0e\x32%.nidaqmx_grpc.WatchdogStringAttributeH\x00\x12\x17\n\rattribute_raw\x18\x04 \x01(\x05H\x00\x12\r\n\x05value\x18\x05 \x01(\tB\x10\n\x0e\x61ttribute_enum\"4\n\"SetWatchdogAttributeStringResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xb5\x01\n\x1cSetWriteAttributeBoolRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x35\n\tattribute\x18\x02 \x01(\x0e\x32 .nidaqmx_grpc.WriteBoolAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\r\n\x05value\x18\x04 \x01(\x08\x42\x10\n\x0e\x61ttribute_enum\"/\n\x1dSetWriteAttributeBoolResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xb9\x01\n\x1eSetWriteAttributeDoubleRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x37\n\tattribute\x18\x02 \x01(\x0e\x32\".nidaqmx_grpc.WriteDoubleAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\r\n\x05value\x18\x04 \x01(\x01\x42\x10\n\x0e\x61ttribute_enum\"1\n\x1fSetWriteAttributeDoubleResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x85\x02\n\x1dSetWriteAttributeInt32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x36\n\tattribute\x18\x02 \x01(\x0e\x32!.nidaqmx_grpc.WriteInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\x38\n\x05value\x18\x04 \x01(\x0e\x32\'.nidaqmx_grpc.WriteInt32AttributeValuesH\x01\x12\x13\n\tvalue_raw\x18\x05 \x01(\x05H\x01\x42\x10\n\x0e\x61ttribute_enumB\x0c\n\nvalue_enum\"0\n\x1eSetWriteAttributeInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xb9\x01\n\x1eSetWriteAttributeStringRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x37\n\tattribute\x18\x02 \x01(\x0e\x32\".nidaqmx_grpc.WriteStringAttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\r\n\x05value\x18\x04 \x01(\tB\x10\n\x0e\x61ttribute_enum\"1\n\x1fSetWriteAttributeStringResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xb9\x01\n\x1eSetWriteAttributeUInt32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x37\n\tattribute\x18\x02 \x01(\x0e\x32\".nidaqmx_grpc.WriteUInt32AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\r\n\x05value\x18\x04 \x01(\rB\x10\n\x0e\x61ttribute_enum\"1\n\x1fSetWriteAttributeUInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xb9\x01\n\x1eSetWriteAttributeUInt64Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x37\n\tattribute\x18\x02 \x01(\x0e\x32\".nidaqmx_grpc.WriteUInt64AttributeH\x00\x12\x17\n\rattribute_raw\x18\x03 \x01(\x05H\x00\x12\r\n\x05value\x18\x04 \x01(\x04\x42\x10\n\x0e\x61ttribute_enum\"1\n\x1fSetWriteAttributeUInt64Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\"N\n\x13StartNewFileRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x11\n\tfile_path\x18\x02 \x01(\t\"&\n\x14StartNewFileResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"8\n\x10StartTaskRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\"#\n\x11StartTaskResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"7\n\x0fStopTaskRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\"\"\n\x10StopTaskResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x92\x01\n\x12TaskControlRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x31\n\x06\x61\x63tion\x18\x02 \x01(\x0e\x32\x1f.nidaqmx_grpc.TaskControlActionH\x00\x12\x14\n\naction_raw\x18\x03 \x01(\x05H\x00\x42\r\n\x0b\x61\x63tion_enum\"%\n\x13TaskControlResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"4\n\x19TristateOutputTermRequest\x12\x17\n\x0foutput_terminal\x18\x01 \x01(\t\",\n\x1aTristateOutputTermResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"B\n\x1aUnregisterDoneEventRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\"-\n\x1bUnregisterDoneEventResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xe4\x01\n#UnregisterEveryNSamplesEventRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12J\n\x1a\x65very_n_samples_event_type\x18\x02 \x01(\x0e\x32$.nidaqmx_grpc.EveryNSamplesEventTypeH\x00\x12(\n\x1e\x65very_n_samples_event_type_raw\x18\x03 \x01(\x05H\x00\x42!\n\x1f\x65very_n_samples_event_type_enum\"6\n$UnregisterEveryNSamplesEventResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x9b\x01\n\x1cUnregisterSignalEventRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12*\n\tsignal_id\x18\x02 \x01(\x0e\x32\x15.nidaqmx_grpc.Signal2H\x00\x12\x17\n\rsignal_id_raw\x18\x03 \x01(\x05H\x00\x42\x10\n\x0esignal_id_enum\"/\n\x1dUnregisterSignalEventResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"4\n\x1dUnreserveNetworkDeviceRequest\x12\x13\n\x0b\x64\x65vice_name\x18\x01 \x01(\t\"0\n\x1eUnreserveNetworkDeviceResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"V\n\x1dWaitForNextSampleClockRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07timeout\x18\x02 \x01(\x01\"A\n\x1eWaitForNextSampleClockResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x0f\n\x07is_late\x18\x02 \x01(\x08\"[\n\"BeginWaitForNextSampleClockRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0f\n\x07timeout\x18\x02 \x01(\x01\"a\n#BeginWaitForNextSampleClockResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"H\n%MonikerWaitForNextSampleClockResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x0f\n\x07is_late\x18\x02 \x01(\x08\"\xc5\x01\n\x1cWaitForValidTimestampRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x37\n\x0ftimestamp_event\x18\x02 \x01(\x0e\x32\x1c.nidaqmx_grpc.TimestampEventH\x00\x12\x1d\n\x13timestamp_event_raw\x18\x03 \x01(\x05H\x00\x12\x0f\n\x07timeout\x18\x04 \x01(\x01\x42\x16\n\x14timestamp_event_enum\"^\n\x1dWaitForValidTimestampResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12-\n\ttimestamp\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"V\n\x18WaitUntilTaskDoneRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x14\n\x0ctime_to_wait\x18\x02 \x01(\x01\"+\n\x19WaitUntilTaskDoneResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xf0\x01\n\x15WriteAnalogF64Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x12\n\nauto_start\x18\x03 \x01(\x08\x12\x0f\n\x07timeout\x18\x04 \x01(\x01\x12,\n\x0b\x64\x61ta_layout\x18\x05 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x19\n\x0f\x64\x61ta_layout_raw\x18\x06 \x01(\x05H\x00\x12\x13\n\x0bwrite_array\x18\x07 \x03(\x01\x42\x12\n\x10\x64\x61ta_layout_enum\"H\n\x16WriteAnalogF64Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x1e\n\x16samps_per_chan_written\x18\x02 \x01(\x05\"\xe0\x01\n\x1a\x42\x65ginWriteAnalogF64Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x12\n\nauto_start\x18\x03 \x01(\x08\x12\x0f\n\x07timeout\x18\x04 \x01(\x01\x12,\n\x0b\x64\x61ta_layout\x18\x05 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x19\n\x0f\x64\x61ta_layout_raw\x18\x06 \x01(\x05H\x00\x42\x12\n\x10\x64\x61ta_layout_enum\"Y\n\x1b\x42\x65ginWriteAnalogF64Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"3\n\x1cMonikerWriteAnalogF64Request\x12\x13\n\x0bwrite_array\x18\x01 \x03(\x01\"O\n\x1dMonikerWriteAnalogF64Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x1e\n\x16samps_per_chan_written\x18\x02 \x01(\x05\"w\n\x1bWriteAnalogScalarF64Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x12\n\nauto_start\x18\x02 \x01(\x08\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12\r\n\x05value\x18\x04 \x01(\x01\".\n\x1cWriteAnalogScalarF64Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\"m\n BeginWriteAnalogScalarF64Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x12\n\nauto_start\x18\x02 \x01(\x08\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\"_\n!BeginWriteAnalogScalarF64Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"3\n\"MonikerWriteAnalogScalarF64Request\x12\r\n\x05value\x18\x01 \x01(\x01\"5\n#MonikerWriteAnalogScalarF64Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xf0\x01\n\x15WriteBinaryI16Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x12\n\nauto_start\x18\x03 \x01(\x08\x12\x0f\n\x07timeout\x18\x04 \x01(\x01\x12,\n\x0b\x64\x61ta_layout\x18\x05 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x19\n\x0f\x64\x61ta_layout_raw\x18\x06 \x01(\x05H\x00\x12\x13\n\x0bwrite_array\x18\x07 \x03(\x05\x42\x12\n\x10\x64\x61ta_layout_enum\"H\n\x16WriteBinaryI16Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x1e\n\x16samps_per_chan_written\x18\x02 \x01(\x05\"\xe0\x01\n\x1a\x42\x65ginWriteBinaryI16Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x12\n\nauto_start\x18\x03 \x01(\x08\x12\x0f\n\x07timeout\x18\x04 \x01(\x01\x12,\n\x0b\x64\x61ta_layout\x18\x05 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x19\n\x0f\x64\x61ta_layout_raw\x18\x06 \x01(\x05H\x00\x42\x12\n\x10\x64\x61ta_layout_enum\"Y\n\x1b\x42\x65ginWriteBinaryI16Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"3\n\x1cMonikerWriteBinaryI16Request\x12\x13\n\x0bwrite_array\x18\x01 \x03(\x05\"O\n\x1dMonikerWriteBinaryI16Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x1e\n\x16samps_per_chan_written\x18\x02 \x01(\x05\"\xf0\x01\n\x15WriteBinaryI32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x12\n\nauto_start\x18\x03 \x01(\x08\x12\x0f\n\x07timeout\x18\x04 \x01(\x01\x12,\n\x0b\x64\x61ta_layout\x18\x05 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x19\n\x0f\x64\x61ta_layout_raw\x18\x06 \x01(\x05H\x00\x12\x13\n\x0bwrite_array\x18\x07 \x03(\x05\x42\x12\n\x10\x64\x61ta_layout_enum\"H\n\x16WriteBinaryI32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x1e\n\x16samps_per_chan_written\x18\x02 \x01(\x05\"\xe0\x01\n\x1a\x42\x65ginWriteBinaryI32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x12\n\nauto_start\x18\x03 \x01(\x08\x12\x0f\n\x07timeout\x18\x04 \x01(\x01\x12,\n\x0b\x64\x61ta_layout\x18\x05 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x19\n\x0f\x64\x61ta_layout_raw\x18\x06 \x01(\x05H\x00\x42\x12\n\x10\x64\x61ta_layout_enum\"Y\n\x1b\x42\x65ginWriteBinaryI32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"3\n\x1cMonikerWriteBinaryI32Request\x12\x13\n\x0bwrite_array\x18\x01 \x03(\x05\"O\n\x1dMonikerWriteBinaryI32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x1e\n\x16samps_per_chan_written\x18\x02 \x01(\x05\"\xf0\x01\n\x15WriteBinaryU16Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x12\n\nauto_start\x18\x03 \x01(\x08\x12\x0f\n\x07timeout\x18\x04 \x01(\x01\x12,\n\x0b\x64\x61ta_layout\x18\x05 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x19\n\x0f\x64\x61ta_layout_raw\x18\x06 \x01(\x05H\x00\x12\x13\n\x0bwrite_array\x18\x07 \x03(\rB\x12\n\x10\x64\x61ta_layout_enum\"H\n\x16WriteBinaryU16Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x1e\n\x16samps_per_chan_written\x18\x02 \x01(\x05\"\xe0\x01\n\x1a\x42\x65ginWriteBinaryU16Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x12\n\nauto_start\x18\x03 \x01(\x08\x12\x0f\n\x07timeout\x18\x04 \x01(\x01\x12,\n\x0b\x64\x61ta_layout\x18\x05 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x19\n\x0f\x64\x61ta_layout_raw\x18\x06 \x01(\x05H\x00\x42\x12\n\x10\x64\x61ta_layout_enum\"Y\n\x1b\x42\x65ginWriteBinaryU16Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"3\n\x1cMonikerWriteBinaryU16Request\x12\x13\n\x0bwrite_array\x18\x01 \x03(\r\"O\n\x1dMonikerWriteBinaryU16Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x1e\n\x16samps_per_chan_written\x18\x02 \x01(\x05\"\xf0\x01\n\x15WriteBinaryU32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x12\n\nauto_start\x18\x03 \x01(\x08\x12\x0f\n\x07timeout\x18\x04 \x01(\x01\x12,\n\x0b\x64\x61ta_layout\x18\x05 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x19\n\x0f\x64\x61ta_layout_raw\x18\x06 \x01(\x05H\x00\x12\x13\n\x0bwrite_array\x18\x07 \x03(\rB\x12\n\x10\x64\x61ta_layout_enum\"H\n\x16WriteBinaryU32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x1e\n\x16samps_per_chan_written\x18\x02 \x01(\x05\"\xe0\x01\n\x1a\x42\x65ginWriteBinaryU32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x12\n\nauto_start\x18\x03 \x01(\x08\x12\x0f\n\x07timeout\x18\x04 \x01(\x01\x12,\n\x0b\x64\x61ta_layout\x18\x05 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x19\n\x0f\x64\x61ta_layout_raw\x18\x06 \x01(\x05H\x00\x42\x12\n\x10\x64\x61ta_layout_enum\"Y\n\x1b\x42\x65ginWriteBinaryU32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"3\n\x1cMonikerWriteBinaryU32Request\x12\x13\n\x0bwrite_array\x18\x01 \x03(\r\"O\n\x1dMonikerWriteBinaryU32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x1e\n\x16samps_per_chan_written\x18\x02 \x01(\x05\"\x80\x02\n\x13WriteCtrFreqRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x12\n\nauto_start\x18\x03 \x01(\x08\x12\x0f\n\x07timeout\x18\x04 \x01(\x01\x12,\n\x0b\x64\x61ta_layout\x18\x05 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x19\n\x0f\x64\x61ta_layout_raw\x18\x06 \x01(\x05H\x00\x12\x11\n\tfrequency\x18\x07 \x03(\x01\x12\x12\n\nduty_cycle\x18\x08 \x03(\x01\x42\x12\n\x10\x64\x61ta_layout_enum\"J\n\x14WriteCtrFreqResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\"\n\x1anum_samps_per_chan_written\x18\x02 \x01(\x05\"\xde\x01\n\x18\x42\x65ginWriteCtrFreqRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x12\n\nauto_start\x18\x03 \x01(\x08\x12\x0f\n\x07timeout\x18\x04 \x01(\x01\x12,\n\x0b\x64\x61ta_layout\x18\x05 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x19\n\x0f\x64\x61ta_layout_raw\x18\x06 \x01(\x05H\x00\x42\x12\n\x10\x64\x61ta_layout_enum\"W\n\x19\x42\x65ginWriteCtrFreqResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"C\n\x1aMonikerWriteCtrFreqRequest\x12\x11\n\tfrequency\x18\x01 \x03(\x01\x12\x12\n\nduty_cycle\x18\x02 \x03(\x01\"Q\n\x1bMonikerWriteCtrFreqResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\"\n\x1anum_samps_per_chan_written\x18\x02 \x01(\x05\"\x8d\x01\n\x19WriteCtrFreqScalarRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x12\n\nauto_start\x18\x02 \x01(\x08\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12\x11\n\tfrequency\x18\x04 \x01(\x01\x12\x12\n\nduty_cycle\x18\x05 \x01(\x01\",\n\x1aWriteCtrFreqScalarResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"k\n\x1e\x42\x65ginWriteCtrFreqScalarRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x12\n\nauto_start\x18\x02 \x01(\x08\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\"]\n\x1f\x42\x65ginWriteCtrFreqScalarResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"I\n MonikerWriteCtrFreqScalarRequest\x12\x11\n\tfrequency\x18\x01 \x01(\x01\x12\x12\n\nduty_cycle\x18\x02 \x01(\x01\"3\n!MonikerWriteCtrFreqScalarResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x81\x02\n\x14WriteCtrTicksRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x12\n\nauto_start\x18\x03 \x01(\x08\x12\x0f\n\x07timeout\x18\x04 \x01(\x01\x12,\n\x0b\x64\x61ta_layout\x18\x05 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x19\n\x0f\x64\x61ta_layout_raw\x18\x06 \x01(\x05H\x00\x12\x12\n\nhigh_ticks\x18\x07 \x03(\r\x12\x11\n\tlow_ticks\x18\x08 \x03(\rB\x12\n\x10\x64\x61ta_layout_enum\"K\n\x15WriteCtrTicksResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\"\n\x1anum_samps_per_chan_written\x18\x02 \x01(\x05\"\xdf\x01\n\x19\x42\x65ginWriteCtrTicksRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x12\n\nauto_start\x18\x03 \x01(\x08\x12\x0f\n\x07timeout\x18\x04 \x01(\x01\x12,\n\x0b\x64\x61ta_layout\x18\x05 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x19\n\x0f\x64\x61ta_layout_raw\x18\x06 \x01(\x05H\x00\x42\x12\n\x10\x64\x61ta_layout_enum\"X\n\x1a\x42\x65ginWriteCtrTicksResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"D\n\x1bMonikerWriteCtrTicksRequest\x12\x12\n\nhigh_ticks\x18\x01 \x03(\r\x12\x11\n\tlow_ticks\x18\x02 \x03(\r\"R\n\x1cMonikerWriteCtrTicksResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\"\n\x1anum_samps_per_chan_written\x18\x02 \x01(\x05\"\x8e\x01\n\x1aWriteCtrTicksScalarRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x12\n\nauto_start\x18\x02 \x01(\x08\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12\x12\n\nhigh_ticks\x18\x04 \x01(\r\x12\x11\n\tlow_ticks\x18\x05 \x01(\r\"-\n\x1bWriteCtrTicksScalarResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"l\n\x1f\x42\x65ginWriteCtrTicksScalarRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x12\n\nauto_start\x18\x02 \x01(\x08\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\"^\n BeginWriteCtrTicksScalarResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"J\n!MonikerWriteCtrTicksScalarRequest\x12\x12\n\nhigh_ticks\x18\x01 \x01(\r\x12\x11\n\tlow_ticks\x18\x02 \x01(\r\"4\n\"MonikerWriteCtrTicksScalarResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xfe\x01\n\x13WriteCtrTimeRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x12\n\nauto_start\x18\x03 \x01(\x08\x12\x0f\n\x07timeout\x18\x04 \x01(\x01\x12,\n\x0b\x64\x61ta_layout\x18\x05 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x19\n\x0f\x64\x61ta_layout_raw\x18\x06 \x01(\x05H\x00\x12\x11\n\thigh_time\x18\x07 \x03(\x01\x12\x10\n\x08low_time\x18\x08 \x03(\x01\x42\x12\n\x10\x64\x61ta_layout_enum\"J\n\x14WriteCtrTimeResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\"\n\x1anum_samps_per_chan_written\x18\x02 \x01(\x05\"\xde\x01\n\x18\x42\x65ginWriteCtrTimeRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x12\n\nauto_start\x18\x03 \x01(\x08\x12\x0f\n\x07timeout\x18\x04 \x01(\x01\x12,\n\x0b\x64\x61ta_layout\x18\x05 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x19\n\x0f\x64\x61ta_layout_raw\x18\x06 \x01(\x05H\x00\x42\x12\n\x10\x64\x61ta_layout_enum\"W\n\x19\x42\x65ginWriteCtrTimeResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"A\n\x1aMonikerWriteCtrTimeRequest\x12\x11\n\thigh_time\x18\x01 \x03(\x01\x12\x10\n\x08low_time\x18\x02 \x03(\x01\"Q\n\x1bMonikerWriteCtrTimeResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\"\n\x1anum_samps_per_chan_written\x18\x02 \x01(\x05\"\x8b\x01\n\x19WriteCtrTimeScalarRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x12\n\nauto_start\x18\x02 \x01(\x08\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12\x11\n\thigh_time\x18\x04 \x01(\x01\x12\x10\n\x08low_time\x18\x05 \x01(\x01\",\n\x1aWriteCtrTimeScalarResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"k\n\x1e\x42\x65ginWriteCtrTimeScalarRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x12\n\nauto_start\x18\x02 \x01(\x08\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\"]\n\x1f\x42\x65ginWriteCtrTimeScalarResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"G\n MonikerWriteCtrTimeScalarRequest\x12\x11\n\thigh_time\x18\x01 \x01(\x01\x12\x10\n\x08low_time\x18\x02 \x01(\x01\"3\n!MonikerWriteCtrTimeScalarResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xf3\x01\n\x18WriteDigitalLinesRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x12\n\nauto_start\x18\x03 \x01(\x08\x12\x0f\n\x07timeout\x18\x04 \x01(\x01\x12,\n\x0b\x64\x61ta_layout\x18\x05 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x19\n\x0f\x64\x61ta_layout_raw\x18\x06 \x01(\x05H\x00\x12\x13\n\x0bwrite_array\x18\x07 \x01(\x0c\x42\x12\n\x10\x64\x61ta_layout_enum\"K\n\x19WriteDigitalLinesResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x1e\n\x16samps_per_chan_written\x18\x02 \x01(\x05\"\xe3\x01\n\x1d\x42\x65ginWriteDigitalLinesRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x12\n\nauto_start\x18\x03 \x01(\x08\x12\x0f\n\x07timeout\x18\x04 \x01(\x01\x12,\n\x0b\x64\x61ta_layout\x18\x05 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x19\n\x0f\x64\x61ta_layout_raw\x18\x06 \x01(\x05H\x00\x42\x12\n\x10\x64\x61ta_layout_enum\"\\\n\x1e\x42\x65ginWriteDigitalLinesResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"6\n\x1fMonikerWriteDigitalLinesRequest\x12\x13\n\x0bwrite_array\x18\x01 \x01(\x0c\"R\n MonikerWriteDigitalLinesResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x1e\n\x16samps_per_chan_written\x18\x02 \x01(\x05\"x\n\x1cWriteDigitalScalarU32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x12\n\nauto_start\x18\x02 \x01(\x08\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12\r\n\x05value\x18\x04 \x01(\r\"/\n\x1dWriteDigitalScalarU32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\"n\n!BeginWriteDigitalScalarU32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x12\n\nauto_start\x18\x02 \x01(\x08\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\"`\n\"BeginWriteDigitalScalarU32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"4\n#MonikerWriteDigitalScalarU32Request\x12\r\n\x05value\x18\x01 \x01(\r\"6\n$MonikerWriteDigitalScalarU32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xf1\x01\n\x16WriteDigitalU16Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x12\n\nauto_start\x18\x03 \x01(\x08\x12\x0f\n\x07timeout\x18\x04 \x01(\x01\x12,\n\x0b\x64\x61ta_layout\x18\x05 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x19\n\x0f\x64\x61ta_layout_raw\x18\x06 \x01(\x05H\x00\x12\x13\n\x0bwrite_array\x18\x07 \x03(\rB\x12\n\x10\x64\x61ta_layout_enum\"I\n\x17WriteDigitalU16Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x1e\n\x16samps_per_chan_written\x18\x02 \x01(\x05\"\xe1\x01\n\x1b\x42\x65ginWriteDigitalU16Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x12\n\nauto_start\x18\x03 \x01(\x08\x12\x0f\n\x07timeout\x18\x04 \x01(\x01\x12,\n\x0b\x64\x61ta_layout\x18\x05 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x19\n\x0f\x64\x61ta_layout_raw\x18\x06 \x01(\x05H\x00\x42\x12\n\x10\x64\x61ta_layout_enum\"Z\n\x1c\x42\x65ginWriteDigitalU16Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"4\n\x1dMonikerWriteDigitalU16Request\x12\x13\n\x0bwrite_array\x18\x01 \x03(\r\"P\n\x1eMonikerWriteDigitalU16Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x1e\n\x16samps_per_chan_written\x18\x02 \x01(\x05\"\xf1\x01\n\x16WriteDigitalU32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x12\n\nauto_start\x18\x03 \x01(\x08\x12\x0f\n\x07timeout\x18\x04 \x01(\x01\x12,\n\x0b\x64\x61ta_layout\x18\x05 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x19\n\x0f\x64\x61ta_layout_raw\x18\x06 \x01(\x05H\x00\x12\x13\n\x0bwrite_array\x18\x07 \x03(\rB\x12\n\x10\x64\x61ta_layout_enum\"I\n\x17WriteDigitalU32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x1e\n\x16samps_per_chan_written\x18\x02 \x01(\x05\"\xe1\x01\n\x1b\x42\x65ginWriteDigitalU32Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x12\n\nauto_start\x18\x03 \x01(\x08\x12\x0f\n\x07timeout\x18\x04 \x01(\x01\x12,\n\x0b\x64\x61ta_layout\x18\x05 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x19\n\x0f\x64\x61ta_layout_raw\x18\x06 \x01(\x05H\x00\x42\x12\n\x10\x64\x61ta_layout_enum\"Z\n\x1c\x42\x65ginWriteDigitalU32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"4\n\x1dMonikerWriteDigitalU32Request\x12\x13\n\x0bwrite_array\x18\x01 \x03(\r\"P\n\x1eMonikerWriteDigitalU32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x1e\n\x16samps_per_chan_written\x18\x02 \x01(\x05\"\xf0\x01\n\x15WriteDigitalU8Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x12\n\nauto_start\x18\x03 \x01(\x08\x12\x0f\n\x07timeout\x18\x04 \x01(\x01\x12,\n\x0b\x64\x61ta_layout\x18\x05 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x19\n\x0f\x64\x61ta_layout_raw\x18\x06 \x01(\x05H\x00\x12\x13\n\x0bwrite_array\x18\x07 \x01(\x0c\x42\x12\n\x10\x64\x61ta_layout_enum\"H\n\x16WriteDigitalU8Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x1e\n\x16samps_per_chan_written\x18\x02 \x01(\x05\"\xe0\x01\n\x1a\x42\x65ginWriteDigitalU8Request\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x12\n\nauto_start\x18\x03 \x01(\x08\x12\x0f\n\x07timeout\x18\x04 \x01(\x01\x12,\n\x0b\x64\x61ta_layout\x18\x05 \x01(\x0e\x32\x15.nidaqmx_grpc.GroupByH\x00\x12\x19\n\x0f\x64\x61ta_layout_raw\x18\x06 \x01(\x05H\x00\x42\x12\n\x10\x64\x61ta_layout_enum\"Y\n\x1b\x42\x65ginWriteDigitalU8Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"3\n\x1cMonikerWriteDigitalU8Request\x12\x13\n\x0bwrite_array\x18\x01 \x01(\x0c\"O\n\x1dMonikerWriteDigitalU8Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x1e\n\x16samps_per_chan_written\x18\x02 \x01(\x05\"f\n\x17WriteIDPinMemoryRequest\x12\x13\n\x0b\x64\x65vice_name\x18\x01 \x01(\t\x12\x13\n\x0bid_pin_name\x18\x02 \x01(\t\x12\x0c\n\x04\x64\x61ta\x18\x03 \x01(\x0c\x12\x13\n\x0b\x66ormat_code\x18\x04 \x01(\r\"*\n\x18WriteIDPinMemoryResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x84\x01\n\x0fWriteRawRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x11\n\tnum_samps\x18\x02 \x01(\x05\x12\x12\n\nauto_start\x18\x03 \x01(\x08\x12\x0f\n\x07timeout\x18\x04 \x01(\x01\x12\x13\n\x0bwrite_array\x18\x05 \x01(\x0c\"B\n\x10WriteRawResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x1e\n\x16samps_per_chan_written\x18\x02 \x01(\x05\"t\n\x14\x42\x65ginWriteRawRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x11\n\tnum_samps\x18\x02 \x01(\x05\x12\x12\n\nauto_start\x18\x03 \x01(\x08\x12\x0f\n\x07timeout\x18\x04 \x01(\x01\"S\n\x15\x42\x65ginWriteRawResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12*\n\x07moniker\x18\x02 \x01(\x0b\x32\x19.ni.data_monikers.Moniker\"-\n\x16MonikerWriteRawRequest\x12\x13\n\x0bwrite_array\x18\x01 \x01(\x0c\"I\n\x17MonikerWriteRawResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x1e\n\x16samps_per_chan_written\x18\x02 \x01(\x05\"\xcb\x01\n\x1bWriteToTEDSFromArrayRequest\x12\x18\n\x10physical_channel\x18\x01 \x01(\t\x12\x12\n\nbit_stream\x18\x02 \x01(\x0c\x12\x41\n\x12\x62\x61sic_teds_options\x18\x03 \x01(\x0e\x32#.nidaqmx_grpc.WriteBasicTEDSOptionsH\x00\x12 \n\x16\x62\x61sic_teds_options_raw\x18\x04 \x01(\x05H\x00\x42\x19\n\x17\x62\x61sic_teds_options_enum\".\n\x1cWriteToTEDSFromArrayResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xc9\x01\n\x1aWriteToTEDSFromFileRequest\x12\x18\n\x10physical_channel\x18\x01 \x01(\t\x12\x11\n\tfile_path\x18\x02 \x01(\t\x12\x41\n\x12\x62\x61sic_teds_options\x18\x03 \x01(\x0e\x32#.nidaqmx_grpc.WriteBasicTEDSOptionsH\x00\x12 \n\x16\x62\x61sic_teds_options_raw\x18\x04 \x01(\x05H\x00\x42\x19\n\x17\x62\x61sic_teds_options_enum\"-\n\x1bWriteToTEDSFromFileResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xfe\x01\n\x1aReadAnalogWaveformsRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12\x46\n\x17waveform_attribute_mode\x18\x04 \x01(\x0e\x32#.nidaqmx_grpc.WaveformAttributeModeH\x00\x12%\n\x1bwaveform_attribute_mode_raw\x18\x05 \x01(\x05H\x00\x42\x1e\n\x1cwaveform_attribute_mode_enum\"\x86\x01\n\x1bReadAnalogWaveformsResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12:\n\twaveforms\x18\x02 \x03(\x0b\x32\'.ni.protobuf.types.DoubleAnalogWaveform\x12\x1b\n\x13samps_per_chan_read\x18\x03 \x01(\x05\"\xff\x01\n\x1bReadDigitalWaveformsRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12num_samps_per_chan\x18\x02 \x01(\x05\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12\x46\n\x17waveform_attribute_mode\x18\x04 \x01(\x0e\x32#.nidaqmx_grpc.WaveformAttributeModeH\x00\x12%\n\x1bwaveform_attribute_mode_raw\x18\x05 \x01(\x05H\x00\x42\x1e\n\x1cwaveform_attribute_mode_enum\"\x82\x01\n\x1cReadDigitalWaveformsResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x35\n\twaveforms\x18\x02 \x03(\x0b\x32\".ni.protobuf.types.DigitalWaveform\x12\x1b\n\x13samps_per_chan_read\x18\x03 \x01(\x05\"\xa4\x01\n\x1bWriteAnalogWaveformsRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x12\n\nauto_start\x18\x02 \x01(\x08\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12:\n\twaveforms\x18\x04 \x03(\x0b\x32\'.ni.protobuf.types.DoubleAnalogWaveform\"N\n\x1cWriteAnalogWaveformsResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x1e\n\x16samps_per_chan_written\x18\x02 \x01(\x05\"\xa0\x01\n\x1cWriteDigitalWaveformsRequest\x12$\n\x04task\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x12\n\nauto_start\x18\x02 \x01(\x08\x12\x0f\n\x07timeout\x18\x03 \x01(\x01\x12\x35\n\twaveforms\x18\x04 \x03(\x0b\x32\".ni.protobuf.types.DigitalWaveform\"O\n\x1dWriteDigitalWaveformsResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x1e\n\x16samps_per_chan_written\x18\x02 \x01(\x05*\xe6\x01\n\x15\x42ufferUInt32Attribute\x12\'\n#BUFFER_UINT32_ATTRIBUTE_UNSPECIFIED\x10\x00\x12$\n\x1f\x42UFFER_ATTRIBUTE_INPUT_BUF_SIZE\x10\xec\x30\x12%\n BUFFER_ATTRIBUTE_OUTPUT_BUF_SIZE\x10\xed\x30\x12*\n%BUFFER_ATTRIBUTE_INPUT_ONBRD_BUF_SIZE\x10\x8a\x46\x12+\n&BUFFER_ATTRIBUTE_OUTPUT_ONBRD_BUF_SIZE\x10\x8b\x46*\xca\x01\n\x14\x42ufferResetAttribute\x12&\n\"BUFFER_RESET_ATTRIBUTE_UNSPECIFIED\x10\x00\x12*\n%BUFFER_RESET_ATTRIBUTE_INPUT_BUF_SIZE\x10\xec\x30\x12+\n&BUFFER_RESET_ATTRIBUTE_OUTPUT_BUF_SIZE\x10\xed\x30\x12\x31\n,BUFFER_RESET_ATTRIBUTE_OUTPUT_ONBRD_BUF_SIZE\x10\x8b\x46*\x81\x01\n\x1c\x43\x61librationInfoBoolAttribute\x12.\n*CALIBRATIONINFO_BOOL_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\x31\n,CALIBRATIONINFO_ATTRIBUTE_SELF_CAL_SUPPORTED\x10\xe0\x30*\x88\x01\n\x1e\x43\x61librationInfoStringAttribute\x12\x30\n,CALIBRATIONINFO_STRING_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\x34\n/CALIBRATIONINFO_ATTRIBUTE_CAL_USER_DEFINED_INFO\x10\xe1\x30*\xe4\x01\n\x1e\x43\x61librationInfoDoubleAttribute\x12\x30\n,CALIBRATIONINFO_DOUBLE_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\x31\n,CALIBRATIONINFO_ATTRIBUTE_SELF_CAL_LAST_TEMP\x10\xe4\x30\x12\x30\n+CALIBRATIONINFO_ATTRIBUTE_EXT_CAL_LAST_TEMP\x10\xe7\x30\x12+\n&CALIBRATIONINFO_ATTRIBUTE_CAL_DEV_TEMP\x10\xbb\x44*\xd2\x02\n\x1e\x43\x61librationInfoUInt32Attribute\x12\x30\n,CALIBRATIONINFO_UINT32_ATTRIBUTE_UNSPECIFIED\x10\x00\x12;\n6CALIBRATIONINFO_ATTRIBUTE_EXT_CAL_RECOMMENDED_INTERVAL\x10\xe8\x30\x12=\n8CALIBRATIONINFO_ATTRIBUTE_CAL_USER_DEFINED_INFO_MAX_SIZE\x10\x9c\x32\x12\x37\n2CALIBRATIONINFO_ATTRIBUTE_CAL_ACC_CONNECTION_COUNT\x10\xeb_\x12I\nDCALIBRATIONINFO_ATTRIBUTE_CAL_RECOMMENDED_ACC_CONNECTION_COUNT_LIMIT\x10\xec_*\xc8K\n\x15\x43hannelInt32Attribute\x12\'\n#CHANNEL_INT32_ATTRIBUTE_UNSPECIFIED\x10\x00\x12/\n+CHANNEL_ATTRIBUTE_AI_RAW_SAMP_JUSTIFICATION\x10P\x12!\n\x1d\x43HANNEL_ATTRIBUTE_AI_COUPLING\x10\x64\x12$\n\x1f\x43HANNEL_ATTRIBUTE_AI_BRIDGE_CFG\x10\x87\x01\x12%\n CHANNEL_ATTRIBUTE_AO_DAC_REF_SRC\x10\xb2\x02\x12(\n#CHANNEL_ATTRIBUTE_AO_DATA_XFER_MECH\x10\xb4\x02\x12\x32\n-CHANNEL_ATTRIBUTE_CI_CTR_TIMEBASE_ACTIVE_EDGE\x10\xc2\x02\x12(\n#CHANNEL_ATTRIBUTE_CI_FREQ_MEAS_METH\x10\xc4\x02\x12&\n!CHANNEL_ATTRIBUTE_CI_OUTPUT_STATE\x10\xc9\x02\x12(\n#CHANNEL_ATTRIBUTE_CI_DATA_XFER_MECH\x10\x80\x04\x12&\n!CHANNEL_ATTRIBUTE_CO_OUTPUT_STATE\x10\x94\x05\x12\x32\n-CHANNEL_ATTRIBUTE_CO_CTR_TIMEBASE_ACTIVE_EDGE\x10\xc1\x06\x12%\n CHANNEL_ATTRIBUTE_AI_ACCEL_UNITS\x10\xf3\x0c\x12#\n\x1e\x43HANNEL_ATTRIBUTE_AI_MEAS_TYPE\x10\x95\r\x12)\n$CHANNEL_ATTRIBUTE_CI_COUNT_EDGES_DIR\x10\x96\r\x12\x31\n,CHANNEL_ATTRIBUTE_CI_COUNT_EDGES_ACTIVE_EDGE\x10\x97\r\x12\'\n\"CHANNEL_ATTRIBUTE_AI_CURRENT_UNITS\x10\x81\x0e\x12,\n\'CHANNEL_ATTRIBUTE_CI_FREQ_STARTING_EDGE\x10\x99\x0f\x12$\n\x1f\x43HANNEL_ATTRIBUTE_AI_FREQ_UNITS\x10\x86\x10\x12+\n&CHANNEL_ATTRIBUTE_CI_PULSE_WIDTH_UNITS\x10\xa3\x10\x12\x33\n.CHANNEL_ATTRIBUTE_CI_PULSE_WIDTH_STARTING_EDGE\x10\xa5\x10\x12\x31\n,CHANNEL_ATTRIBUTE_CI_TWO_EDGE_SEP_FIRST_EDGE\x10\xb3\x10\x12\x32\n-CHANNEL_ATTRIBUTE_CI_TWO_EDGE_SEP_SECOND_EDGE\x10\xb4\x10\x12.\n)CHANNEL_ATTRIBUTE_CI_PERIOD_STARTING_EDGE\x10\xd2\x10\x12$\n\x1f\x43HANNEL_ATTRIBUTE_AI_RVDT_UNITS\x10\xf7\x10\x12/\n*CHANNEL_ATTRIBUTE_CI_ENCODER_Z_INDEX_PHASE\x10\x89\x11\x12$\n\x1f\x43HANNEL_ATTRIBUTE_AI_LVDT_UNITS\x10\x90\x12\x12*\n%CHANNEL_ATTRIBUTE_AI_RESISTANCE_UNITS\x10\xd5\x12\x12&\n!CHANNEL_ATTRIBUTE_AI_STRAIN_UNITS\x10\x81\x13\x12)\n$CHANNEL_ATTRIBUTE_AI_STRAIN_GAGE_CFG\x10\x82\x13\x12\"\n\x1d\x43HANNEL_ATTRIBUTE_AI_RTD_TYPE\x10\xb2 \x12$\n\x1f\x43HANNEL_ATTRIBUTE_AI_TEMP_UNITS\x10\xb3 \x12)\n$CHANNEL_ATTRIBUTE_AI_THRMCPL_CJC_SRC\x10\xb5 \x12&\n!CHANNEL_ATTRIBUTE_AI_THRMCPL_TYPE\x10\xd0 \x12)\n$CHANNEL_ATTRIBUTE_CI_GPS_SYNC_METHOD\x10\x92!\x12\'\n\"CHANNEL_ATTRIBUTE_AI_VOLTAGE_UNITS\x10\x94!\x12\"\n\x1d\x43HANNEL_ATTRIBUTE_AI_TERM_CFG\x10\x97!\x12%\n CHANNEL_ATTRIBUTE_AO_OUTPUT_TYPE\x10\x88\"\x12\'\n\"CHANNEL_ATTRIBUTE_AO_CURRENT_UNITS\x10\x89\"\x12+\n&CHANNEL_ATTRIBUTE_DO_OUTPUT_DRIVE_TYPE\x10\xb7\"\x12*\n%CHANNEL_ATTRIBUTE_CO_PULSE_IDLE_STATE\x10\xf0\"\x12\'\n\"CHANNEL_ATTRIBUTE_AO_VOLTAGE_UNITS\x10\x84#\x12.\n)CHANNEL_ATTRIBUTE_AI_SOUND_PRESSURE_UNITS\x10\xa8*\x12(\n#CHANNEL_ATTRIBUTE_AI_AUTO_ZERO_MODE\x10\xe0.\x12*\n%CHANNEL_ATTRIBUTE_AI_RESOLUTION_UNITS\x10\xe4.\x12-\n(CHANNEL_ATTRIBUTE_AI_VOLTAGE_ACRMS_UNITS\x10\xe2/\x12-\n(CHANNEL_ATTRIBUTE_AI_CURRENT_ACRMS_UNITS\x10\xe3/\x12\x33\n.CHANNEL_ATTRIBUTE_AI_BRIDGE_BALANCE_COARSE_POT\x10\xf1/\x12+\n&CHANNEL_ATTRIBUTE_AI_CURRENT_SHUNT_LOC\x10\xf2/\x12#\n\x1e\x43HANNEL_ATTRIBUTE_AI_EXCIT_SRC\x10\xf4/\x12\x32\n-CHANNEL_ATTRIBUTE_AI_EXCIT_VOLTAGE_OR_CURRENT\x10\xf6/\x12(\n#CHANNEL_ATTRIBUTE_AI_EXCIT_D_COR_AC\x10\xfb/\x12\'\n\"CHANNEL_ATTRIBUTE_AI_HIGHPASS_TYPE\x10\x88\x30\x12\'\n\"CHANNEL_ATTRIBUTE_AI_BANDPASS_TYPE\x10\x8d\x30\x12$\n\x1f\x43HANNEL_ATTRIBUTE_AI_NOTCH_TYPE\x10\x91\x30\x12(\n#CHANNEL_ATTRIBUTE_AI_DATA_XFER_MECH\x10\xa1\x30\x12*\n%CHANNEL_ATTRIBUTE_AO_RESOLUTION_UNITS\x10\xab\x30\x12,\n\'CHANNEL_ATTRIBUTE_AO_DATA_XFER_REQ_COND\x10\xbc\x30\x12 \n\x1b\x43HANNEL_ATTRIBUTE_CHAN_TYPE\x10\xff\x30\x12(\n#CHANNEL_ATTRIBUTE_AI_RESISTANCE_CFG\x10\x81\x31\x12\x34\n/CHANNEL_ATTRIBUTE_AI_LOWPASS_SWITCH_CAP_CLK_SRC\x10\x84\x31\x12,\n\'CHANNEL_ATTRIBUTE_AI_DATA_XFER_REQ_COND\x10\x8b\x31\x12\"\n\x1d\x43HANNEL_ATTRIBUTE_AO_TERM_CFG\x10\x8e\x31\x12#\n\x1e\x43HANNEL_ATTRIBUTE_CI_MEAS_TYPE\x10\xa0\x31\x12$\n\x1f\x43HANNEL_ATTRIBUTE_CI_FREQ_UNITS\x10\xa1\x31\x12&\n!CHANNEL_ATTRIBUTE_CI_PERIOD_UNITS\x10\xa3\x31\x12+\n&CHANNEL_ATTRIBUTE_CI_ANG_ENCODER_UNITS\x10\xa6\x31\x12+\n&CHANNEL_ATTRIBUTE_CI_LIN_ENCODER_UNITS\x10\xa9\x31\x12,\n\'CHANNEL_ATTRIBUTE_CI_TWO_EDGE_SEP_UNITS\x10\xac\x31\x12+\n&CHANNEL_ATTRIBUTE_CI_SEMI_PERIOD_UNITS\x10\xaf\x31\x12%\n CHANNEL_ATTRIBUTE_CO_OUTPUT_TYPE\x10\xb5\x31\x12,\n\'CHANNEL_ATTRIBUTE_AI_AC_EXCIT_WIRE_MODE\x10\xcd\x31\x12*\n%CHANNEL_ATTRIBUTE_CO_PULSE_FREQ_UNITS\x10\xd5\x31\x12*\n%CHANNEL_ATTRIBUTE_CO_PULSE_TIME_UNITS\x10\xd6\x31\x12\x31\n,CHANNEL_ATTRIBUTE_AI_BRIDGE_BALANCE_FINE_POT\x10\xf4\x31\x12*\n%CHANNEL_ATTRIBUTE_CI_PERIOD_MEAS_METH\x10\xac\x32\x12\x30\n+CHANNEL_ATTRIBUTE_AI_LVDT_SENSITIVITY_UNITS\x10\x9a\x43\x12\x30\n+CHANNEL_ATTRIBUTE_AI_RVDT_SENSITIVITY_UNITS\x10\x9b\x43\x12\x31\n,CHANNEL_ATTRIBUTE_AI_ACCEL_SENSITIVITY_UNITS\x10\x9c\x43\x12\x31\n,CHANNEL_ATTRIBUTE_AI_BRIDGE_SHUNT_CAL_SELECT\x10\xd5\x43\x12/\n*CHANNEL_ATTRIBUTE_CI_ENCODER_DECODING_TYPE\x10\xe6\x43\x12.\n)CHANNEL_ATTRIBUTE_AO_IDLE_OUTPUT_BEHAVIOR\x10\xc0\x44\x12(\n#CHANNEL_ATTRIBUTE_AO_DAC_OFFSET_SRC\x10\xd3\x44\x12(\n#CHANNEL_ATTRIBUTE_DI_DATA_XFER_MECH\x10\xe3\x44\x12,\n\'CHANNEL_ATTRIBUTE_DI_DATA_XFER_REQ_COND\x10\xe4\x44\x12(\n#CHANNEL_ATTRIBUTE_DO_DATA_XFER_MECH\x10\xe6\x44\x12,\n\'CHANNEL_ATTRIBUTE_DO_DATA_XFER_REQ_COND\x10\xe7\x44\x12-\n(CHANNEL_ATTRIBUTE_AI_CHAN_CAL_SCALE_TYPE\x10\x9c\x45\x12)\n$CHANNEL_ATTRIBUTE_CI_TIMESTAMP_UNITS\x10\xb3\x45\x12\x33\n.CHANNEL_ATTRIBUTE_AI_RAW_DATA_COMPRESSION_TYPE\x10\xd8\x45\x12\x33\n.CHANNEL_ATTRIBUTE_CI_SEMI_PERIOD_STARTING_EDGE\x10\xfe\x45\x12$\n\x1f\x43HANNEL_ATTRIBUTE_DI_ACQUIRE_ON\x10\xe6R\x12\x32\n-CHANNEL_ATTRIBUTE_DO_LINE_STATES_PAUSED_STATE\x10\xe7R\x12\x30\n+CHANNEL_ATTRIBUTE_DO_LINE_STATES_DONE_STATE\x10\xe8R\x12%\n CHANNEL_ATTRIBUTE_DO_GENERATE_ON\x10\xe9R\x12&\n!CHANNEL_ATTRIBUTE_DI_LOGIC_FAMILY\x10\xedR\x12&\n!CHANNEL_ATTRIBUTE_DO_LOGIC_FAMILY\x10\xeeR\x12\x31\n,CHANNEL_ATTRIBUTE_DO_LINE_STATES_START_STATE\x10\xf2R\x12,\n\'CHANNEL_ATTRIBUTE_AI_THRMCPL_SCALE_TYPE\x10\xd0S\x12.\n)CHANNEL_ATTRIBUTE_CO_CONSTRAINED_GEN_MODE\x10\xf2S\x12)\n$CHANNEL_ATTRIBUTE_AI_ADC_TIMING_MODE\x10\xf9S\x12\'\n\"CHANNEL_ATTRIBUTE_AO_FUNC_GEN_TYPE\x10\x98T\x12\x32\n-CHANNEL_ATTRIBUTE_AO_FUNC_GEN_MODULATION_TYPE\x10\xa2T\x12\x43\n>CHANNEL_ATTRIBUTE_AI_EDDY_CURRENT_PROX_PROBE_SENSITIVITY_UNITS\x10\xbfU\x12\x37\n2CHANNEL_ATTRIBUTE_AI_EDDY_CURRENT_PROX_PROBE_UNITS\x10\xc0U\x12(\n#CHANNEL_ATTRIBUTE_CO_DATA_XFER_MECH\x10\xcc]\x12,\n\'CHANNEL_ATTRIBUTE_CO_DATA_XFER_REQ_COND\x10\xcd]\x12,\n\'CHANNEL_ATTRIBUTE_CI_DATA_XFER_REQ_COND\x10\xfb]\x12/\n*CHANNEL_ATTRIBUTE_CI_PULSE_FREQ_START_EDGE\x10\x85^\x12*\n%CHANNEL_ATTRIBUTE_CI_PULSE_FREQ_UNITS\x10\x8b^\x12/\n*CHANNEL_ATTRIBUTE_CI_PULSE_TIME_START_EDGE\x10\x8d^\x12*\n%CHANNEL_ATTRIBUTE_CI_PULSE_TIME_UNITS\x10\x93^\x12\x30\n+CHANNEL_ATTRIBUTE_CI_PULSE_TICKS_START_EDGE\x10\x95^\x12%\n CHANNEL_ATTRIBUTE_AI_FORCE_UNITS\x10\xf5^\x12(\n#CHANNEL_ATTRIBUTE_AI_PRESSURE_UNITS\x10\xf6^\x12&\n!CHANNEL_ATTRIBUTE_AI_TORQUE_UNITS\x10\xf7^\x12=\n8CHANNEL_ATTRIBUTE_AI_FORCE_IEPE_SENSOR_SENSITIVITY_UNITS\x10\x82_\x12\x31\n,CHANNEL_ATTRIBUTE_AI_BRIDGE_ELECTRICAL_UNITS\x10\x87_\x12/\n*CHANNEL_ATTRIBUTE_AI_BRIDGE_PHYSICAL_UNITS\x10\x88_\x12+\n&CHANNEL_ATTRIBUTE_AI_BRIDGE_SCALE_TYPE\x10\x89_\x12&\n!CHANNEL_ATTRIBUTE_AI_BRIDGE_UNITS\x10\x92_\x12=\n8CHANNEL_ATTRIBUTE_CI_COUNT_EDGES_COUNT_RESET_ACTIVE_EDGE\x10\xb2_\x12(\n#CHANNEL_ATTRIBUTE_AI_VELOCITY_UNITS\x10\xf4_\x12@\n;CHANNEL_ATTRIBUTE_AI_VELOCITY_IEPE_SENSOR_SENSITIVITY_UNITS\x10\xf7_\x12?\n:CHANNEL_ATTRIBUTE_AI_ROSETTE_STRAIN_GAGE_ROSETTE_MEAS_TYPE\x10\xfd_\x12:\n5CHANNEL_ATTRIBUTE_AI_ROSETTE_STRAIN_GAGE_ROSETTE_TYPE\x10\xfe_\x12(\n#CHANNEL_ATTRIBUTE_CI_TIMESTAMP_EDGE\x10\xba`\x12-\n(CHANNEL_ATTRIBUTE_CI_TIMESTAMP_TIMESCALE\x10\xbb`\x12$\n\x1f\x43HANNEL_ATTRIBUTE_NAV_MEAS_TYPE\x10\xbd`\x12$\n\x1f\x43HANNEL_ATTRIBUTE_NAV_ALT_UNITS\x10\xbe`\x12$\n\x1f\x43HANNEL_ATTRIBUTE_NAV_LAT_UNITS\x10\xbf`\x12%\n CHANNEL_ATTRIBUTE_NAV_LONG_UNITS\x10\xc0`\x12\x32\n-CHANNEL_ATTRIBUTE_NAV_SPEED_OVER_GROUND_UNITS\x10\xc1`\x12&\n!CHANNEL_ATTRIBUTE_NAV_TRACK_UNITS\x10\xc2`\x12.\n)CHANNEL_ATTRIBUTE_NAV_VERT_VELOCITY_UNITS\x10\xc3`\x12*\n%CHANNEL_ATTRIBUTE_NAV_TIMESTAMP_UNITS\x10\xc4`\x12.\n)CHANNEL_ATTRIBUTE_NAV_TIMESTAMP_TIMESCALE\x10\xc5`\x12,\n\'CHANNEL_ATTRIBUTE_AI_FILTER_DELAY_UNITS\x10\xf1`\x12,\n\'CHANNEL_ATTRIBUTE_AO_FILTER_DELAY_UNITS\x10\xf6`\x12\x32\n-CHANNEL_ATTRIBUTE_CI_DUTY_CYCLE_STARTING_EDGE\x10\x92\x61\x12\x33\n.CHANNEL_ATTRIBUTE_CI_SAMP_CLK_OVERRUN_BEHAVIOR\x10\x93\x61\x12\x37\n2CHANNEL_ATTRIBUTE_CI_SAMP_CLK_OVERRUN_SENTINEL_VAL\x10\x94\x61\x12\'\n\"CHANNEL_ATTRIBUTE_CI_FREQ_TERM_CFG\x10\x97\x61\x12\x31\n,CHANNEL_ATTRIBUTE_CI_FREQ_LOGIC_LVL_BEHAVIOR\x10\x98\x61\x12)\n$CHANNEL_ATTRIBUTE_CI_PERIOD_TERM_CFG\x10\x99\x61\x12\x33\n.CHANNEL_ATTRIBUTE_CI_PERIOD_LOGIC_LVL_BEHAVIOR\x10\x9a\x61\x12.\n)CHANNEL_ATTRIBUTE_CI_COUNT_EDGES_TERM_CFG\x10\x9b\x61\x12\x38\n3CHANNEL_ATTRIBUTE_CI_COUNT_EDGES_LOGIC_LVL_BEHAVIOR\x10\x9c\x61\x12\x38\n3CHANNEL_ATTRIBUTE_CI_COUNT_EDGES_COUNT_DIR_TERM_CFG\x10\x9d\x61\x12\x42\n=CHANNEL_ATTRIBUTE_CI_COUNT_EDGES_COUNT_DIR_LOGIC_LVL_BEHAVIOR\x10\x9e\x61\x12:\n5CHANNEL_ATTRIBUTE_CI_COUNT_EDGES_COUNT_RESET_TERM_CFG\x10\x9f\x61\x12\x44\n?CHANNEL_ATTRIBUTE_CI_COUNT_EDGES_COUNT_RESET_LOGIC_LVL_BEHAVIOR\x10\xa0\x61\x12-\n(CHANNEL_ATTRIBUTE_CI_DUTY_CYCLE_TERM_CFG\x10\xa1\x61\x12\x37\n2CHANNEL_ATTRIBUTE_CI_DUTY_CYCLE_LOGIC_LVL_BEHAVIOR\x10\xa2\x61\x12\x32\n-CHANNEL_ATTRIBUTE_CI_ENCODER_A_INPUT_TERM_CFG\x10\xa3\x61\x12<\n7CHANNEL_ATTRIBUTE_CI_ENCODER_A_INPUT_LOGIC_LVL_BEHAVIOR\x10\xa4\x61\x12\x32\n-CHANNEL_ATTRIBUTE_CI_ENCODER_B_INPUT_TERM_CFG\x10\xa5\x61\x12<\n7CHANNEL_ATTRIBUTE_CI_ENCODER_B_INPUT_LOGIC_LVL_BEHAVIOR\x10\xa6\x61\x12\x32\n-CHANNEL_ATTRIBUTE_CI_ENCODER_Z_INPUT_TERM_CFG\x10\xa7\x61\x12<\n7CHANNEL_ATTRIBUTE_CI_ENCODER_Z_INPUT_LOGIC_LVL_BEHAVIOR\x10\xa8\x61\x12.\n)CHANNEL_ATTRIBUTE_CI_PULSE_WIDTH_TERM_CFG\x10\xa9\x61\x12\x38\n3CHANNEL_ATTRIBUTE_CI_PULSE_WIDTH_LOGIC_LVL_BEHAVIOR\x10\xaa\x61\x12\x35\n0CHANNEL_ATTRIBUTE_CI_TWO_EDGE_SEP_FIRST_TERM_CFG\x10\xab\x61\x12?\n:CHANNEL_ATTRIBUTE_CI_TWO_EDGE_SEP_FIRST_LOGIC_LVL_BEHAVIOR\x10\xac\x61\x12\x36\n1CHANNEL_ATTRIBUTE_CI_TWO_EDGE_SEP_SECOND_TERM_CFG\x10\xad\x61\x12@\n;CHANNEL_ATTRIBUTE_CI_TWO_EDGE_SEP_SECOND_LOGIC_LVL_BEHAVIOR\x10\xae\x61\x12.\n)CHANNEL_ATTRIBUTE_CI_SEMI_PERIOD_TERM_CFG\x10\xaf\x61\x12\x38\n3CHANNEL_ATTRIBUTE_CI_SEMI_PERIOD_LOGIC_LVL_BEHAVIOR\x10\xb0\x61\x12-\n(CHANNEL_ATTRIBUTE_CI_PULSE_FREQ_TERM_CFG\x10\xb1\x61\x12\x37\n2CHANNEL_ATTRIBUTE_CI_PULSE_FREQ_LOGIC_LVL_BEHAVIOR\x10\xb2\x61\x12-\n(CHANNEL_ATTRIBUTE_CI_PULSE_TIME_TERM_CFG\x10\xb3\x61\x12\x37\n2CHANNEL_ATTRIBUTE_CI_PULSE_TIME_LOGIC_LVL_BEHAVIOR\x10\xb4\x61\x12.\n)CHANNEL_ATTRIBUTE_CI_PULSE_TICKS_TERM_CFG\x10\xb5\x61\x12\x38\n3CHANNEL_ATTRIBUTE_CI_PULSE_TICKS_LOGIC_LVL_BEHAVIOR\x10\xb6\x61\x12\x34\n/CHANNEL_ATTRIBUTE_AI_EXCIT_IDLE_OUTPUT_BEHAVIOR\x10\xb8\x61\x12\'\n\"CHANNEL_ATTRIBUTE_AI_DIG_FLTR_TYPE\x10\xbe\x61\x12+\n&CHANNEL_ATTRIBUTE_AI_DIG_FLTR_RESPONSE\x10\xbf\x61\x12:\n5CHANNEL_ATTRIBUTE_AI_BRIDGE_SHUNT_CAL_SHUNT_CAL_A_SRC\x10\xca\x61\x12\x34\n/CHANNEL_ATTRIBUTE_CI_VELOCITY_ANG_ENCODER_UNITS\x10\xd8\x61\x12\x34\n/CHANNEL_ATTRIBUTE_CI_VELOCITY_LIN_ENCODER_UNITS\x10\xda\x61\x12\x38\n3CHANNEL_ATTRIBUTE_CI_VELOCITY_ENCODER_DECODING_TYPE\x10\xdc\x61\x12;\n6CHANNEL_ATTRIBUTE_CI_VELOCITY_ENCODER_A_INPUT_TERM_CFG\x10\xde\x61\x12\x45\n@CHANNEL_ATTRIBUTE_CI_VELOCITY_ENCODER_A_INPUT_LOGIC_LVL_BEHAVIOR\x10\xdf\x61\x12;\n6CHANNEL_ATTRIBUTE_CI_VELOCITY_ENCODER_B_INPUT_TERM_CFG\x10\xe5\x61\x12\x45\n@CHANNEL_ATTRIBUTE_CI_VELOCITY_ENCODER_B_INPUT_LOGIC_LVL_BEHAVIOR\x10\xe6\x61\x12\x33\n.CHANNEL_ATTRIBUTE_CI_COUNT_EDGES_GATE_TERM_CFG\x10\xef\x61\x12=\n8CHANNEL_ATTRIBUTE_CI_COUNT_EDGES_GATE_LOGIC_LVL_BEHAVIOR\x10\xf0\x61\x12/\n*CHANNEL_ATTRIBUTE_CI_COUNT_EDGES_GATE_WHEN\x10\xf5\x61\x12:\n5CHANNEL_ATTRIBUTE_AI_BRIDGE_SHUNT_CAL_SHUNT_CAL_B_SRC\x10\xf7\x61\x12%\n CHANNEL_ATTRIBUTE_AI_EXCIT_SENSE\x10\xfd\x61\x12&\n!CHANNEL_ATTRIBUTE_AI_CHARGE_UNITS\x10\x92\x62\x12\x38\n3CHANNEL_ATTRIBUTE_AI_ACCEL_CHARGE_SENSITIVITY_UNITS\x10\x94\x62\x12\x43\n>CHANNEL_ATTRIBUTE_AI_ACCEL_4_WIRE_DC_VOLTAGE_SENSITIVITY_UNITS\x10\x96\x62\x12\x30\n+CHANNEL_ATTRIBUTE_CHAN_SYNC_UNLOCK_BEHAVIOR\x10\xbc\x62\x12*\n%CHANNEL_ATTRIBUTE_AI_SENSOR_POWER_CFG\x10\xea\x62\x12+\n&CHANNEL_ATTRIBUTE_AI_SENSOR_POWER_TYPE\x10\xeb\x62\x12)\n$CHANNEL_ATTRIBUTE_AI_FILTER_RESPONSE\x10\xf5\x62\x12)\n$CHANNEL_ATTRIBUTE_CI_FILTER_RESPONSE\x10\xb9\x63\x12,\n\'CHANNEL_ATTRIBUTE_CI_FILTER_DELAY_UNITS\x10\xbc\x63\x12\'\n\"CHANNEL_ATTRIBUTE_PWR_OUTPUT_STATE\x10\xd7\x63\x12/\n*CHANNEL_ATTRIBUTE_PWR_IDLE_OUTPUT_BEHAVIOR\x10\xd8\x63\x12\'\n\"CHANNEL_ATTRIBUTE_PWR_REMOTE_SENSE\x10\xdb\x63*\xbcH\n\x16\x43hannelDoubleAttribute\x12(\n$CHANNEL_DOUBLE_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\"\n\x1e\x43HANNEL_ATTRIBUTE_AI_IMPEDANCE\x10\x62\x12\'\n\"CHANNEL_ATTRIBUTE_AI_AC_EXCIT_FREQ\x10\x81\x02\x12\x1e\n\x19\x43HANNEL_ATTRIBUTE_AO_GAIN\x10\x98\x02\x12(\n#CHANNEL_ATTRIBUTE_AO_LOAD_IMPEDANCE\x10\xa1\x02\x12(\n#CHANNEL_ATTRIBUTE_CI_FREQ_MEAS_TIME\x10\xc5\x02\x12\x32\n-CHANNEL_ATTRIBUTE_CO_PULSE_FREQ_INITIAL_DELAY\x10\x99\x05\x12+\n&CHANNEL_ATTRIBUTE_AI_ACCEL_SENSITIVITY\x10\x92\r\x12#\n\x1e\x43HANNEL_ATTRIBUTE_AI_FREQ_HYST\x10\x94\x10\x12-\n(CHANNEL_ATTRIBUTE_AI_FREQ_THRESH_VOLTAGE\x10\x95\x10\x12\x33\n.CHANNEL_ATTRIBUTE_CI_ANG_ENCODER_INITIAL_ANGLE\x10\x81\x11\x12-\n(CHANNEL_ATTRIBUTE_CI_ENCODER_Z_INDEX_VAL\x10\x88\x11\x12*\n%CHANNEL_ATTRIBUTE_AI_RVDT_SENSITIVITY\x10\x83\x12\x12\x34\n/CHANNEL_ATTRIBUTE_CI_LIN_ENCODER_DIST_PER_PULSE\x10\x91\x12\x12\x31\n,CHANNEL_ATTRIBUTE_CI_LIN_ENCODER_INITIAL_POS\x10\x95\x12\x12*\n%CHANNEL_ATTRIBUTE_AI_LVDT_SENSITIVITY\x10\xb9\x12\x12\x31\n,CHANNEL_ATTRIBUTE_AI_STRAIN_GAGE_GAGE_FACTOR\x10\x94\x13\x12\x33\n.CHANNEL_ATTRIBUTE_AI_STRAIN_GAGE_POISSON_RATIO\x10\x98\x13\x12\x1f\n\x1a\x43HANNEL_ATTRIBUTE_AI_RTD_A\x10\x90 \x12\x1f\n\x1a\x43HANNEL_ATTRIBUTE_AI_RTD_B\x10\x91 \x12\x1f\n\x1a\x43HANNEL_ATTRIBUTE_AI_RTD_C\x10\x93 \x12 \n\x1b\x43HANNEL_ATTRIBUTE_AI_RTD_R0\x10\xb0 \x12)\n$CHANNEL_ATTRIBUTE_AI_THRMCPL_CJC_VAL\x10\xb6 \x12$\n\x1f\x43HANNEL_ATTRIBUTE_AI_THRMSTR_R1\x10\xe1 \x12(\n#CHANNEL_ATTRIBUTE_CO_PULSE_DUTY_CYC\x10\xf6\"\x12$\n\x1f\x43HANNEL_ATTRIBUTE_CO_PULSE_FREQ\x10\xf8\"\x12\x1d\n\x18\x43HANNEL_ATTRIBUTE_AO_MAX\x10\x86#\x12\x1d\n\x18\x43HANNEL_ATTRIBUTE_AO_MIN\x10\x87#\x12*\n%CHANNEL_ATTRIBUTE_AO_OUTPUT_IMPEDANCE\x10\x90)\x12\x30\n+CHANNEL_ATTRIBUTE_AI_MICROPHONE_SENSITIVITY\x10\xb6*\x12$\n\x1f\x43HANNEL_ATTRIBUTE_AI_RESOLUTION\x10\xe5.\x12\x1d\n\x18\x43HANNEL_ATTRIBUTE_AI_MAX\x10\xdd/\x12\x1d\n\x18\x43HANNEL_ATTRIBUTE_AI_MIN\x10\xde/\x12/\n*CHANNEL_ATTRIBUTE_AI_BRIDGE_NOM_RESISTANCE\x10\xec/\x12\x30\n+CHANNEL_ATTRIBUTE_AI_BRIDGE_INITIAL_VOLTAGE\x10\xed/\x12.\n)CHANNEL_ATTRIBUTE_AI_LEAD_WIRE_RESISTANCE\x10\xee/\x12\x32\n-CHANNEL_ATTRIBUTE_AI_CURRENT_SHUNT_RESISTANCE\x10\xf3/\x12#\n\x1e\x43HANNEL_ATTRIBUTE_AI_EXCIT_VAL\x10\xf5/\x12\x1f\n\x1a\x43HANNEL_ATTRIBUTE_AI_ATTEN\x10\x81\x30\x12-\n(CHANNEL_ATTRIBUTE_AI_LOWPASS_CUTOFF_FREQ\x10\x83\x30\x12.\n)CHANNEL_ATTRIBUTE_AI_HIGHPASS_CUTOFF_FREQ\x10\x87\x30\x12.\n)CHANNEL_ATTRIBUTE_AI_BANDPASS_CENTER_FREQ\x10\x8c\x30\x12(\n#CHANNEL_ATTRIBUTE_AI_BANDPASS_WIDTH\x10\x8e\x30\x12+\n&CHANNEL_ATTRIBUTE_AI_NOTCH_CENTER_FREQ\x10\x90\x30\x12%\n CHANNEL_ATTRIBUTE_AI_NOTCH_WIDTH\x10\x92\x30\x12\"\n\x1d\x43HANNEL_ATTRIBUTE_AI_RNG_HIGH\x10\x95\x30\x12!\n\x1c\x43HANNEL_ATTRIBUTE_AI_RNG_LOW\x10\x96\x30\x12\x1e\n\x19\x43HANNEL_ATTRIBUTE_AI_GAIN\x10\x98\x30\x12$\n\x1f\x43HANNEL_ATTRIBUTE_AO_RESOLUTION\x10\xac\x30\x12%\n CHANNEL_ATTRIBUTE_AO_DAC_RNG_LOW\x10\xad\x30\x12&\n!CHANNEL_ATTRIBUTE_AO_DAC_RNG_HIGH\x10\xae\x30\x12%\n CHANNEL_ATTRIBUTE_AO_DAC_REF_VAL\x10\xb2\x30\x12*\n%CHANNEL_ATTRIBUTE_AI_EXCIT_ACTUAL_VAL\x10\x83\x31\x12\x39\n4CHANNEL_ATTRIBUTE_AI_LOWPASS_SWITCH_CAP_EXT_CLK_FREQ\x10\x85\x31\x12\x1d\n\x18\x43HANNEL_ATTRIBUTE_CI_MAX\x10\x9c\x31\x12\x1d\n\x18\x43HANNEL_ATTRIBUTE_CI_MIN\x10\x9d\x31\x12+\n&CHANNEL_ATTRIBUTE_CI_CTR_TIMEBASE_RATE\x10\xb2\x31\x12)\n$CHANNEL_ATTRIBUTE_CO_PULSE_HIGH_TIME\x10\xba\x31\x12(\n#CHANNEL_ATTRIBUTE_CO_PULSE_LOW_TIME\x10\xbb\x31\x12\x32\n-CHANNEL_ATTRIBUTE_CO_PULSE_TIME_INITIAL_DELAY\x10\xbc\x31\x12+\n&CHANNEL_ATTRIBUTE_CO_CTR_TIMEBASE_RATE\x10\xc2\x31\x12#\n\x1e\x43HANNEL_ATTRIBUTE_AI_THRMSTR_A\x10\xc9\x31\x12#\n\x1e\x43HANNEL_ATTRIBUTE_AI_THRMSTR_C\x10\xca\x31\x12#\n\x1e\x43HANNEL_ATTRIBUTE_AI_THRMSTR_B\x10\xcb\x31\x12*\n%CHANNEL_ATTRIBUTE_CI_PERIOD_MEAS_TIME\x10\xad\x32\x12\x36\n1CHANNEL_ATTRIBUTE_AI_BRIDGE_SHUNT_CAL_GAIN_ADJUST\x10\xbf\x32\x12\x32\n-CHANNEL_ATTRIBUTE_DI_DIG_FLTR_MIN_PULSE_WIDTH\x10\xd7\x43\x12\x37\n2CHANNEL_ATTRIBUTE_CI_FREQ_DIG_FLTR_MIN_PULSE_WIDTH\x10\xe8\x43\x12\x35\n0CHANNEL_ATTRIBUTE_CI_FREQ_DIG_FLTR_TIMEBASE_RATE\x10\xea\x43\x12\x39\n4CHANNEL_ATTRIBUTE_CI_PERIOD_DIG_FLTR_MIN_PULSE_WIDTH\x10\xed\x43\x12\x37\n2CHANNEL_ATTRIBUTE_CI_PERIOD_DIG_FLTR_TIMEBASE_RATE\x10\xef\x43\x12H\nCCHANNEL_ATTRIBUTE_CI_COUNT_EDGES_COUNT_DIR_DIG_FLTR_MIN_PULSE_WIDTH\x10\xf2\x43\x12\x46\nACHANNEL_ATTRIBUTE_CI_COUNT_EDGES_COUNT_DIR_DIG_FLTR_TIMEBASE_RATE\x10\xf4\x43\x12>\n9CHANNEL_ATTRIBUTE_CI_COUNT_EDGES_DIG_FLTR_MIN_PULSE_WIDTH\x10\xf7\x43\x12<\n7CHANNEL_ATTRIBUTE_CI_COUNT_EDGES_DIG_FLTR_TIMEBASE_RATE\x10\xf9\x43\x12\x42\n=CHANNEL_ATTRIBUTE_CI_ENCODER_A_INPUT_DIG_FLTR_MIN_PULSE_WIDTH\x10\xfc\x43\x12@\n;CHANNEL_ATTRIBUTE_CI_ENCODER_A_INPUT_DIG_FLTR_TIMEBASE_RATE\x10\xfe\x43\x12\x42\n=CHANNEL_ATTRIBUTE_CI_ENCODER_B_INPUT_DIG_FLTR_MIN_PULSE_WIDTH\x10\x81\x44\x12@\n;CHANNEL_ATTRIBUTE_CI_ENCODER_B_INPUT_DIG_FLTR_TIMEBASE_RATE\x10\x83\x44\x12\x42\n=CHANNEL_ATTRIBUTE_CI_ENCODER_Z_INPUT_DIG_FLTR_MIN_PULSE_WIDTH\x10\x86\x44\x12@\n;CHANNEL_ATTRIBUTE_CI_ENCODER_Z_INPUT_DIG_FLTR_TIMEBASE_RATE\x10\x88\x44\x12>\n9CHANNEL_ATTRIBUTE_CI_PULSE_WIDTH_DIG_FLTR_MIN_PULSE_WIDTH\x10\x8b\x44\x12<\n7CHANNEL_ATTRIBUTE_CI_PULSE_WIDTH_DIG_FLTR_TIMEBASE_RATE\x10\x8d\x44\x12\x45\n@CHANNEL_ATTRIBUTE_CI_TWO_EDGE_SEP_FIRST_DIG_FLTR_MIN_PULSE_WIDTH\x10\x90\x44\x12\x43\n>CHANNEL_ATTRIBUTE_CI_TWO_EDGE_SEP_FIRST_DIG_FLTR_TIMEBASE_RATE\x10\x92\x44\x12\x46\nACHANNEL_ATTRIBUTE_CI_TWO_EDGE_SEP_SECOND_DIG_FLTR_MIN_PULSE_WIDTH\x10\x95\x44\x12\x44\n?CHANNEL_ATTRIBUTE_CI_TWO_EDGE_SEP_SECOND_DIG_FLTR_TIMEBASE_RATE\x10\x97\x44\x12>\n9CHANNEL_ATTRIBUTE_CI_SEMI_PERIOD_DIG_FLTR_MIN_PULSE_WIDTH\x10\x9a\x44\x12<\n7CHANNEL_ATTRIBUTE_CI_SEMI_PERIOD_DIG_FLTR_TIMEBASE_RATE\x10\x9c\x44\x12?\n:CHANNEL_ATTRIBUTE_AI_SOUND_PRESSURE_MAX_SOUND_PRESSURE_LVL\x10\xba\x44\x12(\n#CHANNEL_ATTRIBUTE_AO_DAC_OFFSET_VAL\x10\xd5\x44\x12?\n:CHANNEL_ATTRIBUTE_CI_CTR_TIMEBASE_DIG_FLTR_MIN_PULSE_WIDTH\x10\xf2\x44\x12=\n8CHANNEL_ATTRIBUTE_CI_CTR_TIMEBASE_DIG_FLTR_TIMEBASE_RATE\x10\xf4\x44\x12?\n:CHANNEL_ATTRIBUTE_CO_CTR_TIMEBASE_DIG_FLTR_MIN_PULSE_WIDTH\x10\xf7\x44\x12=\n8CHANNEL_ATTRIBUTE_CO_CTR_TIMEBASE_DIG_FLTR_TIMEBASE_RATE\x10\xf9\x44\x12(\n#CHANNEL_ATTRIBUTE_AI_VOLTAGE_DB_REF\x10\xb0S\x12/\n*CHANNEL_ATTRIBUTE_AI_SOUND_PRESSURE_DB_REF\x10\xb1S\x12&\n!CHANNEL_ATTRIBUTE_AI_ACCEL_DB_REF\x10\xb2S\x12\'\n\"CHANNEL_ATTRIBUTE_AO_FUNC_GEN_FREQ\x10\x99T\x12,\n\'CHANNEL_ATTRIBUTE_AO_FUNC_GEN_AMPLITUDE\x10\x9aT\x12)\n$CHANNEL_ATTRIBUTE_AO_FUNC_GEN_OFFSET\x10\x9bT\x12\x34\n/CHANNEL_ATTRIBUTE_AO_FUNC_GEN_SQUARE_DUTY_CYCLE\x10\x9cT\x12/\n*CHANNEL_ATTRIBUTE_AO_VOLTAGE_CURRENT_LIMIT\x10\x9dT\x12/\n*CHANNEL_ATTRIBUTE_AO_FUNC_GEN_FM_DEVIATION\x10\xa3T\x12+\n&CHANNEL_ATTRIBUTE_DO_OVERCURRENT_LIMIT\x10\x85U\x12\x35\n0CHANNEL_ATTRIBUTE_DO_OVERCURRENT_REENABLE_PERIOD\x10\x87U\x12%\n CHANNEL_ATTRIBUTE_AI_PROBE_ATTEN\x10\x88U\x12#\n\x1e\x43HANNEL_ATTRIBUTE_AI_DC_OFFSET\x10\x89U\x12=\n8CHANNEL_ATTRIBUTE_AI_EDDY_CURRENT_PROX_PROBE_SENSITIVITY\x10\xbeU\x12\x30\n+CHANNEL_ATTRIBUTE_DI_DIG_FLTR_TIMEBASE_RATE\x10\xd5]\x12=\n8CHANNEL_ATTRIBUTE_CI_PULSE_FREQ_DIG_FLTR_MIN_PULSE_WIDTH\x10\x87^\x12;\n6CHANNEL_ATTRIBUTE_CI_PULSE_FREQ_DIG_FLTR_TIMEBASE_RATE\x10\x89^\x12=\n8CHANNEL_ATTRIBUTE_CI_PULSE_TIME_DIG_FLTR_MIN_PULSE_WIDTH\x10\x8f^\x12;\n6CHANNEL_ATTRIBUTE_CI_PULSE_TIME_DIG_FLTR_TIMEBASE_RATE\x10\x91^\x12>\n9CHANNEL_ATTRIBUTE_CI_PULSE_TICKS_DIG_FLTR_MIN_PULSE_WIDTH\x10\x97^\x12<\n7CHANNEL_ATTRIBUTE_CI_PULSE_TICKS_DIG_FLTR_TIMEBASE_RATE\x10\x99^\x12\x41\nCHANNEL_ATTRIBUTE_AI_BRIDGE_TWO_POINT_LIN_FIRST_ELECTRICAL_VAL\x10\x8a_\x12\x41\nCHANNEL_ATTRIBUTE_CI_COUNT_EDGES_GATE_DIG_FLTR_MIN_PULSE_WIDTH\x10\xf2\x61\x12\x41\n\n9CHANNEL_ATTRIBUTE_CI_COUNT_EDGES_COUNT_DIR_THRESH_VOLTAGE\x10\xb1\x63\x12\x34\n/CHANNEL_ATTRIBUTE_CI_COUNT_EDGES_COUNT_DIR_HYST\x10\xb2\x63\x12@\n;CHANNEL_ATTRIBUTE_CI_COUNT_EDGES_COUNT_RESET_THRESH_VOLTAGE\x10\xb3\x63\x12\x36\n1CHANNEL_ATTRIBUTE_CI_COUNT_EDGES_COUNT_RESET_HYST\x10\xb4\x63\x12\x39\n4CHANNEL_ATTRIBUTE_CI_COUNT_EDGES_GATE_THRESH_VOLTAGE\x10\xb5\x63\x12/\n*CHANNEL_ATTRIBUTE_CI_COUNT_EDGES_GATE_HYST\x10\xb6\x63\x12%\n CHANNEL_ATTRIBUTE_CI_FILTER_FREQ\x10\xb8\x63\x12&\n!CHANNEL_ATTRIBUTE_CI_FILTER_DELAY\x10\xbb\x63\x12.\n)CHANNEL_ATTRIBUTE_AO_FUNC_GEN_START_PHASE\x10\xc4\x63\x12,\n\'CHANNEL_ATTRIBUTE_AO_COMMON_MODE_OFFSET\x10\xcc\x63\x12+\n&CHANNEL_ATTRIBUTE_PWR_VOLTAGE_SETPOINT\x10\xd4\x63\x12+\n&CHANNEL_ATTRIBUTE_PWR_CURRENT_SETPOINT\x10\xd5\x63*\xd3\xf6\x01\n\x15\x43hannelResetAttribute\x12\'\n#CHANNEL_RESET_ATTRIBUTE_UNSPECIFIED\x10\x00\x12(\n$CHANNEL_RESET_ATTRIBUTE_AI_IMPEDANCE\x10\x62\x12\'\n#CHANNEL_RESET_ATTRIBUTE_AI_COUPLING\x10\x64\x12,\n(CHANNEL_RESET_ATTRIBUTE_AI_DITHER_ENABLE\x10h\x12*\n%CHANNEL_RESET_ATTRIBUTE_AI_BRIDGE_CFG\x10\x87\x01\x12\x37\n2CHANNEL_RESET_ATTRIBUTE_AI_BRIDGE_SHUNT_CAL_ENABLE\x10\x94\x01\x12-\n(CHANNEL_RESET_ATTRIBUTE_AI_AC_EXCIT_FREQ\x10\x81\x02\x12\x34\n/CHANNEL_RESET_ATTRIBUTE_AI_AC_EXCIT_SYNC_ENABLE\x10\x82\x02\x12$\n\x1f\x43HANNEL_RESET_ATTRIBUTE_AO_GAIN\x10\x98\x02\x12.\n)CHANNEL_RESET_ATTRIBUTE_AO_LOAD_IMPEDANCE\x10\xa1\x02\x12\x33\n.CHANNEL_RESET_ATTRIBUTE_AO_DAC_REF_CONN_TO_GND\x10\xb0\x02\x12+\n&CHANNEL_RESET_ATTRIBUTE_AO_DAC_REF_SRC\x10\xb2\x02\x12/\n*CHANNEL_RESET_ATTRIBUTE_AO_REGLITCH_ENABLE\x10\xb3\x02\x12.\n)CHANNEL_RESET_ATTRIBUTE_AO_DATA_XFER_MECH\x10\xb4\x02\x12\x38\n3CHANNEL_RESET_ATTRIBUTE_CI_CTR_TIMEBASE_ACTIVE_EDGE\x10\xc2\x02\x12\x30\n+CHANNEL_RESET_ATTRIBUTE_CI_CTR_TIMEBASE_SRC\x10\xc3\x02\x12.\n)CHANNEL_RESET_ATTRIBUTE_CI_FREQ_MEAS_METH\x10\xc4\x02\x12.\n)CHANNEL_RESET_ATTRIBUTE_CI_FREQ_MEAS_TIME\x10\xc5\x02\x12(\n#CHANNEL_RESET_ATTRIBUTE_CI_FREQ_DIV\x10\xc7\x02\x12.\n)CHANNEL_RESET_ATTRIBUTE_CI_DATA_XFER_MECH\x10\x80\x04\x12-\n(CHANNEL_RESET_ATTRIBUTE_CO_AUTO_INCR_CNT\x10\x95\x05\x12\x39\n4CHANNEL_RESET_ATTRIBUTE_CO_PULSE_TICKS_INITIAL_DELAY\x10\x98\x05\x12\x38\n3CHANNEL_RESET_ATTRIBUTE_CO_PULSE_FREQ_INITIAL_DELAY\x10\x99\x05\x12\x30\n+CHANNEL_RESET_ATTRIBUTE_CO_CTR_TIMEBASE_SRC\x10\xb9\x06\x12\x38\n3CHANNEL_RESET_ATTRIBUTE_CO_CTR_TIMEBASE_ACTIVE_EDGE\x10\xc1\x06\x12+\n&CHANNEL_RESET_ATTRIBUTE_AI_ACCEL_UNITS\x10\xf3\x0c\x12\x31\n,CHANNEL_RESET_ATTRIBUTE_AI_ACCEL_SENSITIVITY\x10\x92\r\x12/\n*CHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_DIR\x10\x96\r\x12\x37\n2CHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_ACTIVE_EDGE\x10\x97\r\x12\x37\n2CHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_INITIAL_CNT\x10\x98\r\x12-\n(CHANNEL_RESET_ATTRIBUTE_AI_CURRENT_UNITS\x10\x81\x0e\x12,\n\'CHANNEL_RESET_ATTRIBUTE_DI_INVERT_LINES\x10\x93\x0f\x12\x32\n-CHANNEL_RESET_ATTRIBUTE_CI_FREQ_STARTING_EDGE\x10\x99\x0f\x12*\n%CHANNEL_RESET_ATTRIBUTE_AI_FREQ_UNITS\x10\x86\x10\x12)\n$CHANNEL_RESET_ATTRIBUTE_AI_FREQ_HYST\x10\x94\x10\x12\x33\n.CHANNEL_RESET_ATTRIBUTE_AI_FREQ_THRESH_VOLTAGE\x10\x95\x10\x12\x31\n,CHANNEL_RESET_ATTRIBUTE_CI_PULSE_WIDTH_UNITS\x10\xa3\x10\x12\x39\n4CHANNEL_RESET_ATTRIBUTE_CI_PULSE_WIDTH_STARTING_EDGE\x10\xa5\x10\x12\x37\n2CHANNEL_RESET_ATTRIBUTE_CI_TWO_EDGE_SEP_FIRST_EDGE\x10\xb3\x10\x12\x38\n3CHANNEL_RESET_ATTRIBUTE_CI_TWO_EDGE_SEP_SECOND_EDGE\x10\xb4\x10\x12\x34\n/CHANNEL_RESET_ATTRIBUTE_CI_PERIOD_STARTING_EDGE\x10\xd2\x10\x12:\n5CHANNEL_RESET_ATTRIBUTE_CI_ANG_ENCODER_PULSES_PER_REV\x10\xf5\x10\x12*\n%CHANNEL_RESET_ATTRIBUTE_AI_RVDT_UNITS\x10\xf7\x10\x12\x39\n4CHANNEL_RESET_ATTRIBUTE_CI_ANG_ENCODER_INITIAL_ANGLE\x10\x81\x11\x12\x33\n.CHANNEL_RESET_ATTRIBUTE_CI_ENCODER_Z_INDEX_VAL\x10\x88\x11\x12\x35\n0CHANNEL_RESET_ATTRIBUTE_CI_ENCODER_Z_INDEX_PHASE\x10\x89\x11\x12\x36\n1CHANNEL_RESET_ATTRIBUTE_CI_ENCODER_Z_INDEX_ENABLE\x10\x90\x11\x12\x30\n+CHANNEL_RESET_ATTRIBUTE_AI_RVDT_SENSITIVITY\x10\x83\x12\x12*\n%CHANNEL_RESET_ATTRIBUTE_AI_LVDT_UNITS\x10\x90\x12\x12:\n5CHANNEL_RESET_ATTRIBUTE_CI_LIN_ENCODER_DIST_PER_PULSE\x10\x91\x12\x12\x37\n2CHANNEL_RESET_ATTRIBUTE_CI_LIN_ENCODER_INITIAL_POS\x10\x95\x12\x12\x30\n+CHANNEL_RESET_ATTRIBUTE_AI_LVDT_SENSITIVITY\x10\xb9\x12\x12\x30\n+CHANNEL_RESET_ATTRIBUTE_AI_RESISTANCE_UNITS\x10\xd5\x12\x12,\n\'CHANNEL_RESET_ATTRIBUTE_AI_STRAIN_UNITS\x10\x81\x13\x12/\n*CHANNEL_RESET_ATTRIBUTE_AI_STRAIN_GAGE_CFG\x10\x82\x13\x12\x37\n2CHANNEL_RESET_ATTRIBUTE_AI_STRAIN_GAGE_GAGE_FACTOR\x10\x94\x13\x12\x39\n4CHANNEL_RESET_ATTRIBUTE_AI_STRAIN_GAGE_POISSON_RATIO\x10\x98\x13\x12%\n CHANNEL_RESET_ATTRIBUTE_AI_RTD_A\x10\x90 \x12%\n CHANNEL_RESET_ATTRIBUTE_AI_RTD_B\x10\x91 \x12%\n CHANNEL_RESET_ATTRIBUTE_AI_RTD_C\x10\x93 \x12&\n!CHANNEL_RESET_ATTRIBUTE_AI_RTD_R0\x10\xb0 \x12(\n#CHANNEL_RESET_ATTRIBUTE_AI_RTD_TYPE\x10\xb2 \x12*\n%CHANNEL_RESET_ATTRIBUTE_AI_TEMP_UNITS\x10\xb3 \x12/\n*CHANNEL_RESET_ATTRIBUTE_AI_THRMCPL_CJC_VAL\x10\xb6 \x12,\n\'CHANNEL_RESET_ATTRIBUTE_AI_THRMCPL_TYPE\x10\xd0 \x12*\n%CHANNEL_RESET_ATTRIBUTE_AI_THRMSTR_R1\x10\xe1 \x12/\n*CHANNEL_RESET_ATTRIBUTE_CI_GPS_SYNC_METHOD\x10\x92!\x12,\n\'CHANNEL_RESET_ATTRIBUTE_CI_GPS_SYNC_SRC\x10\x93!\x12-\n(CHANNEL_RESET_ATTRIBUTE_AI_VOLTAGE_UNITS\x10\x94!\x12(\n#CHANNEL_RESET_ATTRIBUTE_AI_TERM_CFG\x10\x97!\x12-\n(CHANNEL_RESET_ATTRIBUTE_AO_CURRENT_UNITS\x10\x89\"\x12,\n\'CHANNEL_RESET_ATTRIBUTE_DO_INVERT_LINES\x10\xb3\"\x12\x31\n,CHANNEL_RESET_ATTRIBUTE_DO_OUTPUT_DRIVE_TYPE\x10\xb7\"\x12\x30\n+CHANNEL_RESET_ATTRIBUTE_CO_PULSE_HIGH_TICKS\x10\xe9\"\x12\x30\n+CHANNEL_RESET_ATTRIBUTE_CO_PULSE_IDLE_STATE\x10\xf0\"\x12/\n*CHANNEL_RESET_ATTRIBUTE_CO_PULSE_LOW_TICKS\x10\xf1\"\x12.\n)CHANNEL_RESET_ATTRIBUTE_CO_PULSE_DUTY_CYC\x10\xf6\"\x12*\n%CHANNEL_RESET_ATTRIBUTE_CO_PULSE_FREQ\x10\xf8\"\x12-\n(CHANNEL_RESET_ATTRIBUTE_AO_VOLTAGE_UNITS\x10\x84#\x12#\n\x1e\x43HANNEL_RESET_ATTRIBUTE_AO_MAX\x10\x86#\x12#\n\x1e\x43HANNEL_RESET_ATTRIBUTE_AO_MIN\x10\x87#\x12\x31\n,CHANNEL_RESET_ATTRIBUTE_AO_CUSTOM_SCALE_NAME\x10\x88#\x12\x30\n+CHANNEL_RESET_ATTRIBUTE_AO_OUTPUT_IMPEDANCE\x10\x90)\x12\x34\n/CHANNEL_RESET_ATTRIBUTE_AI_SOUND_PRESSURE_UNITS\x10\xa8*\x12\x36\n1CHANNEL_RESET_ATTRIBUTE_AI_MICROPHONE_SENSITIVITY\x10\xb6*\x12.\n)CHANNEL_RESET_ATTRIBUTE_AI_AUTO_ZERO_MODE\x10\xe0.\x12#\n\x1e\x43HANNEL_RESET_ATTRIBUTE_AI_MAX\x10\xdd/\x12#\n\x1e\x43HANNEL_RESET_ATTRIBUTE_AI_MIN\x10\xde/\x12\x31\n,CHANNEL_RESET_ATTRIBUTE_AI_CUSTOM_SCALE_NAME\x10\xe0/\x12\x33\n.CHANNEL_RESET_ATTRIBUTE_AI_VOLTAGE_ACRMS_UNITS\x10\xe2/\x12\x33\n.CHANNEL_RESET_ATTRIBUTE_AI_CURRENT_ACRMS_UNITS\x10\xe3/\x12\x35\n0CHANNEL_RESET_ATTRIBUTE_AI_BRIDGE_NOM_RESISTANCE\x10\xec/\x12\x36\n1CHANNEL_RESET_ATTRIBUTE_AI_BRIDGE_INITIAL_VOLTAGE\x10\xed/\x12\x34\n/CHANNEL_RESET_ATTRIBUTE_AI_LEAD_WIRE_RESISTANCE\x10\xee/\x12\x39\n4CHANNEL_RESET_ATTRIBUTE_AI_BRIDGE_BALANCE_COARSE_POT\x10\xf1/\x12\x31\n,CHANNEL_RESET_ATTRIBUTE_AI_CURRENT_SHUNT_LOC\x10\xf2/\x12\x38\n3CHANNEL_RESET_ATTRIBUTE_AI_CURRENT_SHUNT_RESISTANCE\x10\xf3/\x12)\n$CHANNEL_RESET_ATTRIBUTE_AI_EXCIT_SRC\x10\xf4/\x12)\n$CHANNEL_RESET_ATTRIBUTE_AI_EXCIT_VAL\x10\xf5/\x12\x38\n3CHANNEL_RESET_ATTRIBUTE_AI_EXCIT_VOLTAGE_OR_CURRENT\x10\xf6/\x12.\n)CHANNEL_RESET_ATTRIBUTE_AI_EXCIT_D_COR_AC\x10\xfb/\x12\x35\n0CHANNEL_RESET_ATTRIBUTE_AI_EXCIT_USE_FOR_SCALING\x10\xfc/\x12%\n CHANNEL_RESET_ATTRIBUTE_AI_ATTEN\x10\x81\x30\x12.\n)CHANNEL_RESET_ATTRIBUTE_AI_LOWPASS_ENABLE\x10\x82\x30\x12\x33\n.CHANNEL_RESET_ATTRIBUTE_AI_LOWPASS_CUTOFF_FREQ\x10\x83\x30\x12/\n*CHANNEL_RESET_ATTRIBUTE_AI_HIGHPASS_ENABLE\x10\x86\x30\x12\x34\n/CHANNEL_RESET_ATTRIBUTE_AI_HIGHPASS_CUTOFF_FREQ\x10\x87\x30\x12-\n(CHANNEL_RESET_ATTRIBUTE_AI_HIGHPASS_TYPE\x10\x88\x30\x12.\n)CHANNEL_RESET_ATTRIBUTE_AI_HIGHPASS_ORDER\x10\x89\x30\x12/\n*CHANNEL_RESET_ATTRIBUTE_AI_BANDPASS_ENABLE\x10\x8b\x30\x12\x34\n/CHANNEL_RESET_ATTRIBUTE_AI_BANDPASS_CENTER_FREQ\x10\x8c\x30\x12-\n(CHANNEL_RESET_ATTRIBUTE_AI_BANDPASS_TYPE\x10\x8d\x30\x12.\n)CHANNEL_RESET_ATTRIBUTE_AI_BANDPASS_WIDTH\x10\x8e\x30\x12\x31\n,CHANNEL_RESET_ATTRIBUTE_AI_NOTCH_CENTER_FREQ\x10\x90\x30\x12*\n%CHANNEL_RESET_ATTRIBUTE_AI_NOTCH_TYPE\x10\x91\x30\x12+\n&CHANNEL_RESET_ATTRIBUTE_AI_NOTCH_WIDTH\x10\x92\x30\x12(\n#CHANNEL_RESET_ATTRIBUTE_AI_RNG_HIGH\x10\x95\x30\x12\'\n\"CHANNEL_RESET_ATTRIBUTE_AI_RNG_LOW\x10\x96\x30\x12$\n\x1f\x43HANNEL_RESET_ATTRIBUTE_AI_GAIN\x10\x98\x30\x12\x34\n/CHANNEL_RESET_ATTRIBUTE_AI_SAMP_AND_HOLD_ENABLE\x10\x9a\x30\x12.\n)CHANNEL_RESET_ATTRIBUTE_AI_DATA_XFER_MECH\x10\xa1\x30\x12\x30\n+CHANNEL_RESET_ATTRIBUTE_AO_RESOLUTION_UNITS\x10\xab\x30\x12+\n&CHANNEL_RESET_ATTRIBUTE_AO_DAC_RNG_LOW\x10\xad\x30\x12,\n\'CHANNEL_RESET_ATTRIBUTE_AO_DAC_RNG_HIGH\x10\xae\x30\x12\x39\n4CHANNEL_RESET_ATTRIBUTE_AO_DAC_REF_ALLOW_CONN_TO_GND\x10\xb0\x30\x12+\n&CHANNEL_RESET_ATTRIBUTE_AO_DAC_REF_VAL\x10\xb2\x30\x12\x33\n.CHANNEL_RESET_ATTRIBUTE_AO_USE_ONLY_ON_BRD_MEM\x10\xba\x30\x12\x32\n-CHANNEL_RESET_ATTRIBUTE_AO_DATA_XFER_REQ_COND\x10\xbc\x30\x12.\n)CHANNEL_RESET_ATTRIBUTE_AI_RESISTANCE_CFG\x10\x81\x31\x12\x30\n+CHANNEL_RESET_ATTRIBUTE_AI_EXCIT_ACTUAL_VAL\x10\x83\x31\x12:\n5CHANNEL_RESET_ATTRIBUTE_AI_LOWPASS_SWITCH_CAP_CLK_SRC\x10\x84\x31\x12?\n:CHANNEL_RESET_ATTRIBUTE_AI_LOWPASS_SWITCH_CAP_EXT_CLK_FREQ\x10\x85\x31\x12>\n9CHANNEL_RESET_ATTRIBUTE_AI_LOWPASS_SWITCH_CAP_EXT_CLK_DIV\x10\x86\x31\x12>\n9CHANNEL_RESET_ATTRIBUTE_AI_LOWPASS_SWITCH_CAP_OUT_CLK_DIV\x10\x87\x31\x12\x32\n-CHANNEL_RESET_ATTRIBUTE_AI_DATA_XFER_REQ_COND\x10\x8b\x31\x12.\n)CHANNEL_RESET_ATTRIBUTE_AI_MEM_MAP_ENABLE\x10\x8c\x31\x12(\n#CHANNEL_RESET_ATTRIBUTE_AO_TERM_CFG\x10\x8e\x31\x12.\n)CHANNEL_RESET_ATTRIBUTE_AO_MEM_MAP_ENABLE\x10\x8f\x31\x12(\n#CHANNEL_RESET_ATTRIBUTE_DI_TRISTATE\x10\x90\x31\x12#\n\x1e\x43HANNEL_RESET_ATTRIBUTE_CI_MAX\x10\x9c\x31\x12#\n\x1e\x43HANNEL_RESET_ATTRIBUTE_CI_MIN\x10\x9d\x31\x12\x31\n,CHANNEL_RESET_ATTRIBUTE_CI_CUSTOM_SCALE_NAME\x10\x9e\x31\x12*\n%CHANNEL_RESET_ATTRIBUTE_CI_FREQ_UNITS\x10\xa1\x31\x12)\n$CHANNEL_RESET_ATTRIBUTE_CI_FREQ_TERM\x10\xa2\x31\x12,\n\'CHANNEL_RESET_ATTRIBUTE_CI_PERIOD_UNITS\x10\xa3\x31\x12+\n&CHANNEL_RESET_ATTRIBUTE_CI_PERIOD_TERM\x10\xa4\x31\x12\x31\n,CHANNEL_RESET_ATTRIBUTE_CI_ANG_ENCODER_UNITS\x10\xa6\x31\x12\x31\n,CHANNEL_RESET_ATTRIBUTE_CI_LIN_ENCODER_UNITS\x10\xa9\x31\x12\x30\n+CHANNEL_RESET_ATTRIBUTE_CI_PULSE_WIDTH_TERM\x10\xaa\x31\x12\x32\n-CHANNEL_RESET_ATTRIBUTE_CI_TWO_EDGE_SEP_UNITS\x10\xac\x31\x12\x37\n2CHANNEL_RESET_ATTRIBUTE_CI_TWO_EDGE_SEP_FIRST_TERM\x10\xad\x31\x12\x38\n3CHANNEL_RESET_ATTRIBUTE_CI_TWO_EDGE_SEP_SECOND_TERM\x10\xae\x31\x12\x31\n,CHANNEL_RESET_ATTRIBUTE_CI_SEMI_PERIOD_UNITS\x10\xaf\x31\x12\x30\n+CHANNEL_RESET_ATTRIBUTE_CI_SEMI_PERIOD_TERM\x10\xb0\x31\x12\x31\n,CHANNEL_RESET_ATTRIBUTE_CI_CTR_TIMEBASE_RATE\x10\xb2\x31\x12@\n;CHANNEL_RESET_ATTRIBUTE_CI_CTR_TIMEBASE_MASTER_TIMEBASE_DIV\x10\xb3\x31\x12/\n*CHANNEL_RESET_ATTRIBUTE_CO_PULSE_HIGH_TIME\x10\xba\x31\x12.\n)CHANNEL_RESET_ATTRIBUTE_CO_PULSE_LOW_TIME\x10\xbb\x31\x12\x38\n3CHANNEL_RESET_ATTRIBUTE_CO_PULSE_TIME_INITIAL_DELAY\x10\xbc\x31\x12\x31\n,CHANNEL_RESET_ATTRIBUTE_CO_CTR_TIMEBASE_RATE\x10\xc2\x31\x12@\n;CHANNEL_RESET_ATTRIBUTE_CO_CTR_TIMEBASE_MASTER_TIMEBASE_DIV\x10\xc3\x31\x12\x30\n+CHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_TERM\x10\xc7\x31\x12)\n$CHANNEL_RESET_ATTRIBUTE_AI_THRMSTR_A\x10\xc9\x31\x12)\n$CHANNEL_RESET_ATTRIBUTE_AI_THRMSTR_C\x10\xca\x31\x12)\n$CHANNEL_RESET_ATTRIBUTE_AI_THRMSTR_B\x10\xcb\x31\x12\x32\n-CHANNEL_RESET_ATTRIBUTE_AI_AC_EXCIT_WIRE_MODE\x10\xcd\x31\x12\x30\n+CHANNEL_RESET_ATTRIBUTE_CO_PULSE_FREQ_UNITS\x10\xd5\x31\x12\x30\n+CHANNEL_RESET_ATTRIBUTE_CO_PULSE_TIME_UNITS\x10\xd6\x31\x12*\n%CHANNEL_RESET_ATTRIBUTE_CO_PULSE_TERM\x10\xe1\x31\x12(\n#CHANNEL_RESET_ATTRIBUTE_DO_TRISTATE\x10\xf3\x31\x12\x37\n2CHANNEL_RESET_ATTRIBUTE_AI_BRIDGE_BALANCE_FINE_POT\x10\xf4\x31\x12\x34\n/CHANNEL_RESET_ATTRIBUTE_AI_FORCE_READ_FROM_CHAN\x10\xf8\x31\x12\'\n\"CHANNEL_RESET_ATTRIBUTE_CHAN_DESCR\x10\xa6\x32\x12\x30\n+CHANNEL_RESET_ATTRIBUTE_CI_PERIOD_MEAS_METH\x10\xac\x32\x12\x30\n+CHANNEL_RESET_ATTRIBUTE_CI_PERIOD_MEAS_TIME\x10\xad\x32\x12*\n%CHANNEL_RESET_ATTRIBUTE_CI_PERIOD_DIV\x10\xae\x32\x12<\n7CHANNEL_RESET_ATTRIBUTE_AI_BRIDGE_SHUNT_CAL_GAIN_ADJUST\x10\xbf\x32\x12\x35\n0CHANNEL_RESET_ATTRIBUTE_AI_EXCIT_USE_MULTIPLEXED\x10\x80\x43\x12)\n$CHANNEL_RESET_ATTRIBUTE_AI_INPUT_SRC\x10\x98\x43\x12\x36\n1CHANNEL_RESET_ATTRIBUTE_AI_LVDT_SENSITIVITY_UNITS\x10\x9a\x43\x12\x36\n1CHANNEL_RESET_ATTRIBUTE_AI_RVDT_SENSITIVITY_UNITS\x10\x9b\x43\x12\x37\n2CHANNEL_RESET_ATTRIBUTE_AI_ACCEL_SENSITIVITY_UNITS\x10\x9c\x43\x12\x34\n/CHANNEL_RESET_ATTRIBUTE_CI_ENCODER_A_INPUT_TERM\x10\x9d\x43\x12\x34\n/CHANNEL_RESET_ATTRIBUTE_CI_ENCODER_B_INPUT_TERM\x10\x9e\x43\x12\x34\n/CHANNEL_RESET_ATTRIBUTE_CI_ENCODER_Z_INPUT_TERM\x10\x9f\x43\x12\x31\n,CHANNEL_RESET_ATTRIBUTE_CI_DUP_COUNT_PREVENT\x10\xac\x43\x12\x37\n2CHANNEL_RESET_ATTRIBUTE_AI_BRIDGE_SHUNT_CAL_SELECT\x10\xd5\x43\x12/\n*CHANNEL_RESET_ATTRIBUTE_DI_DIG_FLTR_ENABLE\x10\xd6\x43\x12\x38\n3CHANNEL_RESET_ATTRIBUTE_DI_DIG_FLTR_MIN_PULSE_WIDTH\x10\xd7\x43\x12\x34\n/CHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_DIR_TERM\x10\xe1\x43\x12\x35\n0CHANNEL_RESET_ATTRIBUTE_CI_ENCODER_DECODING_TYPE\x10\xe6\x43\x12\x34\n/CHANNEL_RESET_ATTRIBUTE_CI_FREQ_DIG_FLTR_ENABLE\x10\xe7\x43\x12=\n8CHANNEL_RESET_ATTRIBUTE_CI_FREQ_DIG_FLTR_MIN_PULSE_WIDTH\x10\xe8\x43\x12:\n5CHANNEL_RESET_ATTRIBUTE_CI_FREQ_DIG_FLTR_TIMEBASE_SRC\x10\xe9\x43\x12;\n6CHANNEL_RESET_ATTRIBUTE_CI_FREQ_DIG_FLTR_TIMEBASE_RATE\x10\xea\x43\x12\x34\n/CHANNEL_RESET_ATTRIBUTE_CI_FREQ_DIG_SYNC_ENABLE\x10\xeb\x43\x12\x36\n1CHANNEL_RESET_ATTRIBUTE_CI_PERIOD_DIG_FLTR_ENABLE\x10\xec\x43\x12?\n:CHANNEL_RESET_ATTRIBUTE_CI_PERIOD_DIG_FLTR_MIN_PULSE_WIDTH\x10\xed\x43\x12<\n7CHANNEL_RESET_ATTRIBUTE_CI_PERIOD_DIG_FLTR_TIMEBASE_SRC\x10\xee\x43\x12=\n8CHANNEL_RESET_ATTRIBUTE_CI_PERIOD_DIG_FLTR_TIMEBASE_RATE\x10\xef\x43\x12\x36\n1CHANNEL_RESET_ATTRIBUTE_CI_PERIOD_DIG_SYNC_ENABLE\x10\xf0\x43\x12\x45\n@CHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_COUNT_DIR_DIG_FLTR_ENABLE\x10\xf1\x43\x12N\nICHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_COUNT_DIR_DIG_FLTR_MIN_PULSE_WIDTH\x10\xf2\x43\x12K\nFCHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_COUNT_DIR_DIG_FLTR_TIMEBASE_SRC\x10\xf3\x43\x12L\nGCHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_COUNT_DIR_DIG_FLTR_TIMEBASE_RATE\x10\xf4\x43\x12\x45\n@CHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_COUNT_DIR_DIG_SYNC_ENABLE\x10\xf5\x43\x12;\n6CHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_DIG_FLTR_ENABLE\x10\xf6\x43\x12\x44\n?CHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_DIG_FLTR_MIN_PULSE_WIDTH\x10\xf7\x43\x12\x41\nCHANNEL_RESET_ATTRIBUTE_CI_TWO_EDGE_SEP_SECOND_DIG_FLTR_ENABLE\x10\x94\x44\x12L\nGCHANNEL_RESET_ATTRIBUTE_CI_TWO_EDGE_SEP_SECOND_DIG_FLTR_MIN_PULSE_WIDTH\x10\x95\x44\x12I\nDCHANNEL_RESET_ATTRIBUTE_CI_TWO_EDGE_SEP_SECOND_DIG_FLTR_TIMEBASE_SRC\x10\x96\x44\x12J\nECHANNEL_RESET_ATTRIBUTE_CI_TWO_EDGE_SEP_SECOND_DIG_FLTR_TIMEBASE_RATE\x10\x97\x44\x12\x43\n>CHANNEL_RESET_ATTRIBUTE_CI_TWO_EDGE_SEP_SECOND_DIG_SYNC_ENABLE\x10\x98\x44\x12;\n6CHANNEL_RESET_ATTRIBUTE_CI_SEMI_PERIOD_DIG_FLTR_ENABLE\x10\x99\x44\x12\x44\n?CHANNEL_RESET_ATTRIBUTE_CI_SEMI_PERIOD_DIG_FLTR_MIN_PULSE_WIDTH\x10\x9a\x44\x12\x41\nCHANNEL_RESET_ATTRIBUTE_CI_CTR_TIMEBASE_DIG_FLTR_TIMEBASE_RATE\x10\xf4\x44\x12<\n7CHANNEL_RESET_ATTRIBUTE_CI_CTR_TIMEBASE_DIG_SYNC_ENABLE\x10\xf5\x44\x12<\n7CHANNEL_RESET_ATTRIBUTE_CO_CTR_TIMEBASE_DIG_FLTR_ENABLE\x10\xf6\x44\x12\x45\n@CHANNEL_RESET_ATTRIBUTE_CO_CTR_TIMEBASE_DIG_FLTR_MIN_PULSE_WIDTH\x10\xf7\x44\x12\x42\n=CHANNEL_RESET_ATTRIBUTE_CO_CTR_TIMEBASE_DIG_FLTR_TIMEBASE_SRC\x10\xf8\x44\x12\x43\n>CHANNEL_RESET_ATTRIBUTE_CO_CTR_TIMEBASE_DIG_FLTR_TIMEBASE_RATE\x10\xf9\x44\x12<\n7CHANNEL_RESET_ATTRIBUTE_CO_CTR_TIMEBASE_DIG_SYNC_ENABLE\x10\xfa\x44\x12?\n:CHANNEL_RESET_ATTRIBUTE_AI_ENHANCED_ALIAS_REJECTION_ENABLE\x10\x94\x45\x12\x33\n.CHANNEL_RESET_ATTRIBUTE_AI_CHAN_CAL_ENABLE_CAL\x10\x98\x45\x12\x39\n4CHANNEL_RESET_ATTRIBUTE_AI_CHAN_CAL_APPLY_CAL_IF_EXP\x10\x99\x45\x12\x33\n.CHANNEL_RESET_ATTRIBUTE_AI_CHAN_CAL_SCALE_TYPE\x10\x9c\x45\x12>\n9CHANNEL_RESET_ATTRIBUTE_AI_CHAN_CAL_TABLE_PRE_SCALED_VALS\x10\x9d\x45\x12:\n5CHANNEL_RESET_ATTRIBUTE_AI_CHAN_CAL_TABLE_SCALED_VALS\x10\x9e\x45\x12;\n6CHANNEL_RESET_ATTRIBUTE_AI_CHAN_CAL_POLY_FORWARD_COEFF\x10\x9f\x45\x12;\n6CHANNEL_RESET_ATTRIBUTE_AI_CHAN_CAL_POLY_REVERSE_COEFF\x10\xa0\x45\x12\x37\n2CHANNEL_RESET_ATTRIBUTE_AI_CHAN_CAL_VERIF_REF_VALS\x10\xa1\x45\x12\x37\n2CHANNEL_RESET_ATTRIBUTE_AI_CHAN_CAL_VERIF_ACQ_VALS\x10\xa2\x45\x12\x36\n1CHANNEL_RESET_ATTRIBUTE_AI_CHAN_CAL_OPERATOR_NAME\x10\xa3\x45\x12-\n(CHANNEL_RESET_ATTRIBUTE_AI_CHAN_CAL_DESC\x10\xa4\x45\x12/\n*CHANNEL_RESET_ATTRIBUTE_CI_TIMESTAMP_UNITS\x10\xb3\x45\x12\x39\n4CHANNEL_RESET_ATTRIBUTE_CI_TIMESTAMP_INITIAL_SECONDS\x10\xb4\x45\x12\x39\n4CHANNEL_RESET_ATTRIBUTE_AI_RAW_DATA_COMPRESSION_TYPE\x10\xd8\x45\x12\x46\nACHANNEL_RESET_ATTRIBUTE_AI_LOSSY_LSB_REMOVAL_COMPRESSED_SAMP_SIZE\x10\xd9\x45\x12\x39\n4CHANNEL_RESET_ATTRIBUTE_CI_SEMI_PERIOD_STARTING_EDGE\x10\xfe\x45\x12:\n5CHANNEL_RESET_ATTRIBUTE_AI_DATA_XFER_CUSTOM_THRESHOLD\x10\x8c\x46\x12*\n%CHANNEL_RESET_ATTRIBUTE_DI_ACQUIRE_ON\x10\xe6R\x12\x38\n3CHANNEL_RESET_ATTRIBUTE_DO_LINE_STATES_PAUSED_STATE\x10\xe7R\x12\x36\n1CHANNEL_RESET_ATTRIBUTE_DO_LINE_STATES_DONE_STATE\x10\xe8R\x12+\n&CHANNEL_RESET_ATTRIBUTE_DO_GENERATE_ON\x10\xe9R\x12.\n)CHANNEL_RESET_ATTRIBUTE_DI_MEM_MAP_ENABLE\x10\xeaR\x12.\n)CHANNEL_RESET_ATTRIBUTE_DO_MEM_MAP_ENABLE\x10\xebR\x12,\n\'CHANNEL_RESET_ATTRIBUTE_DI_LOGIC_FAMILY\x10\xedR\x12,\n\'CHANNEL_RESET_ATTRIBUTE_DO_LOGIC_FAMILY\x10\xeeR\x12\x37\n2CHANNEL_RESET_ATTRIBUTE_DO_LINE_STATES_START_STATE\x10\xf2R\x12.\n)CHANNEL_RESET_ATTRIBUTE_AI_VOLTAGE_DB_REF\x10\xb0S\x12\x35\n0CHANNEL_RESET_ATTRIBUTE_AI_SOUND_PRESSURE_DB_REF\x10\xb1S\x12,\n\'CHANNEL_RESET_ATTRIBUTE_AI_ACCEL_DB_REF\x10\xb2S\x12\x32\n-CHANNEL_RESET_ATTRIBUTE_AI_THRMCPL_SCALE_TYPE\x10\xd0S\x12\x34\n/CHANNEL_RESET_ATTRIBUTE_CO_CONSTRAINED_GEN_MODE\x10\xf2S\x12/\n*CHANNEL_RESET_ATTRIBUTE_AI_ADC_TIMING_MODE\x10\xf9S\x12-\n(CHANNEL_RESET_ATTRIBUTE_AO_FUNC_GEN_TYPE\x10\x98T\x12-\n(CHANNEL_RESET_ATTRIBUTE_AO_FUNC_GEN_FREQ\x10\x99T\x12\x32\n-CHANNEL_RESET_ATTRIBUTE_AO_FUNC_GEN_AMPLITUDE\x10\x9aT\x12/\n*CHANNEL_RESET_ATTRIBUTE_AO_FUNC_GEN_OFFSET\x10\x9bT\x12:\n5CHANNEL_RESET_ATTRIBUTE_AO_FUNC_GEN_SQUARE_DUTY_CYCLE\x10\x9cT\x12\x35\n0CHANNEL_RESET_ATTRIBUTE_AO_VOLTAGE_CURRENT_LIMIT\x10\x9dT\x12\x38\n3CHANNEL_RESET_ATTRIBUTE_AO_FUNC_GEN_MODULATION_TYPE\x10\xa2T\x12\x35\n0CHANNEL_RESET_ATTRIBUTE_AO_FUNC_GEN_FM_DEVIATION\x10\xa3T\x12\x31\n,CHANNEL_RESET_ATTRIBUTE_DO_OVERCURRENT_LIMIT\x10\x85U\x12\x39\n4CHANNEL_RESET_ATTRIBUTE_DO_OVERCURRENT_AUTO_REENABLE\x10\x86U\x12;\n6CHANNEL_RESET_ATTRIBUTE_DO_OVERCURRENT_REENABLE_PERIOD\x10\x87U\x12+\n&CHANNEL_RESET_ATTRIBUTE_AI_PROBE_ATTEN\x10\x88U\x12)\n$CHANNEL_RESET_ATTRIBUTE_AI_DC_OFFSET\x10\x89U\x12\x31\n,CHANNEL_RESET_ATTRIBUTE_AI_USB_XFER_REQ_SIZE\x10\x8eU\x12\x31\n,CHANNEL_RESET_ATTRIBUTE_AO_USB_XFER_REQ_SIZE\x10\x8fU\x12\x31\n,CHANNEL_RESET_ATTRIBUTE_DI_USB_XFER_REQ_SIZE\x10\x90U\x12\x31\n,CHANNEL_RESET_ATTRIBUTE_DO_USB_XFER_REQ_SIZE\x10\x91U\x12\x31\n,CHANNEL_RESET_ATTRIBUTE_CI_USB_XFER_REQ_SIZE\x10\x92U\x12\x31\n,CHANNEL_RESET_ATTRIBUTE_CO_USB_XFER_REQ_SIZE\x10\x93U\x12\x43\n>CHANNEL_RESET_ATTRIBUTE_AI_EDDY_CURRENT_PROX_PROBE_SENSITIVITY\x10\xbeU\x12I\nDCHANNEL_RESET_ATTRIBUTE_AI_EDDY_CURRENT_PROX_PROBE_SENSITIVITY_UNITS\x10\xbfU\x12=\n8CHANNEL_RESET_ATTRIBUTE_AI_EDDY_CURRENT_PROX_PROBE_UNITS\x10\xc0U\x12\x41\nCHANNEL_RESET_ATTRIBUTE_CI_PULSE_FREQ_DIG_FLTR_MIN_PULSE_WIDTH\x10\x87^\x12@\n;CHANNEL_RESET_ATTRIBUTE_CI_PULSE_FREQ_DIG_FLTR_TIMEBASE_SRC\x10\x88^\x12\x41\nCHANNEL_RESET_ATTRIBUTE_CI_PULSE_TIME_DIG_FLTR_MIN_PULSE_WIDTH\x10\x8f^\x12@\n;CHANNEL_RESET_ATTRIBUTE_CI_PULSE_TIME_DIG_FLTR_TIMEBASE_SRC\x10\x90^\x12\x41\nCHANNEL_RESET_ATTRIBUTE_AI_FORCE_IEPE_SENSOR_SENSITIVITY_UNITS\x10\x82_\x12\x34\n/CHANNEL_RESET_ATTRIBUTE_AI_BRIDGE_INITIAL_RATIO\x10\x86_\x12\x37\n2CHANNEL_RESET_ATTRIBUTE_AI_BRIDGE_ELECTRICAL_UNITS\x10\x87_\x12\x35\n0CHANNEL_RESET_ATTRIBUTE_AI_BRIDGE_PHYSICAL_UNITS\x10\x88_\x12\x31\n,CHANNEL_RESET_ATTRIBUTE_AI_BRIDGE_SCALE_TYPE\x10\x89_\x12I\nDCHANNEL_RESET_ATTRIBUTE_AI_BRIDGE_TWO_POINT_LIN_FIRST_ELECTRICAL_VAL\x10\x8a_\x12G\nBCHANNEL_RESET_ATTRIBUTE_AI_BRIDGE_TWO_POINT_LIN_FIRST_PHYSICAL_VAL\x10\x8b_\x12J\nECHANNEL_RESET_ATTRIBUTE_AI_BRIDGE_TWO_POINT_LIN_SECOND_ELECTRICAL_VAL\x10\x8c_\x12H\nCCHANNEL_RESET_ATTRIBUTE_AI_BRIDGE_TWO_POINT_LIN_SECOND_PHYSICAL_VAL\x10\x8d_\x12<\n7CHANNEL_RESET_ATTRIBUTE_AI_BRIDGE_TABLE_ELECTRICAL_VALS\x10\x8e_\x12:\n5CHANNEL_RESET_ATTRIBUTE_AI_BRIDGE_TABLE_PHYSICAL_VALS\x10\x8f_\x12\x39\n4CHANNEL_RESET_ATTRIBUTE_AI_BRIDGE_POLY_FORWARD_COEFF\x10\x90_\x12\x39\n4CHANNEL_RESET_ATTRIBUTE_AI_BRIDGE_POLY_REVERSE_COEFF\x10\x91_\x12,\n\'CHANNEL_RESET_ATTRIBUTE_AI_BRIDGE_UNITS\x10\x92_\x12>\n9CHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_COUNT_RESET_ENABLE\x10\xaf_\x12\x43\n>CHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_COUNT_RESET_RESET_COUNT\x10\xb0_\x12<\n7CHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_COUNT_RESET_TERM\x10\xb1_\x12\x43\n>CHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_COUNT_RESET_ACTIVE_EDGE\x10\xb2_\x12G\nBCHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_COUNT_RESET_DIG_FLTR_ENABLE\x10\xb3_\x12P\nKCHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_COUNT_RESET_DIG_FLTR_MIN_PULSE_WIDTH\x10\xb4_\x12M\nHCHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_COUNT_RESET_DIG_FLTR_TIMEBASE_SRC\x10\xb5_\x12N\nICHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_COUNT_RESET_DIG_FLTR_TIMEBASE_RATE\x10\xb6_\x12G\nBCHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_COUNT_RESET_DIG_SYNC_ENABLE\x10\xb7_\x12;\n6CHANNEL_RESET_ATTRIBUTE_AI_THRMCPL_LEAD_OFFSET_VOLTAGE\x10\xb8_\x12\x33\n.CHANNEL_RESET_ATTRIBUTE_AI_REMOVE_FILTER_DELAY\x10\xbd_\x12\x32\n-CHANNEL_RESET_ATTRIBUTE_AI_AVERAGING_WIN_SIZE\x10\xee_\x12.\n)CHANNEL_RESET_ATTRIBUTE_AI_VELOCITY_UNITS\x10\xf4_\x12;\n6CHANNEL_RESET_ATTRIBUTE_AI_VELOCITY_IEPE_SENSOR_DB_REF\x10\xf5_\x12@\n;CHANNEL_RESET_ATTRIBUTE_AI_VELOCITY_IEPE_SENSOR_SENSITIVITY\x10\xf6_\x12\x46\nACHANNEL_RESET_ATTRIBUTE_AI_VELOCITY_IEPE_SENSOR_SENSITIVITY_UNITS\x10\xf7_\x12@\n;CHANNEL_RESET_ATTRIBUTE_AI_STRAIN_GAGE_FORCE_READ_FROM_CHAN\x10\xfa_\x12?\n:CHANNEL_RESET_ATTRIBUTE_AI_ROSETTE_STRAIN_GAGE_ORIENTATION\x10\xfc_\x12\x45\n@CHANNEL_RESET_ATTRIBUTE_AI_ROSETTE_STRAIN_GAGE_ROSETTE_MEAS_TYPE\x10\xfd_\x12\x32\n-CHANNEL_RESET_ATTRIBUTE_AI_USB_XFER_REQ_COUNT\x10\x80`\x12\x32\n-CHANNEL_RESET_ATTRIBUTE_AO_USB_XFER_REQ_COUNT\x10\x81`\x12\x32\n-CHANNEL_RESET_ATTRIBUTE_DI_USB_XFER_REQ_COUNT\x10\x82`\x12\x32\n-CHANNEL_RESET_ATTRIBUTE_DO_USB_XFER_REQ_COUNT\x10\x83`\x12\x32\n-CHANNEL_RESET_ATTRIBUTE_CI_USB_XFER_REQ_COUNT\x10\x84`\x12\x32\n-CHANNEL_RESET_ATTRIBUTE_CO_USB_XFER_REQ_COUNT\x10\x85`\x12.\n)CHANNEL_RESET_ATTRIBUTE_CI_TIMESTAMP_TERM\x10\xb9`\x12.\n)CHANNEL_RESET_ATTRIBUTE_CI_TIMESTAMP_EDGE\x10\xba`\x12\x33\n.CHANNEL_RESET_ATTRIBUTE_CI_TIMESTAMP_TIMESCALE\x10\xbb`\x12\x32\n-CHANNEL_RESET_ATTRIBUTE_NAV_CUSTOM_SCALE_NAME\x10\xbc`\x12*\n%CHANNEL_RESET_ATTRIBUTE_NAV_ALT_UNITS\x10\xbe`\x12*\n%CHANNEL_RESET_ATTRIBUTE_NAV_LAT_UNITS\x10\xbf`\x12+\n&CHANNEL_RESET_ATTRIBUTE_NAV_LONG_UNITS\x10\xc0`\x12\x38\n3CHANNEL_RESET_ATTRIBUTE_NAV_SPEED_OVER_GROUND_UNITS\x10\xc1`\x12,\n\'CHANNEL_RESET_ATTRIBUTE_NAV_TRACK_UNITS\x10\xc2`\x12\x34\n/CHANNEL_RESET_ATTRIBUTE_NAV_VERT_VELOCITY_UNITS\x10\xc3`\x12\x30\n+CHANNEL_RESET_ATTRIBUTE_NAV_TIMESTAMP_UNITS\x10\xc4`\x12\x34\n/CHANNEL_RESET_ATTRIBUTE_NAV_TIMESTAMP_TIMESCALE\x10\xc5`\x12\x32\n-CHANNEL_RESET_ATTRIBUTE_AI_FILTER_DELAY_UNITS\x10\xf1`\x12\x37\n2CHANNEL_RESET_ATTRIBUTE_AO_FILTER_DELAY_ADJUSTMENT\x10\xf2`\x12\x37\n2CHANNEL_RESET_ATTRIBUTE_AI_FILTER_DELAY_ADJUSTMENT\x10\xf4`\x12,\n\'CHANNEL_RESET_ATTRIBUTE_AO_FILTER_DELAY\x10\xf5`\x12\x32\n-CHANNEL_RESET_ATTRIBUTE_AO_FILTER_DELAY_UNITS\x10\xf6`\x12/\n*CHANNEL_RESET_ATTRIBUTE_CI_DUTY_CYCLE_TERM\x10\x8d\x61\x12:\n5CHANNEL_RESET_ATTRIBUTE_CI_DUTY_CYCLE_DIG_FLTR_ENABLE\x10\x8e\x61\x12\x43\n>CHANNEL_RESET_ATTRIBUTE_CI_DUTY_CYCLE_DIG_FLTR_MIN_PULSE_WIDTH\x10\x8f\x61\x12@\n;CHANNEL_RESET_ATTRIBUTE_CI_DUTY_CYCLE_DIG_FLTR_TIMEBASE_SRC\x10\x90\x61\x12\x41\n\n9CHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_LOGIC_LVL_BEHAVIOR\x10\x9c\x61\x12>\n9CHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_COUNT_DIR_TERM_CFG\x10\x9d\x61\x12H\nCCHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_COUNT_DIR_LOGIC_LVL_BEHAVIOR\x10\x9e\x61\x12@\n;CHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_COUNT_RESET_TERM_CFG\x10\x9f\x61\x12J\nECHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_COUNT_RESET_LOGIC_LVL_BEHAVIOR\x10\xa0\x61\x12\x33\n.CHANNEL_RESET_ATTRIBUTE_CI_DUTY_CYCLE_TERM_CFG\x10\xa1\x61\x12=\n8CHANNEL_RESET_ATTRIBUTE_CI_DUTY_CYCLE_LOGIC_LVL_BEHAVIOR\x10\xa2\x61\x12\x38\n3CHANNEL_RESET_ATTRIBUTE_CI_ENCODER_A_INPUT_TERM_CFG\x10\xa3\x61\x12\x42\n=CHANNEL_RESET_ATTRIBUTE_CI_ENCODER_A_INPUT_LOGIC_LVL_BEHAVIOR\x10\xa4\x61\x12\x38\n3CHANNEL_RESET_ATTRIBUTE_CI_ENCODER_B_INPUT_TERM_CFG\x10\xa5\x61\x12\x42\n=CHANNEL_RESET_ATTRIBUTE_CI_ENCODER_B_INPUT_LOGIC_LVL_BEHAVIOR\x10\xa6\x61\x12\x38\n3CHANNEL_RESET_ATTRIBUTE_CI_ENCODER_Z_INPUT_TERM_CFG\x10\xa7\x61\x12\x42\n=CHANNEL_RESET_ATTRIBUTE_CI_ENCODER_Z_INPUT_LOGIC_LVL_BEHAVIOR\x10\xa8\x61\x12\x34\n/CHANNEL_RESET_ATTRIBUTE_CI_PULSE_WIDTH_TERM_CFG\x10\xa9\x61\x12>\n9CHANNEL_RESET_ATTRIBUTE_CI_PULSE_WIDTH_LOGIC_LVL_BEHAVIOR\x10\xaa\x61\x12;\n6CHANNEL_RESET_ATTRIBUTE_CI_TWO_EDGE_SEP_FIRST_TERM_CFG\x10\xab\x61\x12\x45\n@CHANNEL_RESET_ATTRIBUTE_CI_TWO_EDGE_SEP_FIRST_LOGIC_LVL_BEHAVIOR\x10\xac\x61\x12<\n7CHANNEL_RESET_ATTRIBUTE_CI_TWO_EDGE_SEP_SECOND_TERM_CFG\x10\xad\x61\x12\x46\nACHANNEL_RESET_ATTRIBUTE_CI_TWO_EDGE_SEP_SECOND_LOGIC_LVL_BEHAVIOR\x10\xae\x61\x12\x34\n/CHANNEL_RESET_ATTRIBUTE_CI_SEMI_PERIOD_TERM_CFG\x10\xaf\x61\x12>\n9CHANNEL_RESET_ATTRIBUTE_CI_SEMI_PERIOD_LOGIC_LVL_BEHAVIOR\x10\xb0\x61\x12\x33\n.CHANNEL_RESET_ATTRIBUTE_CI_PULSE_FREQ_TERM_CFG\x10\xb1\x61\x12=\n8CHANNEL_RESET_ATTRIBUTE_CI_PULSE_FREQ_LOGIC_LVL_BEHAVIOR\x10\xb2\x61\x12\x33\n.CHANNEL_RESET_ATTRIBUTE_CI_PULSE_TIME_TERM_CFG\x10\xb3\x61\x12=\n8CHANNEL_RESET_ATTRIBUTE_CI_PULSE_TIME_LOGIC_LVL_BEHAVIOR\x10\xb4\x61\x12\x34\n/CHANNEL_RESET_ATTRIBUTE_CI_PULSE_TICKS_TERM_CFG\x10\xb5\x61\x12>\n9CHANNEL_RESET_ATTRIBUTE_CI_PULSE_TICKS_LOGIC_LVL_BEHAVIOR\x10\xb6\x61\x12.\n)CHANNEL_RESET_ATTRIBUTE_CI_THRESH_VOLTAGE\x10\xb7\x61\x12:\n5CHANNEL_RESET_ATTRIBUTE_AI_EXCIT_IDLE_OUTPUT_BEHAVIOR\x10\xb8\x61\x12/\n*CHANNEL_RESET_ATTRIBUTE_AI_DIG_FLTR_ENABLE\x10\xbd\x61\x12-\n(CHANNEL_RESET_ATTRIBUTE_AI_DIG_FLTR_TYPE\x10\xbe\x61\x12\x31\n,CHANNEL_RESET_ATTRIBUTE_AI_DIG_FLTR_RESPONSE\x10\xbf\x61\x12.\n)CHANNEL_RESET_ATTRIBUTE_AI_DIG_FLTR_ORDER\x10\xc0\x61\x12<\n7CHANNEL_RESET_ATTRIBUTE_AI_DIG_FLTR_LOWPASS_CUTOFF_FREQ\x10\xc1\x61\x12=\n8CHANNEL_RESET_ATTRIBUTE_AI_DIG_FLTR_HIGHPASS_CUTOFF_FREQ\x10\xc2\x61\x12=\n8CHANNEL_RESET_ATTRIBUTE_AI_DIG_FLTR_BANDPASS_CENTER_FREQ\x10\xc3\x61\x12\x37\n2CHANNEL_RESET_ATTRIBUTE_AI_DIG_FLTR_BANDPASS_WIDTH\x10\xc4\x61\x12:\n5CHANNEL_RESET_ATTRIBUTE_AI_DIG_FLTR_NOTCH_CENTER_FREQ\x10\xc5\x61\x12\x34\n/CHANNEL_RESET_ATTRIBUTE_AI_DIG_FLTR_NOTCH_WIDTH\x10\xc6\x61\x12.\n)CHANNEL_RESET_ATTRIBUTE_AI_DIG_FLTR_COEFF\x10\xc7\x61\x12@\n;CHANNEL_RESET_ATTRIBUTE_AI_BRIDGE_SHUNT_CAL_SHUNT_CAL_A_SRC\x10\xca\x61\x12:\n5CHANNEL_RESET_ATTRIBUTE_CI_VELOCITY_ANG_ENCODER_UNITS\x10\xd8\x61\x12\x43\n>CHANNEL_RESET_ATTRIBUTE_CI_VELOCITY_ANG_ENCODER_PULSES_PER_REV\x10\xd9\x61\x12:\n5CHANNEL_RESET_ATTRIBUTE_CI_VELOCITY_LIN_ENCODER_UNITS\x10\xda\x61\x12\x43\n>CHANNEL_RESET_ATTRIBUTE_CI_VELOCITY_LIN_ENCODER_DIST_PER_PULSE\x10\xdb\x61\x12>\n9CHANNEL_RESET_ATTRIBUTE_CI_VELOCITY_ENCODER_DECODING_TYPE\x10\xdc\x61\x12=\n8CHANNEL_RESET_ATTRIBUTE_CI_VELOCITY_ENCODER_A_INPUT_TERM\x10\xdd\x61\x12\x41\nCHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_GATE_LOGIC_LVL_BEHAVIOR\x10\xf0\x61\x12@\n;CHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_GATE_DIG_FLTR_ENABLE\x10\xf1\x61\x12I\nDCHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_GATE_DIG_FLTR_MIN_PULSE_WIDTH\x10\xf2\x61\x12\x46\nACHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_GATE_DIG_FLTR_TIMEBASE_SRC\x10\xf3\x61\x12G\nBCHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_GATE_DIG_FLTR_TIMEBASE_RATE\x10\xf4\x61\x12\x35\n0CHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_GATE_WHEN\x10\xf5\x61\x12@\n;CHANNEL_RESET_ATTRIBUTE_AI_BRIDGE_SHUNT_CAL_SHUNT_CAL_B_SRC\x10\xf7\x61\x12+\n&CHANNEL_RESET_ATTRIBUTE_AI_EXCIT_SENSE\x10\xfd\x61\x12\x37\n2CHANNEL_RESET_ATTRIBUTE_AI_OPEN_CHAN_DETECT_ENABLE\x10\xff\x61\x12,\n\'CHANNEL_RESET_ATTRIBUTE_AI_CHARGE_UNITS\x10\x92\x62\x12\x38\n3CHANNEL_RESET_ATTRIBUTE_AI_ACCEL_CHARGE_SENSITIVITY\x10\x93\x62\x12>\n9CHANNEL_RESET_ATTRIBUTE_AI_ACCEL_CHARGE_SENSITIVITY_UNITS\x10\x94\x62\x12\x43\n>CHANNEL_RESET_ATTRIBUTE_AI_ACCEL_4_WIRE_DC_VOLTAGE_SENSITIVITY\x10\x95\x62\x12I\nDCHANNEL_RESET_ATTRIBUTE_AI_ACCEL_4_WIRE_DC_VOLTAGE_SENSITIVITY_UNITS\x10\x96\x62\x12\x32\n-CHANNEL_RESET_ATTRIBUTE_AI_DATA_XFER_MAX_RATE\x10\x97\x62\x12\x36\n1CHANNEL_RESET_ATTRIBUTE_CHAN_SYNC_UNLOCK_BEHAVIOR\x10\xbc\x62\x12+\n&CHANNEL_RESET_ATTRIBUTE_AI_CHOP_ENABLE\x10\xc3\x62\x12\x34\n/CHANNEL_RESET_ATTRIBUTE_AI_SENSOR_POWER_VOLTAGE\x10\xe9\x62\x12\x30\n+CHANNEL_RESET_ATTRIBUTE_AI_SENSOR_POWER_CFG\x10\xea\x62\x12\x31\n,CHANNEL_RESET_ATTRIBUTE_AI_SENSOR_POWER_TYPE\x10\xeb\x62\x12-\n(CHANNEL_RESET_ATTRIBUTE_AI_FILTER_ENABLE\x10\xf3\x62\x12+\n&CHANNEL_RESET_ATTRIBUTE_AI_FILTER_FREQ\x10\xf4\x62\x12/\n*CHANNEL_RESET_ATTRIBUTE_AI_FILTER_RESPONSE\x10\xf5\x62\x12,\n\'CHANNEL_RESET_ATTRIBUTE_AI_FILTER_ORDER\x10\xf6\x62\x12\x45\n@CHANNEL_RESET_ATTRIBUTE_AI_INPUT_LIMITS_FAULT_DETECT_UPPER_LIMIT\x10\x8c\x63\x12\x45\n@CHANNEL_RESET_ATTRIBUTE_AI_INPUT_LIMITS_FAULT_DETECT_LOWER_LIMIT\x10\x8d\x63\x12@\n;CHANNEL_RESET_ATTRIBUTE_AI_INPUT_LIMITS_FAULT_DETECT_ENABLE\x10\x8e\x63\x12@\n;CHANNEL_RESET_ATTRIBUTE_AI_POWER_SUPPLY_FAULT_DETECT_ENABLE\x10\x91\x63\x12\x39\n4CHANNEL_RESET_ATTRIBUTE_AI_OVERCURRENT_DETECT_ENABLE\x10\x94\x63\x12\x33\n.CHANNEL_RESET_ATTRIBUTE_CI_FREQ_THRESH_VOLTAGE\x10\xab\x63\x12)\n$CHANNEL_RESET_ATTRIBUTE_CI_FREQ_HYST\x10\xac\x63\x12\x35\n0CHANNEL_RESET_ATTRIBUTE_CI_PERIOD_THRESH_VOLTAGE\x10\xad\x63\x12+\n&CHANNEL_RESET_ATTRIBUTE_CI_PERIOD_HYST\x10\xae\x63\x12:\n5CHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_THRESH_VOLTAGE\x10\xaf\x63\x12\x30\n+CHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_HYST\x10\xb0\x63\x12\x44\n?CHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_COUNT_DIR_THRESH_VOLTAGE\x10\xb1\x63\x12:\n5CHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_COUNT_DIR_HYST\x10\xb2\x63\x12\x46\nACHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_COUNT_RESET_THRESH_VOLTAGE\x10\xb3\x63\x12<\n7CHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_COUNT_RESET_HYST\x10\xb4\x63\x12?\n:CHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_GATE_THRESH_VOLTAGE\x10\xb5\x63\x12\x35\n0CHANNEL_RESET_ATTRIBUTE_CI_COUNT_EDGES_GATE_HYST\x10\xb6\x63\x12-\n(CHANNEL_RESET_ATTRIBUTE_CI_FILTER_ENABLE\x10\xb7\x63\x12+\n&CHANNEL_RESET_ATTRIBUTE_CI_FILTER_FREQ\x10\xb8\x63\x12/\n*CHANNEL_RESET_ATTRIBUTE_CI_FILTER_RESPONSE\x10\xb9\x63\x12,\n\'CHANNEL_RESET_ATTRIBUTE_CI_FILTER_ORDER\x10\xba\x63\x12\x32\n-CHANNEL_RESET_ATTRIBUTE_CI_FILTER_DELAY_UNITS\x10\xbc\x63\x12\x34\n/CHANNEL_RESET_ATTRIBUTE_AO_FUNC_GEN_START_PHASE\x10\xc4\x63\x12\x32\n-CHANNEL_RESET_ATTRIBUTE_AO_COMMON_MODE_OFFSET\x10\xcc\x63\x12\x31\n,CHANNEL_RESET_ATTRIBUTE_PWR_VOLTAGE_SETPOINT\x10\xd4\x63\x12\x31\n,CHANNEL_RESET_ATTRIBUTE_PWR_CURRENT_SETPOINT\x10\xd5\x63\x12.\n)CHANNEL_RESET_ATTRIBUTE_PWR_OUTPUT_ENABLE\x10\xd6\x63\x12\x35\n0CHANNEL_RESET_ATTRIBUTE_PWR_IDLE_OUTPUT_BEHAVIOR\x10\xd8\x63\x12-\n(CHANNEL_RESET_ATTRIBUTE_PWR_REMOTE_SENSE\x10\xdb\x63*\x9a\'\n\x14\x43hannelBoolAttribute\x12&\n\"CHANNEL_BOOL_ATTRIBUTE_UNSPECIFIED\x10\x00\x12&\n\"CHANNEL_ATTRIBUTE_AI_DITHER_ENABLE\x10h\x12\x31\n,CHANNEL_ATTRIBUTE_AI_BRIDGE_SHUNT_CAL_ENABLE\x10\x94\x01\x12.\n)CHANNEL_ATTRIBUTE_AI_AC_EXCIT_SYNC_ENABLE\x10\x82\x02\x12-\n(CHANNEL_ATTRIBUTE_AO_DAC_REF_CONN_TO_GND\x10\xb0\x02\x12)\n$CHANNEL_ATTRIBUTE_AO_REGLITCH_ENABLE\x10\xb3\x02\x12$\n\x1f\x43HANNEL_ATTRIBUTE_CI_TC_REACHED\x10\xd0\x02\x12&\n!CHANNEL_ATTRIBUTE_DI_INVERT_LINES\x10\x93\x0f\x12\x30\n+CHANNEL_ATTRIBUTE_CI_ENCODER_Z_INDEX_ENABLE\x10\x90\x11\x12&\n!CHANNEL_ATTRIBUTE_DO_INVERT_LINES\x10\xb3\"\x12/\n*CHANNEL_ATTRIBUTE_AI_EXCIT_USE_FOR_SCALING\x10\xfc/\x12(\n#CHANNEL_ATTRIBUTE_AI_LOWPASS_ENABLE\x10\x82\x30\x12)\n$CHANNEL_ATTRIBUTE_AI_HIGHPASS_ENABLE\x10\x86\x30\x12)\n$CHANNEL_ATTRIBUTE_AI_BANDPASS_ENABLE\x10\x8b\x30\x12.\n)CHANNEL_ATTRIBUTE_AI_SAMP_AND_HOLD_ENABLE\x10\x9a\x30\x12\x33\n.CHANNEL_ATTRIBUTE_AO_DAC_REF_ALLOW_CONN_TO_GND\x10\xb0\x30\x12-\n(CHANNEL_ATTRIBUTE_AO_USE_ONLY_ON_BRD_MEM\x10\xba\x30\x12(\n#CHANNEL_ATTRIBUTE_AI_MEM_MAP_ENABLE\x10\x8c\x31\x12(\n#CHANNEL_ATTRIBUTE_AO_MEM_MAP_ENABLE\x10\x8f\x31\x12\"\n\x1d\x43HANNEL_ATTRIBUTE_DI_TRISTATE\x10\x90\x31\x12\"\n\x1d\x43HANNEL_ATTRIBUTE_DO_TRISTATE\x10\xf3\x31\x12.\n)CHANNEL_ATTRIBUTE_AI_FORCE_READ_FROM_CHAN\x10\xf8\x31\x12$\n\x1f\x43HANNEL_ATTRIBUTE_CO_PULSE_DONE\x10\x8e\x32\x12/\n*CHANNEL_ATTRIBUTE_AI_EXCIT_USE_MULTIPLEXED\x10\x80\x43\x12+\n&CHANNEL_ATTRIBUTE_CI_DUP_COUNT_PREVENT\x10\xac\x43\x12)\n$CHANNEL_ATTRIBUTE_DI_DIG_FLTR_ENABLE\x10\xd6\x43\x12.\n)CHANNEL_ATTRIBUTE_CI_FREQ_DIG_FLTR_ENABLE\x10\xe7\x43\x12.\n)CHANNEL_ATTRIBUTE_CI_FREQ_DIG_SYNC_ENABLE\x10\xeb\x43\x12\x30\n+CHANNEL_ATTRIBUTE_CI_PERIOD_DIG_FLTR_ENABLE\x10\xec\x43\x12\x30\n+CHANNEL_ATTRIBUTE_CI_PERIOD_DIG_SYNC_ENABLE\x10\xf0\x43\x12?\n:CHANNEL_ATTRIBUTE_CI_COUNT_EDGES_COUNT_DIR_DIG_FLTR_ENABLE\x10\xf1\x43\x12?\n:CHANNEL_ATTRIBUTE_CI_COUNT_EDGES_COUNT_DIR_DIG_SYNC_ENABLE\x10\xf5\x43\x12\x35\n0CHANNEL_ATTRIBUTE_CI_COUNT_EDGES_DIG_FLTR_ENABLE\x10\xf6\x43\x12\x35\n0CHANNEL_ATTRIBUTE_CI_COUNT_EDGES_DIG_SYNC_ENABLE\x10\xfa\x43\x12\x39\n4CHANNEL_ATTRIBUTE_CI_ENCODER_A_INPUT_DIG_FLTR_ENABLE\x10\xfb\x43\x12\x39\n4CHANNEL_ATTRIBUTE_CI_ENCODER_A_INPUT_DIG_SYNC_ENABLE\x10\xff\x43\x12\x39\n4CHANNEL_ATTRIBUTE_CI_ENCODER_B_INPUT_DIG_FLTR_ENABLE\x10\x80\x44\x12\x39\n4CHANNEL_ATTRIBUTE_CI_ENCODER_B_INPUT_DIG_SYNC_ENABLE\x10\x84\x44\x12\x39\n4CHANNEL_ATTRIBUTE_CI_ENCODER_Z_INPUT_DIG_FLTR_ENABLE\x10\x85\x44\x12\x39\n4CHANNEL_ATTRIBUTE_CI_ENCODER_Z_INPUT_DIG_SYNC_ENABLE\x10\x89\x44\x12\x35\n0CHANNEL_ATTRIBUTE_CI_PULSE_WIDTH_DIG_FLTR_ENABLE\x10\x8a\x44\x12\x35\n0CHANNEL_ATTRIBUTE_CI_PULSE_WIDTH_DIG_SYNC_ENABLE\x10\x8e\x44\x12<\n7CHANNEL_ATTRIBUTE_CI_TWO_EDGE_SEP_FIRST_DIG_FLTR_ENABLE\x10\x8f\x44\x12<\n7CHANNEL_ATTRIBUTE_CI_TWO_EDGE_SEP_FIRST_DIG_SYNC_ENABLE\x10\x93\x44\x12=\n8CHANNEL_ATTRIBUTE_CI_TWO_EDGE_SEP_SECOND_DIG_FLTR_ENABLE\x10\x94\x44\x12=\n8CHANNEL_ATTRIBUTE_CI_TWO_EDGE_SEP_SECOND_DIG_SYNC_ENABLE\x10\x98\x44\x12\x35\n0CHANNEL_ATTRIBUTE_CI_SEMI_PERIOD_DIG_FLTR_ENABLE\x10\x99\x44\x12\x35\n0CHANNEL_ATTRIBUTE_CI_SEMI_PERIOD_DIG_SYNC_ENABLE\x10\x9d\x44\x12\x39\n4CHANNEL_ATTRIBUTE_AO_ENHANCED_IMAGE_REJECTION_ENABLE\x10\xc1\x44\x12-\n(CHANNEL_ATTRIBUTE_DO_USE_ONLY_ON_BRD_MEM\x10\xe5\x44\x12\x36\n1CHANNEL_ATTRIBUTE_CI_CTR_TIMEBASE_DIG_FLTR_ENABLE\x10\xf1\x44\x12\x36\n1CHANNEL_ATTRIBUTE_CI_CTR_TIMEBASE_DIG_SYNC_ENABLE\x10\xf5\x44\x12\x36\n1CHANNEL_ATTRIBUTE_CO_CTR_TIMEBASE_DIG_FLTR_ENABLE\x10\xf6\x44\x12\x36\n1CHANNEL_ATTRIBUTE_CO_CTR_TIMEBASE_DIG_SYNC_ENABLE\x10\xfa\x44\x12\x39\n4CHANNEL_ATTRIBUTE_AI_ENHANCED_ALIAS_REJECTION_ENABLE\x10\x94\x45\x12\x35\n0CHANNEL_ATTRIBUTE_AI_CHAN_CAL_HAS_VALID_CAL_INFO\x10\x97\x45\x12-\n(CHANNEL_ATTRIBUTE_AI_CHAN_CAL_ENABLE_CAL\x10\x98\x45\x12\x33\n.CHANNEL_ATTRIBUTE_AI_CHAN_CAL_APPLY_CAL_IF_EXP\x10\x99\x45\x12)\n$CHANNEL_ATTRIBUTE_CO_RDY_FOR_NEW_VAL\x10\xff\x45\x12%\n CHANNEL_ATTRIBUTE_CHAN_IS_GLOBAL\x10\x84\x46\x12(\n#CHANNEL_ATTRIBUTE_DI_MEM_MAP_ENABLE\x10\xeaR\x12(\n#CHANNEL_ATTRIBUTE_DO_MEM_MAP_ENABLE\x10\xebR\x12!\n\x1c\x43HANNEL_ATTRIBUTE_AI_IS_TEDS\x10\x83S\x12\x33\n.CHANNEL_ATTRIBUTE_DO_OVERCURRENT_AUTO_REENABLE\x10\x86U\x12;\n6CHANNEL_ATTRIBUTE_CO_ENABLE_INITIAL_DELAY_ON_RETRIGGER\x10\xc9]\x12-\n(CHANNEL_ATTRIBUTE_CO_USE_ONLY_ON_BRD_MEM\x10\xcb]\x12/\n*CHANNEL_ATTRIBUTE_CI_FREQ_ENABLE_AVERAGING\x10\xd0]\x12\x31\n,CHANNEL_ATTRIBUTE_CI_PERIOD_ENABLE_AVERAGING\x10\xd1]\x12(\n#CHANNEL_ATTRIBUTE_CI_MEM_MAP_ENABLE\x10\xd2]\x12(\n#CHANNEL_ATTRIBUTE_CO_MEM_MAP_ENABLE\x10\xd3]\x12)\n$CHANNEL_ATTRIBUTE_DI_DIG_SYNC_ENABLE\x10\xd6]\x12\x32\n-CHANNEL_ATTRIBUTE_DI_DIG_FLTR_ENABLE_BUS_MODE\x10\xfe]\x12\x34\n/CHANNEL_ATTRIBUTE_CI_PULSE_FREQ_DIG_FLTR_ENABLE\x10\x86^\x12\x34\n/CHANNEL_ATTRIBUTE_CI_PULSE_FREQ_DIG_SYNC_ENABLE\x10\x8a^\x12\x34\n/CHANNEL_ATTRIBUTE_CI_PULSE_TIME_DIG_FLTR_ENABLE\x10\x8e^\x12\x34\n/CHANNEL_ATTRIBUTE_CI_PULSE_TIME_DIG_SYNC_ENABLE\x10\x92^\x12\x35\n0CHANNEL_ATTRIBUTE_CI_PULSE_TICKS_DIG_FLTR_ENABLE\x10\x96^\x12\x35\n0CHANNEL_ATTRIBUTE_CI_PULSE_TICKS_DIG_SYNC_ENABLE\x10\x9a^\x12\x34\n/CHANNEL_ATTRIBUTE_AI_OPEN_THRMCPL_DETECT_ENABLE\x10\xf2^\x12\x38\n3CHANNEL_ATTRIBUTE_CI_COUNT_EDGES_COUNT_RESET_ENABLE\x10\xaf_\x12\x41\nCHANNEL_ATTRIBUTE_CI_TWO_EDGE_SEP_SECOND_DIG_FLTR_TIMEBASE_SRC\x10\x96\x44\x12;\n6CHANNEL_ATTRIBUTE_CI_SEMI_PERIOD_DIG_FLTR_TIMEBASE_SRC\x10\x9b\x44\x12)\n$CHANNEL_ATTRIBUTE_AO_DAC_REF_EXT_SRC\x10\xd2\x44\x12,\n\'CHANNEL_ATTRIBUTE_AO_DAC_OFFSET_EXT_SRC\x10\xd4\x44\x12<\n7CHANNEL_ATTRIBUTE_CI_CTR_TIMEBASE_DIG_FLTR_TIMEBASE_SRC\x10\xf3\x44\x12<\n7CHANNEL_ATTRIBUTE_CO_CTR_TIMEBASE_DIG_FLTR_TIMEBASE_SRC\x10\xf8\x44\x12\x30\n+CHANNEL_ATTRIBUTE_AI_CHAN_CAL_OPERATOR_NAME\x10\xa3\x45\x12\'\n\"CHANNEL_ATTRIBUTE_AI_CHAN_CAL_DESC\x10\xa4\x45\x12/\n*CHANNEL_ATTRIBUTE_DI_DIG_FLTR_TIMEBASE_SRC\x10\xd4]\x12)\n$CHANNEL_ATTRIBUTE_CI_PULSE_FREQ_TERM\x10\x84^\x12:\n5CHANNEL_ATTRIBUTE_CI_PULSE_FREQ_DIG_FLTR_TIMEBASE_SRC\x10\x88^\x12)\n$CHANNEL_ATTRIBUTE_CI_PULSE_TIME_TERM\x10\x8c^\x12:\n5CHANNEL_ATTRIBUTE_CI_PULSE_TIME_DIG_FLTR_TIMEBASE_SRC\x10\x90^\x12*\n%CHANNEL_ATTRIBUTE_CI_PULSE_TICKS_TERM\x10\x94^\x12;\n6CHANNEL_ATTRIBUTE_CI_PULSE_TICKS_DIG_FLTR_TIMEBASE_SRC\x10\x98^\x12\x36\n1CHANNEL_ATTRIBUTE_CI_COUNT_EDGES_COUNT_RESET_TERM\x10\xb1_\x12G\nBCHANNEL_ATTRIBUTE_CI_COUNT_EDGES_COUNT_RESET_DIG_FLTR_TIMEBASE_SRC\x10\xb5_\x12:\n5CHANNEL_ATTRIBUTE_AI_ROSETTE_STRAIN_GAGE_STRAIN_CHANS\x10\xfb_\x12(\n#CHANNEL_ATTRIBUTE_CI_TIMESTAMP_TERM\x10\xb9`\x12,\n\'CHANNEL_ATTRIBUTE_NAV_CUSTOM_SCALE_NAME\x10\xbc`\x12)\n$CHANNEL_ATTRIBUTE_CI_DUTY_CYCLE_TERM\x10\x8d\x61\x12:\n5CHANNEL_ATTRIBUTE_CI_DUTY_CYCLE_DIG_FLTR_TIMEBASE_SRC\x10\x90\x61\x12\x37\n2CHANNEL_ATTRIBUTE_CI_VELOCITY_ENCODER_A_INPUT_TERM\x10\xdd\x61\x12H\nCCHANNEL_ATTRIBUTE_CI_VELOCITY_ENCODER_A_INPUT_DIG_FLTR_TIMEBASE_SRC\x10\xe2\x61\x12\x37\n2CHANNEL_ATTRIBUTE_CI_VELOCITY_ENCODER_B_INPUT_TERM\x10\xe4\x61\x12H\nCCHANNEL_ATTRIBUTE_CI_VELOCITY_ENCODER_B_INPUT_DIG_FLTR_TIMEBASE_SRC\x10\xe9\x61\x12/\n*CHANNEL_ATTRIBUTE_CI_COUNT_EDGES_GATE_TERM\x10\xee\x61\x12@\n;CHANNEL_ATTRIBUTE_CI_COUNT_EDGES_GATE_DIG_FLTR_TIMEBASE_SRC\x10\xf3\x61*\xc4\x10\n\x16\x43hannelUInt32Attribute\x12(\n$CHANNEL_UINT32_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\"\n\x1d\x43HANNEL_ATTRIBUTE_CI_FREQ_DIV\x10\xc7\x02\x12\x1f\n\x1a\x43HANNEL_ATTRIBUTE_CI_COUNT\x10\xc8\x02\x12\x1f\n\x1a\x43HANNEL_ATTRIBUTE_CO_COUNT\x10\x93\x05\x12\'\n\"CHANNEL_ATTRIBUTE_CO_AUTO_INCR_CNT\x10\x95\x05\x12\x33\n.CHANNEL_ATTRIBUTE_CO_PULSE_TICKS_INITIAL_DELAY\x10\x98\x05\x12\x31\n,CHANNEL_ATTRIBUTE_CI_COUNT_EDGES_INITIAL_CNT\x10\x98\r\x12\x34\n/CHANNEL_ATTRIBUTE_CI_ANG_ENCODER_PULSES_PER_REV\x10\xf5\x10\x12*\n%CHANNEL_ATTRIBUTE_CO_PULSE_HIGH_TICKS\x10\xe9\"\x12)\n$CHANNEL_ATTRIBUTE_CO_PULSE_LOW_TICKS\x10\xf1\"\x12(\n#CHANNEL_ATTRIBUTE_AI_HIGHPASS_ORDER\x10\x89\x30\x12\x38\n3CHANNEL_ATTRIBUTE_AI_LOWPASS_SWITCH_CAP_EXT_CLK_DIV\x10\x86\x31\x12\x38\n3CHANNEL_ATTRIBUTE_AI_LOWPASS_SWITCH_CAP_OUT_CLK_DIV\x10\x87\x31\x12:\n5CHANNEL_ATTRIBUTE_CI_CTR_TIMEBASE_MASTER_TIMEBASE_DIV\x10\xb3\x31\x12:\n5CHANNEL_ATTRIBUTE_CO_CTR_TIMEBASE_MASTER_TIMEBASE_DIV\x10\xc3\x31\x12$\n\x1f\x43HANNEL_ATTRIBUTE_CI_PERIOD_DIV\x10\xae\x32\x12\x34\n/CHANNEL_ATTRIBUTE_CI_NUM_POSSIBLY_INVALID_SAMPS\x10\xbc\x32\x12#\n\x1e\x43HANNEL_ATTRIBUTE_DI_NUM_LINES\x10\xf8\x42\x12#\n\x1e\x43HANNEL_ATTRIBUTE_DO_NUM_LINES\x10\xf9\x42\x12#\n\x1e\x43HANNEL_ATTRIBUTE_CI_PRESCALER\x10\xb9\x44\x12#\n\x1e\x43HANNEL_ATTRIBUTE_CO_PRESCALER\x10\xed\x44\x12\x33\n.CHANNEL_ATTRIBUTE_CI_TIMESTAMP_INITIAL_SECONDS\x10\xb4\x45\x12@\n;CHANNEL_ATTRIBUTE_AI_LOSSY_LSB_REMOVAL_COMPRESSED_SAMP_SIZE\x10\xd9\x45\x12\'\n\"CHANNEL_ATTRIBUTE_AI_RAW_SAMP_SIZE\x10\xda\x45\x12\x34\n/CHANNEL_ATTRIBUTE_AI_DATA_XFER_CUSTOM_THRESHOLD\x10\x8c\x46\x12+\n&CHANNEL_ATTRIBUTE_AI_USB_XFER_REQ_SIZE\x10\x8eU\x12+\n&CHANNEL_ATTRIBUTE_AO_USB_XFER_REQ_SIZE\x10\x8fU\x12+\n&CHANNEL_ATTRIBUTE_DI_USB_XFER_REQ_SIZE\x10\x90U\x12+\n&CHANNEL_ATTRIBUTE_DO_USB_XFER_REQ_SIZE\x10\x91U\x12+\n&CHANNEL_ATTRIBUTE_CI_USB_XFER_REQ_SIZE\x10\x92U\x12+\n&CHANNEL_ATTRIBUTE_CO_USB_XFER_REQ_SIZE\x10\x93U\x12\x30\n+CHANNEL_ATTRIBUTE_AI_ADC_CUSTOM_TIMING_MODE\x10\xeb^\x12=\n8CHANNEL_ATTRIBUTE_CI_COUNT_EDGES_COUNT_RESET_RESET_COUNT\x10\xb0_\x12,\n\'CHANNEL_ATTRIBUTE_AI_AVERAGING_WIN_SIZE\x10\xee_\x12,\n\'CHANNEL_ATTRIBUTE_AI_USB_XFER_REQ_COUNT\x10\x80`\x12,\n\'CHANNEL_ATTRIBUTE_AO_USB_XFER_REQ_COUNT\x10\x81`\x12,\n\'CHANNEL_ATTRIBUTE_DI_USB_XFER_REQ_COUNT\x10\x82`\x12,\n\'CHANNEL_ATTRIBUTE_DO_USB_XFER_REQ_COUNT\x10\x83`\x12,\n\'CHANNEL_ATTRIBUTE_CI_USB_XFER_REQ_COUNT\x10\x84`\x12,\n\'CHANNEL_ATTRIBUTE_CO_USB_XFER_REQ_COUNT\x10\x85`\x12(\n#CHANNEL_ATTRIBUTE_AI_DIG_FLTR_ORDER\x10\xc0\x61\x12=\n8CHANNEL_ATTRIBUTE_CI_VELOCITY_ANG_ENCODER_PULSES_PER_REV\x10\xd9\x61\x12&\n!CHANNEL_ATTRIBUTE_CI_VELOCITY_DIV\x10\xec\x61\x12&\n!CHANNEL_ATTRIBUTE_AI_FILTER_ORDER\x10\xf6\x62\x12&\n!CHANNEL_ATTRIBUTE_CI_FILTER_ORDER\x10\xba\x63*\xd9\x06\n\x1b\x43hannelDoubleArrayAttribute\x12.\n*CHANNEL_DOUBLE_ARRAY_ATTRIBUTE_UNSPECIFIED\x10\x00\x12+\n&CHANNEL_ATTRIBUTE_AI_DEV_SCALING_COEFF\x10\xb0\x32\x12+\n&CHANNEL_ATTRIBUTE_AO_DEV_SCALING_COEFF\x10\xb1\x32\x12\x38\n3CHANNEL_ATTRIBUTE_AI_CHAN_CAL_TABLE_PRE_SCALED_VALS\x10\x9d\x45\x12\x34\n/CHANNEL_ATTRIBUTE_AI_CHAN_CAL_TABLE_SCALED_VALS\x10\x9e\x45\x12\x35\n0CHANNEL_ATTRIBUTE_AI_CHAN_CAL_POLY_FORWARD_COEFF\x10\x9f\x45\x12\x35\n0CHANNEL_ATTRIBUTE_AI_CHAN_CAL_POLY_REVERSE_COEFF\x10\xa0\x45\x12\x31\n,CHANNEL_ATTRIBUTE_AI_CHAN_CAL_VERIF_REF_VALS\x10\xa1\x45\x12\x31\n,CHANNEL_ATTRIBUTE_AI_CHAN_CAL_VERIF_ACQ_VALS\x10\xa2\x45\x12\x36\n1CHANNEL_ATTRIBUTE_AI_BRIDGE_TABLE_ELECTRICAL_VALS\x10\x8e_\x12\x34\n/CHANNEL_ATTRIBUTE_AI_BRIDGE_TABLE_PHYSICAL_VALS\x10\x8f_\x12\x33\n.CHANNEL_ATTRIBUTE_AI_BRIDGE_POLY_FORWARD_COEFF\x10\x90_\x12\x33\n.CHANNEL_ATTRIBUTE_AI_BRIDGE_POLY_REVERSE_COEFF\x10\x91_\x12(\n#CHANNEL_ATTRIBUTE_AI_DIG_FLTR_COEFF\x10\xc7\x61\x12\x34\n/CHANNEL_ATTRIBUTE_PWR_VOLTAGE_DEV_SCALING_COEFF\x10\xd9\x63\x12\x34\n/CHANNEL_ATTRIBUTE_PWR_CURRENT_DEV_SCALING_COEFF\x10\xda\x63*\xc2\x07\n\x15\x44\x65viceStringAttribute\x12\'\n#DEVICE_STRING_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\"\n\x1d\x44\x45VICE_ATTRIBUTE_PRODUCT_TYPE\x10\xb1\x0c\x12\'\n\"DEVICE_ATTRIBUTE_AI_PHYSICAL_CHANS\x10\x9e\x46\x12\'\n\"DEVICE_ATTRIBUTE_AO_PHYSICAL_CHANS\x10\x9f\x46\x12\x1e\n\x19\x44\x45VICE_ATTRIBUTE_DI_LINES\x10\xa0\x46\x12\x1e\n\x19\x44\x45VICE_ATTRIBUTE_DI_PORTS\x10\xa1\x46\x12\x1e\n\x19\x44\x45VICE_ATTRIBUTE_DO_LINES\x10\xa2\x46\x12\x1e\n\x19\x44\x45VICE_ATTRIBUTE_DO_PORTS\x10\xa3\x46\x12\'\n\"DEVICE_ATTRIBUTE_CI_PHYSICAL_CHANS\x10\xa4\x46\x12\'\n\"DEVICE_ATTRIBUTE_CO_PHYSICAL_CHANS\x10\xa5\x46\x12.\n)DEVICE_ATTRIBUTE_CHASSIS_MODULE_DEV_NAMES\x10\xb6S\x12\x32\n-DEVICE_ATTRIBUTE_COMPACT_DAQ_CHASSIS_DEV_NAME\x10\xb7S\x12\x1f\n\x1a\x44\x45VICE_ATTRIBUTE_TERMINALS\x10\xc0T\x12$\n\x1f\x44\x45VICE_ATTRIBUTE_TCPIP_HOSTNAME\x10\x8bU\x12\'\n\"DEVICE_ATTRIBUTE_TCPIP_ETHERNET_IP\x10\x8cU\x12\'\n\"DEVICE_ATTRIBUTE_TCPIP_WIRELESS_IP\x10\x8dU\x12-\n(DEVICE_ATTRIBUTE_ACCESSORY_PRODUCT_TYPES\x10\xed^\x12(\n#DEVICE_ATTRIBUTE_NAV_PHYSICAL_CHANS\x10\xa2`\x12\x32\n-DEVICE_ATTRIBUTE_COMPACT_RIO_CHASSIS_DEV_NAME\x10\xe1\x62\x12(\n#DEVICE_ATTRIBUTE_FIELD_DAQ_DEV_NAME\x10\xf1\x62\x12.\n)DEVICE_ATTRIBUTE_FIELD_DAQ_BANK_DEV_NAMES\x10\xf8\x62\x12&\n!DEVICE_ATTRIBUTE_ID_PIN_PIN_NAMES\x10\xf1\x63\x12,\n\'DEVICE_ATTRIBUTE_ID_PIN_MEM_SERIAL_NUMS\x10\xf4\x63*\xfc\x07\n\x15\x44\x65viceUInt32Attribute\x12\'\n#DEVICE_UINT32_ATTRIBUTE_UNSPECIFIED\x10\x00\x12 \n\x1b\x44\x45VICE_ATTRIBUTE_SERIAL_NUM\x10\xb2\x0c\x12!\n\x1c\x44\x45VICE_ATTRIBUTE_PRODUCT_NUM\x10\x9d\x46\x12!\n\x1c\x44\x45VICE_ATTRIBUTE_PCI_BUS_NUM\x10\xa7\x46\x12!\n\x1c\x44\x45VICE_ATTRIBUTE_PCI_DEV_NUM\x10\xa8\x46\x12%\n DEVICE_ATTRIBUTE_PXI_CHASSIS_NUM\x10\xa9\x46\x12\"\n\x1d\x44\x45VICE_ATTRIBUTE_PXI_SLOT_NUM\x10\xaa\x46\x12#\n\x1e\x44\x45VICE_ATTRIBUTE_NUM_DMA_CHANS\x10\xbc\x46\x12!\n\x1c\x44\x45VICE_ATTRIBUTE_CI_MAX_SIZE\x10\x9fS\x12!\n\x1c\x44\x45VICE_ATTRIBUTE_CO_MAX_SIZE\x10\xa1S\x12*\n%DEVICE_ATTRIBUTE_COMPACT_DAQ_SLOT_NUM\x10\xb8S\x12(\n#DEVICE_ATTRIBUTE_CARRIER_SERIAL_NUM\x10\x8aU\x12*\n%DEVICE_ATTRIBUTE_NAV_NUM_SURVEY_FIXES\x10\xab`\x12\x30\n+DEVICE_ATTRIBUTE_NAV_REMAINING_SURVEY_FIXES\x10\xac`\x12\"\n\x1d\x44\x45VICE_ATTRIBUTE_NAV_NUM_SATS\x10\xb1`\x12$\n\x1f\x44\x45VICE_ATTRIBUTE_NUM_TIME_TRIGS\x10\xc1\x62\x12+\n&DEVICE_ATTRIBUTE_NUM_TIMESTAMP_ENGINES\x10\xc2\x62\x12*\n%DEVICE_ATTRIBUTE_COMPACT_RIO_SLOT_NUM\x10\xe2\x62\x12\x30\n+DEVICE_ATTRIBUTE_AI_NUM_SAMP_TIMING_ENGINES\x10\xe3\x62\x12,\n\'DEVICE_ATTRIBUTE_AI_NUM_SYNC_PULSE_SRCS\x10\xe4\x62\x12\x30\n+DEVICE_ATTRIBUTE_AO_NUM_SAMP_TIMING_ENGINES\x10\xe5\x62\x12,\n\'DEVICE_ATTRIBUTE_AO_NUM_SYNC_PULSE_SRCS\x10\xe6\x62\x12\x30\n+DEVICE_ATTRIBUTE_DI_NUM_SAMP_TIMING_ENGINES\x10\xe7\x62\x12\x30\n+DEVICE_ATTRIBUTE_DO_NUM_SAMP_TIMING_ENGINES\x10\xe8\x62*\xc8\x04\n\x13\x44\x65viceBoolAttribute\x12%\n!DEVICE_BOOL_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\"\n\x1d\x44\x45VICE_ATTRIBUTE_IS_SIMULATED\x10\xca\x45\x12)\n$DEVICE_ATTRIBUTE_ANLG_TRIG_SUPPORTED\x10\x84S\x12(\n#DEVICE_ATTRIBUTE_DIG_TRIG_SUPPORTED\x10\x85S\x12\x38\n3DEVICE_ATTRIBUTE_AI_SIMULTANEOUS_SAMPLING_SUPPORTED\x10\x8fS\x12+\n&DEVICE_ATTRIBUTE_AO_SAMP_CLK_SUPPORTED\x10\x96S\x12+\n&DEVICE_ATTRIBUTE_CI_SAMP_CLK_SUPPORTED\x10\x9eS\x12+\n&DEVICE_ATTRIBUTE_CO_SAMP_CLK_SUPPORTED\x10\xdb^\x12+\n&DEVICE_ATTRIBUTE_TEDS_HWTEDS_SUPPORTED\x10\xd6_\x12)\n$DEVICE_ATTRIBUTE_TIME_TRIG_SUPPORTED\x10\x9f`\x12)\n$DEVICE_ATTRIBUTE_CI_UTC_OFFSET_READY\x10\xa1`\x12!\n\x1c\x44\x45VICE_ATTRIBUTE_NAV_HAS_FIX\x10\xad`\x12*\n%DEVICE_ATTRIBUTE_NAV_UTC_OFFSET_READY\x10\xaf`*\xcc\x04\n\x14\x44\x65viceInt32Attribute\x12&\n\"DEVICE_INT32_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\x1e\n\x19\x44\x45VICE_ATTRIBUTE_BUS_TYPE\x10\xa6\x46\x12#\n\x1e\x44\x45VICE_ATTRIBUTE_AI_TRIG_USAGE\x10\x86S\x12#\n\x1e\x44\x45VICE_ATTRIBUTE_AO_TRIG_USAGE\x10\x87S\x12#\n\x1e\x44\x45VICE_ATTRIBUTE_DI_TRIG_USAGE\x10\x88S\x12#\n\x1e\x44\x45VICE_ATTRIBUTE_DO_TRIG_USAGE\x10\x89S\x12#\n\x1e\x44\x45VICE_ATTRIBUTE_CI_TRIG_USAGE\x10\x8aS\x12#\n\x1e\x44\x45VICE_ATTRIBUTE_CO_TRIG_USAGE\x10\x8bS\x12\"\n\x1d\x44\x45VICE_ATTRIBUTE_AI_COUPLINGS\x10\x94S\x12&\n!DEVICE_ATTRIBUTE_PRODUCT_CATEGORY\x10\xa9S\x12+\n&DEVICE_ATTRIBUTE_CI_CURRENT_UTC_OFFSET\x10\xa0`\x12\x1e\n\x19\x44\x45VICE_ATTRIBUTE_NAV_MODE\x10\xa5`\x12!\n\x1c\x44\x45VICE_ATTRIBUTE_NAV_ALT_REF\x10\xa9`\x12$\n\x1f\x44\x45VICE_ATTRIBUTE_NAV_ANT_STATUS\x10\xae`\x12,\n\'DEVICE_ATTRIBUTE_NAV_CURRENT_UTC_OFFSET\x10\xb0`*\x93\x05\n\x15\x44\x65viceDoubleAttribute\x12\'\n#DEVICE_DOUBLE_ATTRIBUTE_UNSPECIFIED\x10\x00\x12-\n(DEVICE_ATTRIBUTE_AI_MAX_SINGLE_CHAN_RATE\x10\x8cS\x12,\n\'DEVICE_ATTRIBUTE_AI_MAX_MULTI_CHAN_RATE\x10\x8dS\x12!\n\x1c\x44\x45VICE_ATTRIBUTE_AI_MIN_RATE\x10\x8eS\x12!\n\x1c\x44\x45VICE_ATTRIBUTE_AO_MAX_RATE\x10\x97S\x12!\n\x1c\x44\x45VICE_ATTRIBUTE_AO_MIN_RATE\x10\x98S\x12!\n\x1c\x44\x45VICE_ATTRIBUTE_DI_MAX_RATE\x10\x99S\x12!\n\x1c\x44\x45VICE_ATTRIBUTE_DO_MAX_RATE\x10\x9aS\x12%\n DEVICE_ATTRIBUTE_CI_MAX_TIMEBASE\x10\xa0S\x12%\n DEVICE_ATTRIBUTE_CO_MAX_TIMEBASE\x10\xa2S\x12$\n\x1f\x44\x45VICE_ATTRIBUTE_NAV_PRESET_LAT\x10\xa6`\x12%\n DEVICE_ATTRIBUTE_NAV_PRESET_LONG\x10\xa7`\x12$\n\x1f\x44\x45VICE_ATTRIBUTE_NAV_PRESET_ALT\x10\xa8`\x12$\n\x1f\x44\x45VICE_ATTRIBUTE_NAV_PPS_COMPEN\x10\xaa`\x12\x1e\n\x19\x44\x45VICE_ATTRIBUTE_NAV_PDOP\x10\xb2`\x12\x1e\n\x19\x44\x45VICE_ATTRIBUTE_NAV_HDOP\x10\xb3`\x12\x1e\n\x19\x44\x45VICE_ATTRIBUTE_NAV_VDOP\x10\xb4`*\xe8\x06\n\x1a\x44\x65viceDoubleArrayAttribute\x12-\n)DEVICE_DOUBLE_ARRAY_ATTRIBUTE_UNSPECIFIED\x10\x00\x12%\n DEVICE_ATTRIBUTE_AI_VOLTAGE_RNGS\x10\x90S\x12%\n DEVICE_ATTRIBUTE_AI_CURRENT_RNGS\x10\x91S\x12\"\n\x1d\x44\x45VICE_ATTRIBUTE_AI_FREQ_RNGS\x10\x92S\x12\x1e\n\x19\x44\x45VICE_ATTRIBUTE_AI_GAINS\x10\x93S\x12:\n5DEVICE_ATTRIBUTE_AI_LOWPASS_CUTOFF_FREQ_DISCRETE_VALS\x10\x95S\x12%\n DEVICE_ATTRIBUTE_AO_VOLTAGE_RNGS\x10\x9bS\x12%\n DEVICE_ATTRIBUTE_AO_CURRENT_RNGS\x10\x9cS\x12\x1e\n\x19\x44\x45VICE_ATTRIBUTE_AO_GAINS\x10\x9dS\x12\x38\n3DEVICE_ATTRIBUTE_AI_VOLTAGE_INT_EXCIT_DISCRETE_VALS\x10\xc9S\x12\x35\n0DEVICE_ATTRIBUTE_AI_VOLTAGE_INT_EXCIT_RANGE_VALS\x10\xcaS\x12\x38\n3DEVICE_ATTRIBUTE_AI_CURRENT_INT_EXCIT_DISCRETE_VALS\x10\xcbS\x12\x37\n2DEVICE_ATTRIBUTE_AI_LOWPASS_CUTOFF_FREQ_RANGE_VALS\x10\xcfS\x12(\n#DEVICE_ATTRIBUTE_AI_RESISTANCE_RNGS\x10\x95T\x12$\n\x1f\x44\x45VICE_ATTRIBUTE_AI_BRIDGE_RNGS\x10\xd0_\x12\x43\n>DEVICE_ATTRIBUTE_AI_DIG_FLTR_LOWPASS_CUTOFF_FREQ_DISCRETE_VALS\x10\xc8\x61\x12@\n;DEVICE_ATTRIBUTE_AI_DIG_FLTR_LOWPASS_CUTOFF_FREQ_RANGE_VALS\x10\xc9\x61\x12$\n\x1f\x44\x45VICE_ATTRIBUTE_AI_CHARGE_RNGS\x10\x91\x62*\xfd\x01\n\x1a\x44\x65viceUInt32ArrayAttribute\x12-\n)DEVICE_UINT32_ARRAY_ATTRIBUTE_UNSPECIFIED\x10\x00\x12,\n\'DEVICE_ATTRIBUTE_ACCESSORY_PRODUCT_NUMS\x10\xee^\x12+\n&DEVICE_ATTRIBUTE_ACCESSORY_SERIAL_NUMS\x10\xef^\x12-\n(DEVICE_ATTRIBUTE_ID_PIN_MEM_FAMILY_CODES\x10\xf3\x63\x12&\n!DEVICE_ATTRIBUTE_ID_PIN_MEM_SIZES\x10\xf5\x63*\xc7\x04\n\x19\x44\x65viceInt32ArrayAttribute\x12,\n(DEVICE_INT32_ARRAY_ATTRIBUTE_UNSPECIFIED\x10\x00\x12-\n(DEVICE_ATTRIBUTE_AI_SUPPORTED_MEAS_TYPES\x10\xd2_\x12/\n*DEVICE_ATTRIBUTE_AO_SUPPORTED_OUTPUT_TYPES\x10\xd3_\x12-\n(DEVICE_ATTRIBUTE_CI_SUPPORTED_MEAS_TYPES\x10\xd4_\x12/\n*DEVICE_ATTRIBUTE_CO_SUPPORTED_OUTPUT_TYPES\x10\xd5_\x12#\n\x1e\x44\x45VICE_ATTRIBUTE_AI_SAMP_MODES\x10\xdc_\x12#\n\x1e\x44\x45VICE_ATTRIBUTE_AO_SAMP_MODES\x10\xdd_\x12#\n\x1e\x44\x45VICE_ATTRIBUTE_CI_SAMP_MODES\x10\xde_\x12#\n\x1e\x44\x45VICE_ATTRIBUTE_CO_SAMP_MODES\x10\xdf_\x12.\n)DEVICE_ATTRIBUTE_NAV_SUPPORTED_MEAS_TYPES\x10\xa3`\x12$\n\x1f\x44\x45VICE_ATTRIBUTE_NAV_TRIG_USAGE\x10\xa4`\x12\'\n\"DEVICE_ATTRIBUTE_AI_DIG_FLTR_TYPES\x10\x87\x62\x12)\n$DEVICE_ATTRIBUTE_ID_PIN_PIN_STATUSES\x10\xf2\x63*\x9d\x07\n\x1b\x45xportSignalDoubleAttribute\x12-\n)EXPORTSIGNAL_DOUBLE_ATTRIBUTE_UNSPECIFIED\x10\x00\x12,\n\'EXPORTSIGNAL_ATTRIBUTE_START_TRIG_DELAY\x10\x81\x0b\x12\x32\n-EXPORTSIGNAL_ATTRIBUTE_START_TRIG_PULSE_WIDTH\x10\x86\x0b\x12\x39\n4EXPORTSIGNAL_ATTRIBUTE_RDY_FOR_REF_EVENT_PULSE_WIDTH\x10\xa4,\x12\x30\n+EXPORTSIGNAL_ATTRIBUTE_ADV_TRIG_PULSE_WIDTH\x10\xc8,\x12\x37\n2EXPORTSIGNAL_ATTRIBUTE_ADV_CMPLT_EVENT_PULSE_WIDTH\x10\xd4,\x12\x37\n2EXPORTSIGNAL_ATTRIBUTE_20_MHZ_TIMEBASE_PULSE_WIDTH\x10\xe0,\x12\x30\n+EXPORTSIGNAL_ATTRIBUTE_SAMP_CLK_PULSE_WIDTH\x10\xe6,\x12\x33\n.EXPORTSIGNAL_ATTRIBUTE_AI_CONV_CLK_PULSE_WIDTH\x10\x90-\x12\x34\n/EXPORTSIGNAL_ATTRIBUTE_FREQ_OUT_CLK_PULSE_WIDTH\x10\x94.\x12\x35\n0EXPORTSIGNAL_ATTRIBUTE_CTR_OUT_EVENT_PULSE_WIDTH\x10\xa0.\x12/\n*EXPORTSIGNAL_ATTRIBUTE_REF_CLK_PULSE_WIDTH\x10\xb8.\x12\x31\n,EXPORTSIGNAL_ATTRIBUTE_ADV_CMPLT_EVENT_DELAY\x10\xd7.\x12\x31\n,EXPORTSIGNAL_ATTRIBUTE_SAMP_CLK_DELAY_OFFSET\x10\xc4\x43\x12,\n\'EXPORTSIGNAL_ATTRIBUTE_HSHK_EVENT_DELAY\x10\xbc\x45\x12\x41\n\n9EXPORTSIGNAL_ATTRIBUTE_WATCHDOG_EXPIRED_EVENT_OUTPUT_TERM\x10\xaa\x43\x12\x38\n3EXPORTSIGNAL_ATTRIBUTE_SYNC_PULSE_EVENT_OUTPUT_TERM\x10\xbc\x44\x12\x36\n1EXPORTSIGNAL_ATTRIBUTE_10_MHZ_REF_CLK_OUTPUT_TERM\x10\xee\x44\x12:\n5EXPORTSIGNAL_ATTRIBUTE_RDY_FOR_XFER_EVENT_OUTPUT_TERM\x10\xb5\x45\x12\x32\n-EXPORTSIGNAL_ATTRIBUTE_HSHK_EVENT_OUTPUT_TERM\x10\xba\x45*\xcb\x1f\n\x1a\x45xportSignalResetAttribute\x12,\n(EXPORTSIGNAL_RESET_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\x38\n3EXPORTSIGNAL_RESET_ATTRIBUTE_START_TRIG_OUTPUT_TERM\x10\x84\x0b\x12;\n6EXPORTSIGNAL_RESET_ATTRIBUTE_START_TRIG_PULSE_POLARITY\x10\x85\x0b\x12\x36\n1EXPORTSIGNAL_RESET_ATTRIBUTE_REF_TRIG_OUTPUT_TERM\x10\x90\x0b\x12\x39\n4EXPORTSIGNAL_RESET_ATTRIBUTE_REF_TRIG_PULSE_POLARITY\x10\x91\x0b\x12>\n9EXPORTSIGNAL_RESET_ATTRIBUTE_START_TRIG_PULSE_WIDTH_UNITS\x10\x82,\x12\x41\nEXPORTSIGNAL_RESET_ATTRIBUTE_ADV_CMPLT_EVENT_PULSE_WIDTH_UNITS\x10\xd3,\x12=\n8EXPORTSIGNAL_RESET_ATTRIBUTE_ADV_CMPLT_EVENT_PULSE_WIDTH\x10\xd4,\x12\x42\n=EXPORTSIGNAL_RESET_ATTRIBUTE_20_MHZ_TIMEBASE_DIVIDE_DOWN_BY_N\x10\xd6,\x12=\n8EXPORTSIGNAL_RESET_ATTRIBUTE_20_MHZ_TIMEBASE_OUTPUT_TERM\x10\xd7,\x12\x43\n>EXPORTSIGNAL_RESET_ATTRIBUTE_20_MHZ_TIMEBASE_PULSE_WIDTH_UNITS\x10\xd9,\x12\x36\n1EXPORTSIGNAL_RESET_ATTRIBUTE_SAMP_CLK_OUTPUT_TERM\x10\xe3,\x12\x39\n4EXPORTSIGNAL_RESET_ATTRIBUTE_SAMP_CLK_PULSE_POLARITY\x10\xe4,\x12<\n7EXPORTSIGNAL_RESET_ATTRIBUTE_SAMP_CLK_PULSE_WIDTH_UNITS\x10\xe5,\x12\x39\n4EXPORTSIGNAL_RESET_ATTRIBUTE_AI_CONV_CLK_OUTPUT_TERM\x10\x87-\x12?\n:EXPORTSIGNAL_RESET_ATTRIBUTE_AI_CONV_CLK_PULSE_WIDTH_UNITS\x10\x89-\x12@\n;EXPORTSIGNAL_RESET_ATTRIBUTE_FREQ_OUT_CLK_PULSE_WIDTH_UNITS\x10\x93.\x12;\n6EXPORTSIGNAL_RESET_ATTRIBUTE_CTR_OUT_EVENT_OUTPUT_TERM\x10\x97.\x12>\n9EXPORTSIGNAL_RESET_ATTRIBUTE_CTR_OUT_EVENT_PULSE_POLARITY\x10\x98.\x12\x41\n\n9EXPORTSIGNAL_RESET_ATTRIBUTE_SYNC_PULSE_EVENT_OUTPUT_TERM\x10\xbc\x44\x12<\n7EXPORTSIGNAL_RESET_ATTRIBUTE_10_MHZ_REF_CLK_OUTPUT_TERM\x10\xee\x44\x12@\n;EXPORTSIGNAL_RESET_ATTRIBUTE_RDY_FOR_XFER_EVENT_OUTPUT_TERM\x10\xb5\x45\x12\x43\n>EXPORTSIGNAL_RESET_ATTRIBUTE_RDY_FOR_XFER_EVENT_LVL_ACTIVE_LVL\x10\xb6\x45\x12\x38\n3EXPORTSIGNAL_RESET_ATTRIBUTE_HSHK_EVENT_OUTPUT_TERM\x10\xba\x45\x12<\n7EXPORTSIGNAL_RESET_ATTRIBUTE_HSHK_EVENT_OUTPUT_BEHAVIOR\x10\xbb\x45\x12\x32\n-EXPORTSIGNAL_RESET_ATTRIBUTE_HSHK_EVENT_DELAY\x10\xbc\x45\x12\x45\n@EXPORTSIGNAL_RESET_ATTRIBUTE_HSHK_EVENT_INTERLOCKED_ASSERTED_LVL\x10\xbd\x45\x12H\nCEXPORTSIGNAL_RESET_ATTRIBUTE_HSHK_EVENT_INTERLOCKED_ASSERT_ON_START\x10\xbe\x45\x12G\nBEXPORTSIGNAL_RESET_ATTRIBUTE_HSHK_EVENT_INTERLOCKED_DEASSERT_DELAY\x10\xbf\x45\x12;\n6EXPORTSIGNAL_RESET_ATTRIBUTE_HSHK_EVENT_PULSE_POLARITY\x10\xc0\x45\x12\x38\n3EXPORTSIGNAL_RESET_ATTRIBUTE_HSHK_EVENT_PULSE_WIDTH\x10\xc1\x45\x12\x44\n?EXPORTSIGNAL_RESET_ATTRIBUTE_CHANGE_DETECT_EVENT_PULSE_POLARITY\x10\x83\x46\x12\x42\n=EXPORTSIGNAL_RESET_ATTRIBUTE_RDY_FOR_XFER_EVENT_DEASSERT_COND\x10\xe3R\x12S\nNEXPORTSIGNAL_RESET_ATTRIBUTE_RDY_FOR_XFER_EVENT_DEASSERT_COND_CUSTOM_THRESHOLD\x10\xe4R*\xfa\x11\n\x1a\x45xportSignalInt32Attribute\x12,\n(EXPORTSIGNAL_INT32_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\x35\n0EXPORTSIGNAL_ATTRIBUTE_START_TRIG_PULSE_POLARITY\x10\x85\x0b\x12\x33\n.EXPORTSIGNAL_ATTRIBUTE_REF_TRIG_PULSE_POLARITY\x10\x91\x0b\x12\x38\n3EXPORTSIGNAL_ATTRIBUTE_START_TRIG_PULSE_WIDTH_UNITS\x10\x82,\x12\x35\n0EXPORTSIGNAL_ATTRIBUTE_PAUSE_TRIG_LVL_ACTIVE_LVL\x10\x96,\x12<\n7EXPORTSIGNAL_ATTRIBUTE_RDY_FOR_REF_EVENT_PULSE_POLARITY\x10\xa2,\x12?\n:EXPORTSIGNAL_ATTRIBUTE_RDY_FOR_REF_EVENT_PULSE_WIDTH_UNITS\x10\xa3,\x12<\n7EXPORTSIGNAL_ATTRIBUTE_DATA_ACTIVE_EVENT_LVL_ACTIVE_LVL\x10\xb4,\x12\x33\n.EXPORTSIGNAL_ATTRIBUTE_ADV_TRIG_PULSE_POLARITY\x10\xc6,\x12\x36\n1EXPORTSIGNAL_ATTRIBUTE_ADV_TRIG_PULSE_WIDTH_UNITS\x10\xc7,\x12:\n5EXPORTSIGNAL_ATTRIBUTE_ADV_CMPLT_EVENT_PULSE_POLARITY\x10\xd2,\x12=\n8EXPORTSIGNAL_ATTRIBUTE_ADV_CMPLT_EVENT_PULSE_WIDTH_UNITS\x10\xd3,\x12:\n5EXPORTSIGNAL_ATTRIBUTE_20_MHZ_TIMEBASE_PULSE_POLARITY\x10\xd8,\x12=\n8EXPORTSIGNAL_ATTRIBUTE_20_MHZ_TIMEBASE_PULSE_WIDTH_UNITS\x10\xd9,\x12\x33\n.EXPORTSIGNAL_ATTRIBUTE_SAMP_CLK_PULSE_POLARITY\x10\xe4,\x12\x36\n1EXPORTSIGNAL_ATTRIBUTE_SAMP_CLK_PULSE_WIDTH_UNITS\x10\xe5,\x12\x36\n1EXPORTSIGNAL_ATTRIBUTE_AI_CONV_CLK_PULSE_POLARITY\x10\x88-\x12\x39\n4EXPORTSIGNAL_ATTRIBUTE_AI_CONV_CLK_PULSE_WIDTH_UNITS\x10\x89-\x12\x37\n2EXPORTSIGNAL_ATTRIBUTE_FREQ_OUT_CLK_PULSE_POLARITY\x10\x92.\x12:\n5EXPORTSIGNAL_ATTRIBUTE_FREQ_OUT_CLK_PULSE_WIDTH_UNITS\x10\x93.\x12\x38\n3EXPORTSIGNAL_ATTRIBUTE_CTR_OUT_EVENT_PULSE_POLARITY\x10\x98.\x12;\n6EXPORTSIGNAL_ATTRIBUTE_CTR_OUT_EVENT_PULSE_WIDTH_UNITS\x10\x99.\x12\x32\n-EXPORTSIGNAL_ATTRIBUTE_REF_CLK_PULSE_POLARITY\x10\xb6.\x12\x35\n0EXPORTSIGNAL_ATTRIBUTE_REF_CLK_PULSE_WIDTH_UNITS\x10\xb7.\x12\x36\n1EXPORTSIGNAL_ATTRIBUTE_START_TRIG_OUTPUT_BEHAVIOR\x10\xc3.\x12;\n6EXPORTSIGNAL_ATTRIBUTE_START_TRIG_TOGGLE_INITIAL_STATE\x10\xc4.\x12\x32\n-EXPORTSIGNAL_ATTRIBUTE_START_TRIG_DELAY_UNITS\x10\xcd.\x12\x39\n4EXPORTSIGNAL_ATTRIBUTE_CTR_OUT_EVENT_OUTPUT_BEHAVIOR\x10\xcf.\x12\x36\n1EXPORTSIGNAL_ATTRIBUTE_CTR_OUT_EVENT_LVL_POLARITY\x10\xd0.\x12>\n9EXPORTSIGNAL_ATTRIBUTE_RDY_FOR_START_EVENT_LVL_ACTIVE_LVL\x10\xd1.\x12;\n6EXPORTSIGNAL_ATTRIBUTE_CTR_OUT_EVENT_TOGGLE_IDLE_STATE\x10\xea\x30\x12\x34\n/EXPORTSIGNAL_ATTRIBUTE_SAMP_CLK_OUTPUT_BEHAVIOR\x10\xeb\x30\x12>\n9EXPORTSIGNAL_ATTRIBUTE_AI_HOLD_CMPLT_EVENT_PULSE_POLARITY\x10\xee\x31\x12=\n8EXPORTSIGNAL_ATTRIBUTE_RDY_FOR_XFER_EVENT_LVL_ACTIVE_LVL\x10\xb6\x45\x12\x36\n1EXPORTSIGNAL_ATTRIBUTE_HSHK_EVENT_OUTPUT_BEHAVIOR\x10\xbb\x45\x12?\n:EXPORTSIGNAL_ATTRIBUTE_HSHK_EVENT_INTERLOCKED_ASSERTED_LVL\x10\xbd\x45\x12\x35\n0EXPORTSIGNAL_ATTRIBUTE_HSHK_EVENT_PULSE_POLARITY\x10\xc0\x45\x12>\n9EXPORTSIGNAL_ATTRIBUTE_CHANGE_DETECT_EVENT_PULSE_POLARITY\x10\x83\x46\x12<\n7EXPORTSIGNAL_ATTRIBUTE_RDY_FOR_XFER_EVENT_DEASSERT_COND\x10\xe3R*\xc0\x01\n\x19\x45xportSignalBoolAttribute\x12+\n\'EXPORTSIGNAL_BOOL_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\x32\n-EXPORTSIGNAL_ATTRIBUTE_ADV_CMPLT_EVENT_ENABLE\x10\xca,\x12\x42\n=EXPORTSIGNAL_ATTRIBUTE_HSHK_EVENT_INTERLOCKED_ASSERT_ON_START\x10\xbe\x45*\xd9\x01\n\x1b\x45xportSignalUInt32Attribute\x12-\n)EXPORTSIGNAL_UINT32_ATTRIBUTE_UNSPECIFIED\x10\x00\x12<\n7EXPORTSIGNAL_ATTRIBUTE_20_MHZ_TIMEBASE_DIVIDE_DOWN_BY_N\x10\xd6,\x12M\nHEXPORTSIGNAL_ATTRIBUTE_RDY_FOR_XFER_EVENT_DEASSERT_COND_CUSTOM_THRESHOLD\x10\xe4R*\xa9\x01\n\x1fPersistedChannelStringAttribute\x12\x31\n-PERSISTEDCHANNEL_STRING_ATTRIBUTE_UNSPECIFIED\x10\x00\x12+\n&PERSISTEDCHANNEL_ATTRIBUTE_ACTIVE_CHAN\x10\xcf\x45\x12&\n!PERSISTEDCHANNEL_ATTRIBUTE_AUTHOR\x10\xd0\x45*\xc7\x01\n\x1dPersistedChannelBoolAttribute\x12/\n+PERSISTEDCHANNEL_BOOL_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\x39\n4PERSISTEDCHANNEL_ATTRIBUTE_ALLOW_INTERACTIVE_EDITING\x10\xd1\x45\x12:\n5PERSISTEDCHANNEL_ATTRIBUTE_ALLOW_INTERACTIVE_DELETION\x10\xd2\x45*\xa2\x01\n\x1dPersistedScaleStringAttribute\x12/\n+PERSISTEDSCALE_STRING_ATTRIBUTE_UNSPECIFIED\x10\x00\x12*\n%PERSISTEDSCALE_ATTRIBUTE_ACTIVE_SCALE\x10\xd3\x45\x12$\n\x1fPERSISTEDSCALE_ATTRIBUTE_AUTHOR\x10\xd4\x45*\xbf\x01\n\x1bPersistedScaleBoolAttribute\x12-\n)PERSISTEDSCALE_BOOL_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\x37\n2PERSISTEDSCALE_ATTRIBUTE_ALLOW_INTERACTIVE_EDITING\x10\xd5\x45\x12\x38\n3PERSISTEDSCALE_ATTRIBUTE_ALLOW_INTERACTIVE_DELETION\x10\xd6\x45*\x9d\x01\n\x1cPersistedTaskStringAttribute\x12.\n*PERSISTEDTASK_STRING_ATTRIBUTE_UNSPECIFIED\x10\x00\x12(\n#PERSISTEDTASK_ATTRIBUTE_ACTIVE_TASK\x10\xcb\x45\x12#\n\x1ePERSISTEDTASK_ATTRIBUTE_AUTHOR\x10\xcc\x45*\xbb\x01\n\x1aPersistedTaskBoolAttribute\x12,\n(PERSISTEDTASK_BOOL_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\x36\n1PERSISTEDTASK_ATTRIBUTE_ALLOW_INTERACTIVE_EDITING\x10\xcd\x45\x12\x37\n2PERSISTEDTASK_ATTRIBUTE_ALLOW_INTERACTIVE_DELETION\x10\xce\x45*\xbe\x03\n\x1ePhysicalChannelUInt32Attribute\x12\x30\n,PHYSICALCHANNEL_UINT32_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\x38\n3PHYSICALCHANNEL_ATTRIBUTE_PHYSICAL_CHAN_TEDS_MFG_ID\x10\xda\x43\x12;\n6PHYSICALCHANNEL_ATTRIBUTE_PHYSICAL_CHAN_TEDS_MODEL_NUM\x10\xdb\x43\x12<\n7PHYSICALCHANNEL_ATTRIBUTE_PHYSICAL_CHAN_TEDS_SERIAL_NUM\x10\xdc\x43\x12=\n8PHYSICALCHANNEL_ATTRIBUTE_PHYSICAL_CHAN_TEDS_VERSION_NUM\x10\xdd\x43\x12:\n5PHYSICALCHANNEL_ATTRIBUTE_PHYSICAL_CHAN_DI_PORT_WIDTH\x10\xa4S\x12:\n5PHYSICALCHANNEL_ATTRIBUTE_PHYSICAL_CHAN_DO_PORT_WIDTH\x10\xa7S*\xd0\x01\n\x1ePhysicalChannelStringAttribute\x12\x30\n,PHYSICALCHANNEL_STRING_ATTRIBUTE_UNSPECIFIED\x10\x00\x12@\n;PHYSICALCHANNEL_ATTRIBUTE_PHYSICAL_CHAN_TEDS_VERSION_LETTER\x10\xde\x43\x12:\n5PHYSICALCHANNEL_ATTRIBUTE_PHYSICAL_CHAN_AI_INPUT_SRCS\x10\xd8_*\x8e\x01\n\x1dPhysicalChannelBytesAttribute\x12/\n+PHYSICALCHANNEL_BYTES_ATTRIBUTE_UNSPECIFIED\x10\x00\x12<\n7PHYSICALCHANNEL_ATTRIBUTE_PHYSICAL_CHAN_TEDS_BIT_STREAM\x10\xdf\x43*\x9e\x01\n#PhysicalChannelUInt32ArrayAttribute\x12\x36\n2PHYSICALCHANNEL_UINT32_ARRAY_ATTRIBUTE_UNSPECIFIED\x10\x00\x12?\n:PHYSICALCHANNEL_ATTRIBUTE_PHYSICAL_CHAN_TEDS_TEMPLATE_I_DS\x10\x8f\x45*\xce\x02\n\x1dPhysicalChannelInt32Attribute\x12/\n+PHYSICALCHANNEL_INT32_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\x39\n4PHYSICALCHANNEL_ATTRIBUTE_PHYSICAL_CHAN_AI_TERM_CFGS\x10\xc2\x46\x12\x39\n4PHYSICALCHANNEL_ATTRIBUTE_PHYSICAL_CHAN_AO_TERM_CFGS\x10\xa3S\x12\x42\n=PHYSICALCHANNEL_ATTRIBUTE_PHYSICAL_CHAN_AI_POWER_CONTROL_TYPE\x10\xee\x62\x12\x42\n=PHYSICALCHANNEL_ATTRIBUTE_PHYSICAL_CHAN_DIG_PORT_LOGIC_FAMILY\x10\xeb\x63*\x82\x06\n\x1cPhysicalChannelBoolAttribute\x12.\n*PHYSICALCHANNEL_BOOL_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\x42\n=PHYSICALCHANNEL_ATTRIBUTE_PHYSICAL_CHAN_DI_SAMP_CLK_SUPPORTED\x10\xa5S\x12G\nBPHYSICALCHANNEL_ATTRIBUTE_PHYSICAL_CHAN_DI_CHANGE_DETECT_SUPPORTED\x10\xa6S\x12\x42\n=PHYSICALCHANNEL_ATTRIBUTE_PHYSICAL_CHAN_DO_SAMP_CLK_SUPPORTED\x10\xa8S\x12\x45\n@PHYSICALCHANNEL_ATTRIBUTE_PHYSICAL_CHAN_AO_MANUAL_CONTROL_ENABLE\x10\x9eT\x12M\nHPHYSICALCHANNEL_ATTRIBUTE_PHYSICAL_CHAN_AO_MANUAL_CONTROL_SHORT_DETECTED\x10\xc3]\x12:\n5PHYSICALCHANNEL_ATTRIBUTE_AO_POWER_AMP_CHANNEL_ENABLE\x10\xe2`\x12\x37\n2PHYSICALCHANNEL_ATTRIBUTE_AO_POWER_AMP_OVERCURRENT\x10\xe4`\x12\x44\n?PHYSICALCHANNEL_ATTRIBUTE_PHYSICAL_CHAN_AI_POWER_CONTROL_ENABLE\x10\xed\x62\x12\x46\nAPHYSICALCHANNEL_ATTRIBUTE_PHYSICAL_CHAN_AI_SENSOR_POWER_OPEN_CHAN\x10\xfc\x62\x12H\nCPHYSICALCHANNEL_ATTRIBUTE_PHYSICAL_CHAN_AI_SENSOR_POWER_OVERCURRENT\x10\xfd\x62*\x8c\x04\n\x1dPhysicalChannelResetAttribute\x12/\n+PHYSICALCHANNEL_RESET_ATTRIBUTE_UNSPECIFIED\x10\x00\x12K\nFPHYSICALCHANNEL_RESET_ATTRIBUTE_PHYSICAL_CHAN_AO_MANUAL_CONTROL_ENABLE\x10\x9eT\x12@\n;PHYSICALCHANNEL_RESET_ATTRIBUTE_AO_POWER_AMP_CHANNEL_ENABLE\x10\xe2`\x12K\nFPHYSICALCHANNEL_RESET_ATTRIBUTE_PHYSICAL_CHAN_AI_POWER_CONTROL_VOLTAGE\x10\xec\x62\x12J\nEPHYSICALCHANNEL_RESET_ATTRIBUTE_PHYSICAL_CHAN_AI_POWER_CONTROL_ENABLE\x10\xed\x62\x12H\nCPHYSICALCHANNEL_RESET_ATTRIBUTE_PHYSICAL_CHAN_AI_POWER_CONTROL_TYPE\x10\xee\x62\x12H\nCPHYSICALCHANNEL_RESET_ATTRIBUTE_PHYSICAL_CHAN_DIG_PORT_LOGIC_FAMILY\x10\xeb\x63*\x8e\x03\n\x1ePhysicalChannelDoubleAttribute\x12\x30\n,PHYSICALCHANNEL_DOUBLE_ATTRIBUTE_UNSPECIFIED\x10\x00\x12H\nCPHYSICALCHANNEL_ATTRIBUTE_PHYSICAL_CHAN_AO_MANUAL_CONTROL_AMPLITUDE\x10\x9fT\x12\x43\n>PHYSICALCHANNEL_ATTRIBUTE_PHYSICAL_CHAN_AO_MANUAL_CONTROL_FREQ\x10\xa0T\x12\x30\n+PHYSICALCHANNEL_ATTRIBUTE_AO_POWER_AMP_GAIN\x10\xe5`\x12\x32\n-PHYSICALCHANNEL_ATTRIBUTE_AO_POWER_AMP_OFFSET\x10\xe6`\x12\x45\n@PHYSICALCHANNEL_ATTRIBUTE_PHYSICAL_CHAN_AI_POWER_CONTROL_VOLTAGE\x10\xec\x62*\xcb\x05\n\"PhysicalChannelInt32ArrayAttribute\x12\x35\n1PHYSICALCHANNEL_INT32_ARRAY_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\x44\n?PHYSICALCHANNEL_ATTRIBUTE_PHYSICAL_CHAN_AI_SUPPORTED_MEAS_TYPES\x10\xd7_\x12\x46\nAPHYSICALCHANNEL_ATTRIBUTE_PHYSICAL_CHAN_AO_SUPPORTED_OUTPUT_TYPES\x10\xd9_\x12\x44\n?PHYSICALCHANNEL_ATTRIBUTE_PHYSICAL_CHAN_CI_SUPPORTED_MEAS_TYPES\x10\xda_\x12\x46\nAPHYSICALCHANNEL_ATTRIBUTE_PHYSICAL_CHAN_CO_SUPPORTED_OUTPUT_TYPES\x10\xdb_\x12:\n5PHYSICALCHANNEL_ATTRIBUTE_PHYSICAL_CHAN_DI_SAMP_MODES\x10\xe0_\x12:\n5PHYSICALCHANNEL_ATTRIBUTE_PHYSICAL_CHAN_DO_SAMP_MODES\x10\xe1_\x12\x45\n@PHYSICALCHANNEL_ATTRIBUTE_PHYSICAL_CHAN_NAV_SUPPORTED_MEAS_TYPES\x10\xb7`\x12O\nJPHYSICALCHANNEL_ATTRIBUTE_PHYSICAL_CHAN_AO_SUPPORTED_POWER_UP_OUTPUT_TYPES\x10\xce`\x12\x42\n=PHYSICALCHANNEL_ATTRIBUTE_PHYSICAL_CHAN_AI_SENSOR_POWER_TYPES\x10\xf9\x62*\xe9\x01\n#PhysicalChannelDoubleArrayAttribute\x12\x36\n2PHYSICALCHANNEL_DOUBLE_ARRAY_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\x39\n4PHYSICALCHANNEL_ATTRIBUTE_AO_POWER_AMP_SCALING_COEFF\x10\xe3`\x12O\nJPHYSICALCHANNEL_ATTRIBUTE_PHYSICAL_CHAN_AI_SENSOR_POWER_VOLTAGE_RANGE_VALS\x10\xfa\x62*\x83\x02\n\x12ReadInt32Attribute\x12$\n READ_INT32_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\x1d\n\x18READ_ATTRIBUTE_OVERWRITE\x10\x91$\x12\x1f\n\x1aREAD_ATTRIBUTE_RELATIVE_TO\x10\x8a\x32\x12\x1a\n\x15READ_ATTRIBUTE_OFFSET\x10\x8b\x32\x12\x1d\n\x18READ_ATTRIBUTE_WAIT_MODE\x10\xb2\x44\x12 \n\x1bREAD_ATTRIBUTE_LOGGING_MODE\x10\xc5]\x12*\n%READ_ATTRIBUTE_LOGGING_TDMS_OPERATION\x10\xc7]*\xf7\x05\n\x12ReadResetAttribute\x12$\n READ_RESET_ATTRIBUTE_UNSPECIFIED\x10\x00\x12#\n\x1eREAD_RESET_ATTRIBUTE_OVERWRITE\x10\x91$\x12-\n(READ_RESET_ATTRIBUTE_READ_ALL_AVAIL_SAMP\x10\x95$\x12*\n%READ_RESET_ATTRIBUTE_CHANNELS_TO_READ\x10\xa3\x30\x12$\n\x1fREAD_RESET_ATTRIBUTE_AUTO_START\x10\xa6\x30\x12%\n READ_RESET_ATTRIBUTE_RELATIVE_TO\x10\x8a\x32\x12 \n\x1bREAD_RESET_ATTRIBUTE_OFFSET\x10\x8b\x32\x12#\n\x1eREAD_RESET_ATTRIBUTE_WAIT_MODE\x10\xb2\x44\x12$\n\x1fREAD_RESET_ATTRIBUTE_SLEEP_TIME\x10\xb0\x45\x12+\n&READ_RESET_ATTRIBUTE_LOGGING_FILE_PATH\x10\xc4]\x12&\n!READ_RESET_ATTRIBUTE_LOGGING_MODE\x10\xc5]\x12\x31\n,READ_RESET_ATTRIBUTE_LOGGING_TDMS_GROUP_NAME\x10\xc6]\x12\x30\n+READ_RESET_ATTRIBUTE_LOGGING_TDMS_OPERATION\x10\xc7]\x12\x31\n,READ_RESET_ATTRIBUTE_LOGGING_FILE_WRITE_SIZE\x10\xc3_\x12\x39\n4READ_RESET_ATTRIBUTE_LOGGING_FILE_PREALLOCATION_SIZE\x10\xc6_\x12\'\n\"READ_RESET_ATTRIBUTE_LOGGING_PAUSE\x10\xe3_\x12\x30\n+READ_RESET_ATTRIBUTE_LOGGING_SAMPS_PER_FILE\x10\xe4_*\x8d\x08\n\x11ReadBoolAttribute\x12#\n\x1fREAD_BOOL_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\'\n\"READ_ATTRIBUTE_READ_ALL_AVAIL_SAMP\x10\x95$\x12\x1e\n\x19READ_ATTRIBUTE_AUTO_START\x10\xa6\x30\x12*\n%READ_ATTRIBUTE_OVERLOADED_CHANS_EXIST\x10\xf4\x42\x12\x30\n+READ_ATTRIBUTE_CHANGE_DETECT_HAS_OVERFLOWED\x10\x94\x43\x12+\n&READ_ATTRIBUTE_OVERCURRENT_CHANS_EXIST\x10\xe6S\x12\x31\n,READ_ATTRIBUTE_OPEN_CURRENT_LOOP_CHANS_EXIST\x10\x89T\x12,\n\'READ_ATTRIBUTE_OPEN_THRMCPL_CHANS_EXIST\x10\x96U\x12\x37\n2READ_ATTRIBUTE_COMMON_MODE_RANGE_ERROR_CHANS_EXIST\x10\x98U\x12;\n6READ_ATTRIBUTE_ACCESSORY_INSERTION_OR_REMOVAL_DETECTED\x10\xf0^\x12!\n\x1cREAD_ATTRIBUTE_LOGGING_PAUSE\x10\xe3_\x12 \n\x1bREAD_ATTRIBUTE_NAV_FIX_LOST\x10\xb5`\x12/\n*READ_ATTRIBUTE_OVERTEMPERATURE_CHANS_EXIST\x10\x81\x61\x12+\n&READ_ATTRIBUTE_EXCIT_FAULT_CHANS_EXIST\x10\x88\x61\x12$\n\x1fREAD_ATTRIBUTE_OPEN_CHANS_EXIST\x10\x80\x62\x12,\n\'READ_ATTRIBUTE_PLL_UNLOCKED_CHANS_EXIST\x10\x98\x62\x12-\n(READ_ATTRIBUTE_SYNC_UNLOCKED_CHANS_EXIST\x10\xbd\x62\x12\x32\n-READ_ATTRIBUTE_INPUT_LIMITS_FAULT_CHANS_EXIST\x10\x8f\x63\x12\x32\n-READ_ATTRIBUTE_POWER_SUPPLY_FAULT_CHANS_EXIST\x10\x92\x63\x12\x32\n-READ_ATTRIBUTE_REMOTE_SENSE_ERROR_CHANS_EXIST\x10\xdd\x63\x12/\n*READ_ATTRIBUTE_AUX_POWER_ERROR_CHANS_EXIST\x10\xdf\x63\x12\x35\n0READ_ATTRIBUTE_REVERSE_VOLTAGE_ERROR_CHANS_EXIST\x10\xe6\x63*\xf2\x01\n\x13ReadUInt64Attribute\x12%\n!READ_UINT64_ATTRIBUTE_UNSPECIFIED\x10\x00\x12!\n\x1cREAD_ATTRIBUTE_CURR_READ_POS\x10\xa1$\x12\x30\n+READ_ATTRIBUTE_TOTAL_SAMP_PER_CHAN_ACQUIRED\x10\xaa\x32\x12\x33\n.READ_ATTRIBUTE_LOGGING_FILE_PREALLOCATION_SIZE\x10\xc6_\x12*\n%READ_ATTRIBUTE_LOGGING_SAMPS_PER_FILE\x10\xe4_*\x87\x02\n\x13ReadUInt32Attribute\x12%\n!READ_UINT32_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\'\n\"READ_ATTRIBUTE_AVAIL_SAMP_PER_CHAN\x10\xa3$\x12\"\n\x1dREAD_ATTRIBUTE_RAW_DATA_WIDTH\x10\xfa\x42\x12\x1d\n\x18READ_ATTRIBUTE_NUM_CHANS\x10\xfb\x42\x12\x30\n+READ_ATTRIBUTE_DIGITAL_LINES_BYTES_PER_CHAN\x10\xfc\x42\x12+\n&READ_ATTRIBUTE_LOGGING_FILE_WRITE_SIZE\x10\xc3_*\x9b\x07\n\x13ReadStringAttribute\x12%\n!READ_STRING_ATTRIBUTE_UNSPECIFIED\x10\x00\x12$\n\x1fREAD_ATTRIBUTE_CHANNELS_TO_READ\x10\xa3\x30\x12$\n\x1fREAD_ATTRIBUTE_OVERLOADED_CHANS\x10\xf5\x42\x12%\n READ_ATTRIBUTE_OVERCURRENT_CHANS\x10\xe7S\x12+\n&READ_ATTRIBUTE_OPEN_CURRENT_LOOP_CHANS\x10\x8aT\x12&\n!READ_ATTRIBUTE_OPEN_THRMCPL_CHANS\x10\x97U\x12\x31\n,READ_ATTRIBUTE_COMMON_MODE_RANGE_ERROR_CHANS\x10\x99U\x12%\n READ_ATTRIBUTE_LOGGING_FILE_PATH\x10\xc4]\x12+\n&READ_ATTRIBUTE_LOGGING_TDMS_GROUP_NAME\x10\xc6]\x12=\n8READ_ATTRIBUTE_DEVS_WITH_INSERTED_OR_REMOVED_ACCESSORIES\x10\xf1^\x12)\n$READ_ATTRIBUTE_OVERTEMPERATURE_CHANS\x10\x82\x61\x12%\n READ_ATTRIBUTE_EXCIT_FAULT_CHANS\x10\x89\x61\x12\x1e\n\x19READ_ATTRIBUTE_OPEN_CHANS\x10\x81\x62\x12&\n!READ_ATTRIBUTE_OPEN_CHANS_DETAILS\x10\x82\x62\x12&\n!READ_ATTRIBUTE_PLL_UNLOCKED_CHANS\x10\x99\x62\x12\'\n\"READ_ATTRIBUTE_SYNC_UNLOCKED_CHANS\x10\xbe\x62\x12,\n\'READ_ATTRIBUTE_INPUT_LIMITS_FAULT_CHANS\x10\x90\x63\x12,\n\'READ_ATTRIBUTE_POWER_SUPPLY_FAULT_CHANS\x10\x93\x63\x12,\n\'READ_ATTRIBUTE_REMOTE_SENSE_ERROR_CHANS\x10\xde\x63\x12)\n$READ_ATTRIBUTE_AUX_POWER_ERROR_CHANS\x10\xe0\x63\x12/\n*READ_ATTRIBUTE_REVERSE_VOLTAGE_ERROR_CHANS\x10\xe7\x63*\\\n\x13ReadDoubleAttribute\x12%\n!READ_DOUBLE_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\x1e\n\x19READ_ATTRIBUTE_SLEEP_TIME\x10\xb0\x45*q\n\x17RealTimeUInt32Attribute\x12)\n%REALTIME_UINT32_ATTRIBUTE_UNSPECIFIED\x10\x00\x12+\n&REALTIME_ATTRIBUTE_NUM_OF_WARMUP_ITERS\x10\xed\x45*\xd6\x02\n\x16RealTimeResetAttribute\x12(\n$REALTIME_RESET_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\x31\n,REALTIME_RESET_ATTRIBUTE_NUM_OF_WARMUP_ITERS\x10\xed\x45\x12:\n5REALTIME_RESET_ATTRIBUTE_CONV_LATE_ERRORS_TO_WARNINGS\x10\xee\x45\x12>\n9REALTIME_RESET_ATTRIBUTE_WAIT_FOR_NEXT_SAMP_CLK_WAIT_MODE\x10\xef\x45\x12\x30\n+REALTIME_RESET_ATTRIBUTE_REPORT_MISSED_SAMP\x10\x99\x46\x12\x31\n,REALTIME_RESET_ATTRIBUTE_WRITE_RECOVERY_MODE\x10\x9a\x46*\xa2\x01\n\x15RealTimeBoolAttribute\x12\'\n#REALTIME_BOOL_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\x34\n/REALTIME_ATTRIBUTE_CONV_LATE_ERRORS_TO_WARNINGS\x10\xee\x45\x12*\n%REALTIME_ATTRIBUTE_REPORT_MISSED_SAMP\x10\x99\x46*\xa9\x01\n\x16RealTimeInt32Attribute\x12(\n$REALTIME_INT32_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\x38\n3REALTIME_ATTRIBUTE_WAIT_FOR_NEXT_SAMP_CLK_WAIT_MODE\x10\xef\x45\x12+\n&REALTIME_ATTRIBUTE_WRITE_RECOVERY_MODE\x10\x9a\x46*}\n\x14ScaleStringAttribute\x12&\n\"SCALE_STRING_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\x1a\n\x15SCALE_ATTRIBUTE_DESCR\x10\xa6$\x12!\n\x1cSCALE_ATTRIBUTE_SCALED_UNITS\x10\x9b\x32*\xa0\x02\n\x14ScaleDoubleAttribute\x12&\n\"SCALE_DOUBLE_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\x1e\n\x19SCALE_ATTRIBUTE_LIN_SLOPE\x10\xa7$\x12$\n\x1fSCALE_ATTRIBUTE_LIN_Y_INTERCEPT\x10\xa8$\x12#\n\x1eSCALE_ATTRIBUTE_MAP_SCALED_MAX\x10\xa9$\x12#\n\x1eSCALE_ATTRIBUTE_MAP_SCALED_MIN\x10\xb0$\x12\'\n\"SCALE_ATTRIBUTE_MAP_PRE_SCALED_MAX\x10\xb1$\x12\'\n\"SCALE_ATTRIBUTE_MAP_PRE_SCALED_MIN\x10\xb2$*\xef\x01\n\x19ScaleDoubleArrayAttribute\x12,\n(SCALE_DOUBLE_ARRAY_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\'\n\"SCALE_ATTRIBUTE_POLY_FORWARD_COEFF\x10\xb4$\x12\'\n\"SCALE_ATTRIBUTE_POLY_REVERSE_COEFF\x10\xb5$\x12&\n!SCALE_ATTRIBUTE_TABLE_SCALED_VALS\x10\xb6$\x12*\n%SCALE_ATTRIBUTE_TABLE_PRE_SCALED_VALS\x10\xb7$*~\n\x13ScaleInt32Attribute\x12%\n!SCALE_INT32_ATTRIBUTE_UNSPECIFIED\x10\x00\x12%\n SCALE_ATTRIBUTE_PRE_SCALED_UNITS\x10\xf7\x31\x12\x19\n\x14SCALE_ATTRIBUTE_TYPE\x10\xa9\x32*\xc0\x01\n\x15SystemStringAttribute\x12\'\n#SYSTEM_STRING_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\"\n\x1dSYSTEM_ATTRIBUTE_GLOBAL_CHANS\x10\xe5$\x12\x1c\n\x17SYSTEM_ATTRIBUTE_SCALES\x10\xe6$\x12\x1b\n\x16SYSTEM_ATTRIBUTE_TASKS\x10\xe7$\x12\x1f\n\x1aSYSTEM_ATTRIBUTE_DEV_NAMES\x10\xbb\x32*\xc2\x01\n\x15SystemUInt32Attribute\x12\'\n#SYSTEM_UINT32_ATTRIBUTE_UNSPECIFIED\x10\x00\x12)\n$SYSTEM_ATTRIBUTE_NIDAQ_MAJOR_VERSION\x10\xf2$\x12)\n$SYSTEM_ATTRIBUTE_NIDAQ_MINOR_VERSION\x10\xa3\x32\x12*\n%SYSTEM_ATTRIBUTE_NIDAQ_UPDATE_VERSION\x10\xa2^*\x91\x01\n\x13TaskStringAttribute\x12%\n!TASK_STRING_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\x1c\n\x17TASK_ATTRIBUTE_CHANNELS\x10\xf3$\x12\x18\n\x13TASK_ATTRIBUTE_NAME\x10\xf6$\x12\x1b\n\x16TASK_ATTRIBUTE_DEVICES\x10\x8e\x46*V\n\x11TaskBoolAttribute\x12#\n\x1fTASK_BOOL_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\x1c\n\x17TASK_ATTRIBUTE_COMPLETE\x10\xf4$*|\n\x13TaskUInt32Attribute\x12%\n!TASK_UINT32_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\x1d\n\x18TASK_ATTRIBUTE_NUM_CHANS\x10\x81\x43\x12\x1f\n\x1aTASK_ATTRIBUTE_NUM_DEVICES\x10\xbaS*\xb0\x06\n\x14TimingInt32Attribute\x12&\n\"TIMING_INT32_ATTRIBUTE_UNSPECIFIED\x10\x00\x12*\n%TIMING_ATTRIBUTE_SAMP_QUANT_SAMP_MODE\x10\x80&\x12*\n%TIMING_ATTRIBUTE_SAMP_CLK_ACTIVE_EDGE\x10\x81&\x12\x35\n0TIMING_ATTRIBUTE_DELAY_FROM_SAMP_CLK_DELAY_UNITS\x10\x84&\x12*\n%TIMING_ATTRIBUTE_AI_CONV_TIMEBASE_SRC\x10\xb9&\x12&\n!TIMING_ATTRIBUTE_SAMP_TIMING_TYPE\x10\xc7&\x12)\n$TIMING_ATTRIBUTE_AI_CONV_ACTIVE_EDGE\x10\xd3\x30\x12\x33\n.TIMING_ATTRIBUTE_SAMP_CLK_TIMEBASE_ACTIVE_EDGE\x10\xec\x31\x12%\n TIMING_ATTRIBUTE_HSHK_START_COND\x10\xc3\x45\x12\x31\n,TIMING_ATTRIBUTE_HSHK_SAMPLE_INPUT_DATA_WHEN\x10\xc4\x45\x12\x31\n,TIMING_ATTRIBUTE_SAMP_CLK_UNDERFLOW_BEHAVIOR\x10\xe1R\x12/\n*TIMING_ATTRIBUTE_SAMP_CLK_OVERRUN_BEHAVIOR\x10\xfc]\x12\x31\n,TIMING_ATTRIBUTE_IMPLICIT_UNDERFLOW_BEHAVIOR\x10\xfd]\x12%\n TIMING_ATTRIBUTE_SYNC_PULSE_TYPE\x10\xb6\x62\x12/\n*TIMING_ATTRIBUTE_SYNC_PULSE_TIME_TIMESCALE\x10\xb8\x62\x12\x34\n/TIMING_ATTRIBUTE_FIRST_SAMP_TIMESTAMP_TIMESCALE\x10\xbb\x62\x12.\n)TIMING_ATTRIBUTE_FIRST_SAMP_CLK_TIMESCALE\x10\x83\x63*\xa9\x18\n\x14TimingResetAttribute\x12&\n\"TIMING_RESET_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\x30\n+TIMING_RESET_ATTRIBUTE_SAMP_QUANT_SAMP_MODE\x10\x80&\x12\x30\n+TIMING_RESET_ATTRIBUTE_SAMP_CLK_ACTIVE_EDGE\x10\x81&\x12\x32\n-TIMING_RESET_ATTRIBUTE_SAMP_CLK_TIMEBASE_RATE\x10\x83&\x12;\n6TIMING_RESET_ATTRIBUTE_DELAY_FROM_SAMP_CLK_DELAY_UNITS\x10\x84&\x12\x41\n\n9TRIGGER_RESET_ATTRIBUTE_DIG_EDGE_ADV_TRIG_DIG_FLTR_ENABLE\x10\xb8\x44\x12+\n&TRIGGER_RESET_ATTRIBUTE_HSHK_TRIG_TYPE\x10\xb7\x45\x12\x36\n1TRIGGER_RESET_ATTRIBUTE_INTERLOCKED_HSHK_TRIG_SRC\x10\xb8\x45\x12?\n:TRIGGER_RESET_ATTRIBUTE_INTERLOCKED_HSHK_TRIG_ASSERTED_LVL\x10\xb9\x45\x12\x36\n1TRIGGER_RESET_ATTRIBUTE_REF_TRIG_AUTO_TRIG_ENABLE\x10\xc1]\x12>\n9TRIGGER_RESET_ATTRIBUTE_DIG_EDGE_REF_TRIG_DIG_FLTR_ENABLE\x10\xd7]\x12G\nBTRIGGER_RESET_ATTRIBUTE_DIG_EDGE_REF_TRIG_DIG_FLTR_MIN_PULSE_WIDTH\x10\xd8]\x12\x44\n?TRIGGER_RESET_ATTRIBUTE_DIG_EDGE_REF_TRIG_DIG_FLTR_TIMEBASE_SRC\x10\xd9]\x12\x45\n@TRIGGER_RESET_ATTRIBUTE_DIG_EDGE_REF_TRIG_DIG_FLTR_TIMEBASE_RATE\x10\xda]\x12>\n9TRIGGER_RESET_ATTRIBUTE_DIG_EDGE_REF_TRIG_DIG_SYNC_ENABLE\x10\xdb]\x12\x41\n\n9TRIGGER_RESET_ATTRIBUTE_ANLG_WIN_REF_TRIG_DIG_FLTR_ENABLE\x10\xeb]\x12G\nBTRIGGER_RESET_ATTRIBUTE_ANLG_WIN_REF_TRIG_DIG_FLTR_MIN_PULSE_WIDTH\x10\xec]\x12\x44\n?TRIGGER_RESET_ATTRIBUTE_ANLG_WIN_REF_TRIG_DIG_FLTR_TIMEBASE_SRC\x10\xed]\x12\x45\n@TRIGGER_RESET_ATTRIBUTE_ANLG_WIN_REF_TRIG_DIG_FLTR_TIMEBASE_RATE\x10\xee]\x12>\n9TRIGGER_RESET_ATTRIBUTE_ANLG_WIN_REF_TRIG_DIG_SYNC_ENABLE\x10\xef]\x12@\n;TRIGGER_RESET_ATTRIBUTE_ANLG_LVL_PAUSE_TRIG_DIG_FLTR_ENABLE\x10\xf0]\x12I\nDTRIGGER_RESET_ATTRIBUTE_ANLG_LVL_PAUSE_TRIG_DIG_FLTR_MIN_PULSE_WIDTH\x10\xf1]\x12\x46\nATRIGGER_RESET_ATTRIBUTE_ANLG_LVL_PAUSE_TRIG_DIG_FLTR_TIMEBASE_SRC\x10\xf2]\x12G\nBTRIGGER_RESET_ATTRIBUTE_ANLG_LVL_PAUSE_TRIG_DIG_FLTR_TIMEBASE_RATE\x10\xf3]\x12@\n;TRIGGER_RESET_ATTRIBUTE_ANLG_LVL_PAUSE_TRIG_DIG_SYNC_ENABLE\x10\xf4]\x12@\n;TRIGGER_RESET_ATTRIBUTE_ANLG_WIN_PAUSE_TRIG_DIG_FLTR_ENABLE\x10\xf5]\x12I\nDTRIGGER_RESET_ATTRIBUTE_ANLG_WIN_PAUSE_TRIG_DIG_FLTR_MIN_PULSE_WIDTH\x10\xf6]\x12\x46\nATRIGGER_RESET_ATTRIBUTE_ANLG_WIN_PAUSE_TRIG_DIG_FLTR_TIMEBASE_SRC\x10\xf7]\x12G\nBTRIGGER_RESET_ATTRIBUTE_ANLG_WIN_PAUSE_TRIG_DIG_FLTR_TIMEBASE_RATE\x10\xf8]\x12@\n;TRIGGER_RESET_ATTRIBUTE_ANLG_WIN_PAUSE_TRIG_DIG_SYNC_ENABLE\x10\xf9]\x12@\n;TRIGGER_RESET_ATTRIBUTE_ANLG_WIN_START_TRIG_DIG_FLTR_ENABLE\x10\xff]\x12I\nDTRIGGER_RESET_ATTRIBUTE_ANLG_WIN_START_TRIG_DIG_FLTR_MIN_PULSE_WIDTH\x10\x80^\x12\x46\nATRIGGER_RESET_ATTRIBUTE_ANLG_WIN_START_TRIG_DIG_FLTR_TIMEBASE_SRC\x10\x81^\x12G\nBTRIGGER_RESET_ATTRIBUTE_ANLG_WIN_START_TRIG_DIG_FLTR_TIMEBASE_RATE\x10\x82^\x12@\n;TRIGGER_RESET_ATTRIBUTE_ANLG_WIN_START_TRIG_DIG_SYNC_ENABLE\x10\x83^\x12.\n)TRIGGER_RESET_ATTRIBUTE_TRIGGER_SYNC_TYPE\x10\x80_\x12\x30\n+TRIGGER_RESET_ATTRIBUTE_TIME_START_TRIG_SRC\x10\x9d`\x12\x31\n,TRIGGER_RESET_ATTRIBUTE_START_TRIG_TIMESCALE\x10\xb6`\x12\x31\n,TRIGGER_RESET_ATTRIBUTE_START_TRIG_TRIG_WHEN\x10\xcd`\x12\x30\n+TRIGGER_RESET_ATTRIBUTE_START_TRIG_TRIG_WIN\x10\x9a\x62\x12\x35\n0TRIGGER_RESET_ATTRIBUTE_START_TRIG_RETRIGGER_WIN\x10\x9b\x62\x12?\n:TRIGGER_RESET_ATTRIBUTE_START_TRIG_MAX_NUM_TRIGS_TO_DETECT\x10\x9c\x62\x12\x33\n.TRIGGER_RESET_ATTRIBUTE_REF_TRIG_RETRIGGERABLE\x10\x9d\x62\x12.\n)TRIGGER_RESET_ATTRIBUTE_REF_TRIG_TRIG_WIN\x10\x9e\x62\x12\x33\n.TRIGGER_RESET_ATTRIBUTE_REF_TRIG_RETRIGGER_WIN\x10\x9f\x62\x12=\n8TRIGGER_RESET_ATTRIBUTE_REF_TRIG_MAX_NUM_TRIGS_TO_DETECT\x10\xa0\x62\x12<\n7TRIGGER_RESET_ATTRIBUTE_ANLG_MULTI_EDGE_START_TRIG_SRCS\x10\xa1\x62\x12>\n9TRIGGER_RESET_ATTRIBUTE_ANLG_MULTI_EDGE_START_TRIG_SLOPES\x10\xa2\x62\x12<\n7TRIGGER_RESET_ATTRIBUTE_ANLG_MULTI_EDGE_START_TRIG_LVLS\x10\xa3\x62\x12=\n8TRIGGER_RESET_ATTRIBUTE_ANLG_MULTI_EDGE_START_TRIG_HYSTS\x10\xa4\x62\x12\x41\n\n9TRIGGER_ATTRIBUTE_DIG_EDGE_REF_TRIG_DIG_FLTR_TIMEBASE_SRC\x10\xd9]\x12\x41\n\n9TRIGGER_ATTRIBUTE_ANLG_WIN_REF_TRIG_DIG_FLTR_TIMEBASE_SRC\x10\xed]\x12@\n;TRIGGER_ATTRIBUTE_ANLG_LVL_PAUSE_TRIG_DIG_FLTR_TIMEBASE_SRC\x10\xf2]\x12@\n;TRIGGER_ATTRIBUTE_ANLG_WIN_PAUSE_TRIG_DIG_FLTR_TIMEBASE_SRC\x10\xf7]\x12@\n;TRIGGER_ATTRIBUTE_ANLG_WIN_START_TRIG_DIG_FLTR_TIMEBASE_SRC\x10\x81^\x12&\n!TRIGGER_ATTRIBUTE_START_TRIG_TERM\x10\x9e^\x12$\n\x1fTRIGGER_ATTRIBUTE_REF_TRIG_TERM\x10\x9f^\x12&\n!TRIGGER_ATTRIBUTE_PAUSE_TRIG_TERM\x10\xa0^\x12%\n TRIGGER_ATTRIBUTE_ARM_START_TERM\x10\xff^\x12*\n%TRIGGER_ATTRIBUTE_TIME_START_TRIG_SRC\x10\x9d`\x12\x36\n1TRIGGER_ATTRIBUTE_ANLG_MULTI_EDGE_START_TRIG_SRCS\x10\xa1\x62\x12\x34\n/TRIGGER_ATTRIBUTE_ANLG_MULTI_EDGE_REF_TRIG_SRCS\x10\xa6\x62*\xd5\x11\n\x16TriggerDoubleAttribute\x12(\n$TRIGGER_DOUBLE_ATTRIBUTE_UNSPECIFIED\x10\x00\x12/\n*TRIGGER_ATTRIBUTE_ANLG_LVL_PAUSE_TRIG_HYST\x10\xe8&\x12.\n)TRIGGER_ATTRIBUTE_ANLG_LVL_PAUSE_TRIG_LVL\x10\xe9&\x12.\n)TRIGGER_ATTRIBUTE_ANLG_WIN_PAUSE_TRIG_BTM\x10\xf5&\x12.\n)TRIGGER_ATTRIBUTE_ANLG_WIN_PAUSE_TRIG_TOP\x10\xf6&\x12\x30\n+TRIGGER_ATTRIBUTE_ANLG_EDGE_START_TRIG_HYST\x10\x95\'\x12/\n*TRIGGER_ATTRIBUTE_ANLG_EDGE_START_TRIG_LVL\x10\x96\'\x12.\n)TRIGGER_ATTRIBUTE_ANLG_WIN_START_TRIG_BTM\x10\x82(\x12.\n)TRIGGER_ATTRIBUTE_ANLG_WIN_START_TRIG_TOP\x10\x83(\x12.\n)TRIGGER_ATTRIBUTE_ANLG_EDGE_REF_TRIG_HYST\x10\xa1(\x12-\n(TRIGGER_ATTRIBUTE_ANLG_EDGE_REF_TRIG_LVL\x10\xa2(\x12,\n\'TRIGGER_ATTRIBUTE_ANLG_WIN_REF_TRIG_BTM\x10\xa8(\x12,\n\'TRIGGER_ATTRIBUTE_ANLG_WIN_REF_TRIG_TOP\x10\xa9(\x12%\n TRIGGER_ATTRIBUTE_REF_TRIG_DELAY\x10\x83)\x12\'\n\"TRIGGER_ATTRIBUTE_START_TRIG_DELAY\x10\xd6\x30\x12\x43\n>TRIGGER_ATTRIBUTE_DIG_EDGE_START_TRIG_DIG_FLTR_MIN_PULSE_WIDTH\x10\xa4\x44\x12\x41\nTRIGGER_ATTRIBUTE_ANLG_LVL_PAUSE_TRIG_DIG_FLTR_MIN_PULSE_WIDTH\x10\xf1]\x12\x41\nTRIGGER_ATTRIBUTE_ANLG_WIN_PAUSE_TRIG_DIG_FLTR_MIN_PULSE_WIDTH\x10\xf6]\x12\x41\nTRIGGER_ATTRIBUTE_ANLG_WIN_START_TRIG_DIG_FLTR_MIN_PULSE_WIDTH\x10\x80^\x12\x41\n\n9TRIGGER_ATTRIBUTE_DIG_EDGE_ARM_START_TRIG_DIG_FLTR_ENABLE\x10\xad\x44\x12>\n9TRIGGER_ATTRIBUTE_DIG_EDGE_ARM_START_TRIG_DIG_SYNC_ENABLE\x10\xb1\x44\x12\x38\n3TRIGGER_ATTRIBUTE_DIG_EDGE_ADV_TRIG_DIG_FLTR_ENABLE\x10\xb8\x44\x12\x30\n+TRIGGER_ATTRIBUTE_REF_TRIG_AUTO_TRIG_ENABLE\x10\xc1]\x12.\n)TRIGGER_ATTRIBUTE_REF_TRIG_AUTO_TRIGGERED\x10\xc2]\x12\x38\n3TRIGGER_ATTRIBUTE_DIG_EDGE_REF_TRIG_DIG_FLTR_ENABLE\x10\xd7]\x12\x38\n3TRIGGER_ATTRIBUTE_DIG_EDGE_REF_TRIG_DIG_SYNC_ENABLE\x10\xdb]\x12;\n6TRIGGER_ATTRIBUTE_ANLG_EDGE_START_TRIG_DIG_FLTR_ENABLE\x10\xe1]\x12;\n6TRIGGER_ATTRIBUTE_ANLG_EDGE_START_TRIG_DIG_SYNC_ENABLE\x10\xe5]\x12\x39\n4TRIGGER_ATTRIBUTE_ANLG_EDGE_REF_TRIG_DIG_FLTR_ENABLE\x10\xe6]\x12\x39\n4TRIGGER_ATTRIBUTE_ANLG_EDGE_REF_TRIG_DIG_SYNC_ENABLE\x10\xea]\x12\x38\n3TRIGGER_ATTRIBUTE_ANLG_WIN_REF_TRIG_DIG_FLTR_ENABLE\x10\xeb]\x12\x38\n3TRIGGER_ATTRIBUTE_ANLG_WIN_REF_TRIG_DIG_SYNC_ENABLE\x10\xef]\x12:\n5TRIGGER_ATTRIBUTE_ANLG_LVL_PAUSE_TRIG_DIG_FLTR_ENABLE\x10\xf0]\x12:\n5TRIGGER_ATTRIBUTE_ANLG_LVL_PAUSE_TRIG_DIG_SYNC_ENABLE\x10\xf4]\x12:\n5TRIGGER_ATTRIBUTE_ANLG_WIN_PAUSE_TRIG_DIG_FLTR_ENABLE\x10\xf5]\x12:\n5TRIGGER_ATTRIBUTE_ANLG_WIN_PAUSE_TRIG_DIG_SYNC_ENABLE\x10\xf9]\x12:\n5TRIGGER_ATTRIBUTE_ANLG_WIN_START_TRIG_DIG_FLTR_ENABLE\x10\xff]\x12:\n5TRIGGER_ATTRIBUTE_ANLG_WIN_START_TRIG_DIG_SYNC_ENABLE\x10\x83^\x12-\n(TRIGGER_ATTRIBUTE_REF_TRIG_RETRIGGERABLE\x10\x9d\x62\x12\x30\n+TRIGGER_ATTRIBUTE_REF_TRIG_TIMESTAMP_ENABLE\x10\xae\x62\x12\x36\n1TRIGGER_ATTRIBUTE_ARM_START_TRIG_TIMESTAMP_ENABLE\x10\xb3\x62\x12\x32\n-TRIGGER_ATTRIBUTE_START_TRIG_TIMESTAMP_ENABLE\x10\xca\x62*\xbb\x02\n\x19TriggerTimestampAttribute\x12+\n\'TRIGGER_TIMESTAMP_ATTRIBUTE_UNSPECIFIED\x10\x00\x12+\n&TRIGGER_ATTRIBUTE_START_TRIG_TRIG_WHEN\x10\xcd`\x12-\n(TRIGGER_ATTRIBUTE_REF_TRIG_TIMESTAMP_VAL\x10\xaf\x62\x12/\n*TRIGGER_ATTRIBUTE_ARM_START_TRIG_TRIG_WHEN\x10\xb1\x62\x12\x33\n.TRIGGER_ATTRIBUTE_ARM_START_TRIG_TIMESTAMP_VAL\x10\xb4\x62\x12/\n*TRIGGER_ATTRIBUTE_START_TRIG_TIMESTAMP_VAL\x10\xcb\x62*\xb5\x02\n\x1aTriggerInt32ArrayAttribute\x12-\n)TRIGGER_INT32_ARRAY_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\x38\n3TRIGGER_ATTRIBUTE_ANLG_MULTI_EDGE_START_TRIG_SLOPES\x10\xa2\x62\x12;\n6TRIGGER_ATTRIBUTE_ANLG_MULTI_EDGE_START_TRIG_COUPLINGS\x10\xa5\x62\x12\x36\n1TRIGGER_ATTRIBUTE_ANLG_MULTI_EDGE_REF_TRIG_SLOPES\x10\xa7\x62\x12\x39\n4TRIGGER_ATTRIBUTE_ANLG_MULTI_EDGE_REF_TRIG_COUPLINGS\x10\xaa\x62*\xab\x02\n\x1bTriggerDoubleArrayAttribute\x12.\n*TRIGGER_DOUBLE_ARRAY_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\x36\n1TRIGGER_ATTRIBUTE_ANLG_MULTI_EDGE_START_TRIG_LVLS\x10\xa3\x62\x12\x37\n2TRIGGER_ATTRIBUTE_ANLG_MULTI_EDGE_START_TRIG_HYSTS\x10\xa4\x62\x12\x34\n/TRIGGER_ATTRIBUTE_ANLG_MULTI_EDGE_REF_TRIG_LVLS\x10\xa8\x62\x12\x35\n0TRIGGER_ATTRIBUTE_ANLG_MULTI_EDGE_REF_TRIG_HYSTS\x10\xa9\x62*\x9e\x02\n\x16WatchdogInt32Attribute\x12(\n$WATCHDOG_INT32_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\'\n\"WATCHDOG_ATTRIBUTE_EXPIR_TRIG_TYPE\x10\xa3\x43\x12\x39\n4WATCHDOG_ATTRIBUTE_DIG_EDGE_WATCHDOG_EXPIR_TRIG_EDGE\x10\xa5\x43\x12&\n!WATCHDOG_ATTRIBUTE_DO_EXPIR_STATE\x10\xa7\x43\x12&\n!WATCHDOG_ATTRIBUTE_AO_OUTPUT_TYPE\x10\xde`\x12&\n!WATCHDOG_ATTRIBUTE_CO_EXPIR_STATE\x10\xe0`*\x95\x04\n\x16WatchdogResetAttribute\x12(\n$WATCHDOG_RESET_ATTRIBUTE_UNSPECIFIED\x10\x00\x12-\n(WATCHDOG_RESET_ATTRIBUTE_EXPIR_TRIG_TYPE\x10\xa3\x43\x12>\n9WATCHDOG_RESET_ATTRIBUTE_DIG_EDGE_WATCHDOG_EXPIR_TRIG_SRC\x10\xa4\x43\x12?\n:WATCHDOG_RESET_ATTRIBUTE_DIG_EDGE_WATCHDOG_EXPIR_TRIG_EDGE\x10\xa5\x43\x12,\n\'WATCHDOG_RESET_ATTRIBUTE_DO_EXPIR_STATE\x10\xa7\x43\x12%\n WATCHDOG_RESET_ATTRIBUTE_TIMEOUT\x10\xa9\x43\x12\x42\n=WATCHDOG_RESET_ATTRIBUTE_EXPIR_TRIG_TRIG_ON_NETWORK_CONN_LOSS\x10\xdd`\x12,\n\'WATCHDOG_RESET_ATTRIBUTE_AO_OUTPUT_TYPE\x10\xde`\x12,\n\'WATCHDOG_RESET_ATTRIBUTE_AO_EXPIR_STATE\x10\xdf`\x12,\n\'WATCHDOG_RESET_ATTRIBUTE_CO_EXPIR_STATE\x10\xe0`*~\n\x17WatchdogStringAttribute\x12)\n%WATCHDOG_STRING_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\x38\n3WATCHDOG_ATTRIBUTE_DIG_EDGE_WATCHDOG_EXPIR_TRIG_SRC\x10\xa4\x43*\xa3\x01\n\x15WatchdogBoolAttribute\x12\'\n#WATCHDOG_BOOL_ATTRIBUTE_UNSPECIFIED\x10\x00\x12#\n\x1eWATCHDOG_ATTRIBUTE_HAS_EXPIRED\x10\xa8\x43\x12<\n7WATCHDOG_ATTRIBUTE_EXPIR_TRIG_TRIG_ON_NETWORK_CONN_LOSS\x10\xdd`*\x8d\x01\n\x17WatchdogDoubleAttribute\x12)\n%WATCHDOG_DOUBLE_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\x1f\n\x1aWATCHDOG_ATTRIBUTE_TIMEOUT\x10\xa9\x43\x12&\n!WATCHDOG_ATTRIBUTE_AO_EXPIR_STATE\x10\xdf`*\xbc\x01\n\x13WriteInt32Attribute\x12%\n!WRITE_INT32_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\x1f\n\x1aWRITE_ATTRIBUTE_REGEN_MODE\x10\xd3(\x12 \n\x1bWRITE_ATTRIBUTE_RELATIVE_TO\x10\x8c\x32\x12\x1b\n\x16WRITE_ATTRIBUTE_OFFSET\x10\x8d\x32\x12\x1e\n\x19WRITE_ATTRIBUTE_WAIT_MODE\x10\xb1\x45*\xaa\x02\n\x13WriteResetAttribute\x12%\n!WRITE_RESET_ATTRIBUTE_UNSPECIFIED\x10\x00\x12%\n WRITE_RESET_ATTRIBUTE_REGEN_MODE\x10\xd3(\x12&\n!WRITE_RESET_ATTRIBUTE_RELATIVE_TO\x10\x8c\x32\x12!\n\x1cWRITE_RESET_ATTRIBUTE_OFFSET\x10\x8d\x32\x12$\n\x1fWRITE_RESET_ATTRIBUTE_WAIT_MODE\x10\xb1\x45\x12%\n WRITE_RESET_ATTRIBUTE_SLEEP_TIME\x10\xb2\x45\x12-\n(WRITE_RESET_ATTRIBUTE_NEXT_WRITE_IS_LAST\x10\xecR*\x97\x01\n\x14WriteUInt64Attribute\x12&\n\"WRITE_UINT64_ATTRIBUTE_UNSPECIFIED\x10\x00\x12#\n\x1eWRITE_ATTRIBUTE_CURR_WRITE_POS\x10\xd8(\x12\x32\n-WRITE_ATTRIBUTE_TOTAL_SAMP_PER_CHAN_GENERATED\x10\xab\x32*\xd8\x01\n\x14WriteUInt32Attribute\x12&\n\"WRITE_UINT32_ATTRIBUTE_UNSPECIFIED\x10\x00\x12 \n\x1bWRITE_ATTRIBUTE_SPACE_AVAIL\x10\xe0(\x12#\n\x1eWRITE_ATTRIBUTE_RAW_DATA_WIDTH\x10\xfd\x42\x12\x1e\n\x19WRITE_ATTRIBUTE_NUM_CHANS\x10\xfe\x42\x12\x31\n,WRITE_ATTRIBUTE_DIGITAL_LINES_BYTES_PER_CHAN\x10\xff\x42*_\n\x14WriteDoubleAttribute\x12&\n\"WRITE_DOUBLE_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\x1f\n\x1aWRITE_ATTRIBUTE_SLEEP_TIME\x10\xb2\x45*\xfe\x03\n\x12WriteBoolAttribute\x12$\n WRITE_BOOL_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\'\n\"WRITE_ATTRIBUTE_NEXT_WRITE_IS_LAST\x10\xecR\x12,\n\'WRITE_ATTRIBUTE_OVERCURRENT_CHANS_EXIST\x10\xe8S\x12\x32\n-WRITE_ATTRIBUTE_OPEN_CURRENT_LOOP_CHANS_EXIST\x10\xeaS\x12\x33\n.WRITE_ATTRIBUTE_POWER_SUPPLY_FAULT_CHANS_EXIST\x10\xecS\x12\x30\n+WRITE_ATTRIBUTE_OVERTEMPERATURE_CHANS_EXIST\x10\x84U\x12<\n7WRITE_ATTRIBUTE_ACCESSORY_INSERTION_OR_REMOVAL_DETECTED\x10\xd3`\x12+\n&WRITE_ATTRIBUTE_OVERLOADED_CHANS_EXIST\x10\x84\x61\x12\x35\n0WRITE_ATTRIBUTE_EXTERNAL_OVERVOLTAGE_CHANS_EXIST\x10\xbb\x61\x12.\n)WRITE_ATTRIBUTE_SYNC_UNLOCKED_CHANS_EXIST\x10\xbf\x62*\xb1\x03\n\x14WriteStringAttribute\x12&\n\"WRITE_STRING_ATTRIBUTE_UNSPECIFIED\x10\x00\x12&\n!WRITE_ATTRIBUTE_OVERCURRENT_CHANS\x10\xe9S\x12,\n\'WRITE_ATTRIBUTE_OPEN_CURRENT_LOOP_CHANS\x10\xebS\x12-\n(WRITE_ATTRIBUTE_POWER_SUPPLY_FAULT_CHANS\x10\xedS\x12>\n9WRITE_ATTRIBUTE_DEVS_WITH_INSERTED_OR_REMOVED_ACCESSORIES\x10\xd4`\x12*\n%WRITE_ATTRIBUTE_OVERTEMPERATURE_CHANS\x10\x83\x61\x12%\n WRITE_ATTRIBUTE_OVERLOADED_CHANS\x10\x85\x61\x12/\n*WRITE_ATTRIBUTE_EXTERNAL_OVERVOLTAGE_CHANS\x10\xbc\x61\x12(\n#WRITE_ATTRIBUTE_SYNC_UNLOCKED_CHANS\x10\xc0\x62*\x92\x01\n\x0f\x41\x43\x45xcitWireMode\x12\"\n\x1e\x41\x43_EXCIT_WIRE_MODE_UNSPECIFIED\x10\x00\x12\x1d\n\x19\x41\x43_EXCIT_WIRE_MODE_4_WIRE\x10\x04\x12\x1d\n\x19\x41\x43_EXCIT_WIRE_MODE_5_WIRE\x10\x05\x12\x1d\n\x19\x41\x43_EXCIT_WIRE_MODE_6_WIRE\x10\x06*\xa8\x02\n\x1b\x41\x63\x63\x65lChargeSensitivityUnits\x12.\n*ACCEL_CHARGE_SENSITIVITY_UNITS_UNSPECIFIED\x10\x00\x12\x37\n2ACCEL_CHARGE_SENSITIVITY_UNITS_PICO_COULOMBS_PER_G\x10\xe3}\x12O\nJACCEL_CHARGE_SENSITIVITY_UNITS_PICO_COULOMBS_PER_METERS_PER_SECOND_SQUARED\x10\xe4}\x12O\nJACCEL_CHARGE_SENSITIVITY_UNITS_PICO_COULOMBS_PER_INCHES_PER_SECOND_SQUARED\x10\xe5}*\x9a\x01\n\x16\x41\x63\x63\x65lSensitivityUnits1\x12(\n$ACCEL_SENSITIVITY_UNITS1_UNSPECIFIED\x10\x00\x12+\n&ACCEL_SENSITIVITY_UNITS1_M_VOLTS_PER_G\x10\xdd\x61\x12)\n$ACCEL_SENSITIVITY_UNITS1_VOLTS_PER_G\x10\xde\x61*\xca\x01\n\x0b\x41\x63\x63\x65lUnits2\x12\x1c\n\x18\x41\x43\x43\x45L_UNITS2_UNSPECIFIED\x10\x00\x12\x1e\n\x19\x41\x43\x43\x45L_UNITS2_ACCEL_UNIT_G\x10\xcaO\x12+\n&ACCEL_UNITS2_METERS_PER_SECOND_SQUARED\x10\xb6\x61\x12+\n&ACCEL_UNITS2_INCHES_PER_SECOND_SQUARED\x10\xb7\x61\x12#\n\x1e\x41\x43\x43\x45L_UNITS2_FROM_CUSTOM_SCALE\x10\xd1N*\xa6\x01\n\x0f\x41\x63quisitionType\x12 \n\x1c\x41\x43QUISITION_TYPE_UNSPECIFIED\x10\x00\x12\"\n\x1d\x41\x43QUISITION_TYPE_FINITE_SAMPS\x10\xc2O\x12 \n\x1b\x41\x43QUISITION_TYPE_CONT_SAMPS\x10\x8bO\x12+\n&ACQUISITION_TYPE_HW_TIMED_SINGLE_POINT\x10\xea\x61*\x86\x01\n\x0b\x41ngleUnits1\x12\x1c\n\x18\x41NGLE_UNITS1_UNSPECIFIED\x10\x00\x12\x19\n\x14\x41NGLE_UNITS1_DEGREES\x10\xa2O\x12\x19\n\x14\x41NGLE_UNITS1_RADIANS\x10\xa1P\x12#\n\x1e\x41NGLE_UNITS1_FROM_CUSTOM_SCALE\x10\xd1N*\x9f\x01\n\x0b\x41ngleUnits2\x12\x1c\n\x18\x41NGLE_UNITS2_UNSPECIFIED\x10\x00\x12\x19\n\x14\x41NGLE_UNITS2_DEGREES\x10\xa2O\x12\x19\n\x14\x41NGLE_UNITS2_RADIANS\x10\xa1P\x12\x17\n\x12\x41NGLE_UNITS2_TICKS\x10\xc0P\x12#\n\x1e\x41NGLE_UNITS2_FROM_CUSTOM_SCALE\x10\xd1N*\xee\x01\n\x14\x41ngularVelocityUnits\x12&\n\"ANGULAR_VELOCITY_UNITS_UNSPECIFIED\x10\x00\x12\x1f\n\x1a\x41NGULAR_VELOCITY_UNITS_RPM\x10\xd0}\x12.\n)ANGULAR_VELOCITY_UNITS_RADIANS_PER_SECOND\x10\xd1}\x12.\n)ANGULAR_VELOCITY_UNITS_DEGREES_PER_SECOND\x10\xd2}\x12-\n(ANGULAR_VELOCITY_UNITS_FROM_CUSTOM_SCALE\x10\xd1N*\xde\x01\n\x14\x42ridgeConfiguration1\x12%\n!BRIDGE_CONFIGURATION1_UNSPECIFIED\x10\x00\x12&\n!BRIDGE_CONFIGURATION1_FULL_BRIDGE\x10\xc6O\x12&\n!BRIDGE_CONFIGURATION1_HALF_BRIDGE\x10\xcbO\x12)\n$BRIDGE_CONFIGURATION1_QUARTER_BRIDGE\x10\x9eP\x12$\n\x1f\x42RIDGE_CONFIGURATION1_NO_BRIDGE\x10\xf4O*\x9c\x01\n\x15\x42ridgeElectricalUnits\x12\'\n#BRIDGE_ELECTRICAL_UNITS_UNSPECIFIED\x10\x00\x12+\n&BRIDGE_ELECTRICAL_UNITS_VOLTS_PER_VOLT\x10\x98|\x12-\n(BRIDGE_ELECTRICAL_UNITS_M_VOLTS_PER_VOLT\x10\x99|*\xc7\x03\n\x13\x42ridgePhysicalUnits\x12%\n!BRIDGE_PHYSICAL_UNITS_UNSPECIFIED\x10\x00\x12\"\n\x1d\x42RIDGE_PHYSICAL_UNITS_NEWTONS\x10\x83|\x12!\n\x1c\x42RIDGE_PHYSICAL_UNITS_POUNDS\x10\x84|\x12)\n$BRIDGE_PHYSICAL_UNITS_KILOGRAM_FORCE\x10\x85|\x12\"\n\x1d\x42RIDGE_PHYSICAL_UNITS_PASCALS\x10\xe1N\x12\x31\n,BRIDGE_PHYSICAL_UNITS_POUNDS_PER_SQUARE_INCH\x10\x87|\x12\x1e\n\x19\x42RIDGE_PHYSICAL_UNITS_BAR\x10\x88|\x12(\n#BRIDGE_PHYSICAL_UNITS_NEWTON_METERS\x10\x89|\x12&\n!BRIDGE_PHYSICAL_UNITS_INCH_OUNCES\x10\x8a|\x12&\n!BRIDGE_PHYSICAL_UNITS_INCH_POUNDS\x10\x8b|\x12&\n!BRIDGE_PHYSICAL_UNITS_FOOT_POUNDS\x10\x8c|*\xb3\x01\n\x0b\x42ridgeUnits\x12\x1c\n\x18\x42RIDGE_UNITS_UNSPECIFIED\x10\x00\x12 \n\x1b\x42RIDGE_UNITS_VOLTS_PER_VOLT\x10\x98|\x12\"\n\x1d\x42RIDGE_UNITS_M_VOLTS_PER_VOLT\x10\x99|\x12#\n\x1e\x42RIDGE_UNITS_FROM_CUSTOM_SCALE\x10\xd1N\x12\x1b\n\x16\x42RIDGE_UNITS_FROM_TEDS\x10\xe4\x61*w\n\nCJCSource1\x12\x1b\n\x17\x43JC_SOURCE1_UNSPECIFIED\x10\x00\x12\x19\n\x14\x43JC_SOURCE1_BUILT_IN\x10\xd8O\x12\x1a\n\x15\x43JC_SOURCE1_CONST_VAL\x10\x84O\x12\x15\n\x10\x43JC_SOURCE1_CHAN\x10\x81O*\x8d\x01\n\x0b\x43hargeUnits\x12\x1c\n\x18\x43HARGE_UNITS_UNSPECIFIED\x10\x00\x12\x1a\n\x15\x43HARGE_UNITS_COULOMBS\x10\xe6}\x12\x1f\n\x1a\x43HARGE_UNITS_PICO_COULOMBS\x10\xe7}\x12#\n\x1e\x43HARGE_UNITS_FROM_CUSTOM_SCALE\x10\xd1N*\x9b\x01\n\x0f\x43ountDirection1\x12 \n\x1c\x43OUNT_DIRECTION1_UNSPECIFIED\x10\x00\x12\x1e\n\x19\x43OUNT_DIRECTION1_COUNT_UP\x10\x90O\x12 \n\x1b\x43OUNT_DIRECTION1_COUNT_DOWN\x10\x8cO\x12$\n\x1f\x43OUNT_DIRECTION1_EXT_CONTROLLED\x10\xd6P*\xf5\x01\n\x16\x43ounterFrequencyMethod\x12(\n$COUNTER_FREQUENCY_METHOD_UNSPECIFIED\x10\x00\x12,\n\'COUNTER_FREQUENCY_METHOD_LOW_FREQ_1_CTR\x10\xf9N\x12-\n(COUNTER_FREQUENCY_METHOD_HIGH_FREQ_2_CTR\x10\xadO\x12-\n(COUNTER_FREQUENCY_METHOD_LARGE_RNG_2_CTR\x10\xddO\x12%\n COUNTER_FREQUENCY_METHOD_DYN_AVG\x10\xc1}*\xa2\x02\n\'CurrentShuntResistorLocationWithDefault\x12<\n8CURRENT_SHUNT_RESISTOR_LOCATION_WITH_DEFAULT_UNSPECIFIED\x10\x00\x12\x41\n4CURRENT_SHUNT_RESISTOR_LOCATION_WITH_DEFAULT_DEFAULT\x10\xff\xff\xff\xff\xff\xff\xff\xff\xff\x01\x12:\n5CURRENT_SHUNT_RESISTOR_LOCATION_WITH_DEFAULT_INTERNAL\x10\xd8O\x12:\n5CURRENT_SHUNT_RESISTOR_LOCATION_WITH_DEFAULT_EXTERNAL\x10\xb7O*p\n\rCurrentUnits2\x12\x1e\n\x1a\x43URRENT_UNITS2_UNSPECIFIED\x10\x00\x12\x18\n\x13\x43URRENT_UNITS2_AMPS\x10\xe6P\x12%\n CURRENT_UNITS2_FROM_CUSTOM_SCALE\x10\xd1N*\xb6\x01\n\x10\x44igitalLineState\x12\"\n\x1e\x44IGITAL_LINE_STATE_UNSPECIFIED\x10\x00\x12\x1c\n\x17\x44IGITAL_LINE_STATE_HIGH\x10\xd0O\x12\x1b\n\x16\x44IGITAL_LINE_STATE_LOW\x10\xe6O\x12 \n\x1b\x44IGITAL_LINE_STATE_TRISTATE\x10\xc6P\x12!\n\x1c\x44IGITAL_LINE_STATE_NO_CHANGE\x10\xb0O*\xaf\x01\n\x18\x44igitalPatternCondition1\x12*\n&DIGITAL_PATTERN_CONDITION1_UNSPECIFIED\x10\x00\x12/\n*DIGITAL_PATTERN_CONDITION1_PATTERN_MATCHES\x10\x8eP\x12\x36\n1DIGITAL_PATTERN_CONDITION1_PATTERN_DOES_NOT_MATCH\x10\x8dP*]\n\x12\x44igitalWidthUnits3\x12$\n DIGITAL_WIDTH_UNITS3_UNSPECIFIED\x10\x00\x12!\n\x1c\x44IGITAL_WIDTH_UNITS3_SECONDS\x10\xfcP*\xae\x03\n$EddyCurrentProxProbeSensitivityUnits\x12\x39\n5EDDY_CURRENT_PROX_PROBE_SENSITIVITY_UNITS_UNSPECIFIED\x10\x00\x12>\n9EDDY_CURRENT_PROX_PROBE_SENSITIVITY_UNITS_M_VOLTS_PER_MIL\x10\xf4s\x12<\n7EDDY_CURRENT_PROX_PROBE_SENSITIVITY_UNITS_VOLTS_PER_MIL\x10\xf5s\x12\x45\n@EDDY_CURRENT_PROX_PROBE_SENSITIVITY_UNITS_M_VOLTS_PER_MILLIMETER\x10\xf6s\x12\x43\n>EDDY_CURRENT_PROX_PROBE_SENSITIVITY_UNITS_VOLTS_PER_MILLIMETER\x10\xf7s\x12\x41\nSTRAIN_GAGE_ROSETTE_MEASUREMENT_TYPE_CARTESIAN_SHEAR_STRAIN_XY\x10\xe8|\x12:\n5STRAIN_GAGE_ROSETTE_MEASUREMENT_TYPE_MAX_SHEAR_STRAIN\x10\xe9|\x12@\n;STRAIN_GAGE_ROSETTE_MEASUREMENT_TYPE_MAX_SHEAR_STRAIN_ANGLE\x10\xea|*\xcc\x01\n\x15StrainGageRosetteType\x12(\n$STRAIN_GAGE_ROSETTE_TYPE_UNSPECIFIED\x10\x00\x12\x31\n,STRAIN_GAGE_ROSETTE_TYPE_RECTANGULAR_ROSETTE\x10\xe0|\x12+\n&STRAIN_GAGE_ROSETTE_TYPE_DELTA_ROSETTE\x10\xe1|\x12)\n$STRAIN_GAGE_ROSETTE_TYPE_TEE_ROSETTE\x10\xe2|*n\n\x0cStrainUnits1\x12\x1d\n\x19STRAIN_UNITS1_UNSPECIFIED\x10\x00\x12\x19\n\x14STRAIN_UNITS1_STRAIN\x10\xbbP\x12$\n\x1fSTRAIN_UNITS1_FROM_CUSTOM_SCALE\x10\xd1N*e\n\tTEDSUnits\x12\x1a\n\x16TEDS_UNITS_UNSPECIFIED\x10\x00\x12!\n\x1cTEDS_UNITS_FROM_CUSTOM_SCALE\x10\xd1N\x12\x19\n\x14TEDS_UNITS_FROM_TEDS\x10\xe4\x61*\x96\x02\n\x11TaskControlAction\x12\"\n\x1eTASK_CONTROL_ACTION_TASK_START\x10\x00\x12!\n\x1dTASK_CONTROL_ACTION_TASK_STOP\x10\x01\x12#\n\x1fTASK_CONTROL_ACTION_TASK_VERIFY\x10\x02\x12#\n\x1fTASK_CONTROL_ACTION_TASK_COMMIT\x10\x03\x12$\n TASK_CONTROL_ACTION_TASK_RESERVE\x10\x04\x12&\n\"TASK_CONTROL_ACTION_TASK_UNRESERVE\x10\x05\x12\"\n\x1eTASK_CONTROL_ACTION_TASK_ABORT\x10\x06*\xaf\x01\n\x10TemperatureUnits\x12!\n\x1dTEMPERATURE_UNITS_UNSPECIFIED\x10\x00\x12\x1c\n\x17TEMPERATURE_UNITS_DEG_C\x10\x9fO\x12\x1c\n\x17TEMPERATURE_UNITS_DEG_F\x10\xa0O\x12\x1e\n\x19TEMPERATURE_UNITS_KELVINS\x10\xd5P\x12\x1c\n\x17TEMPERATURE_UNITS_DEG_R\x10\xa1O*\xcf\x02\n\x11ThermocoupleType1\x12\"\n\x1eTHERMOCOUPLE_TYPE1_UNSPECIFIED\x10\x00\x12!\n\x1cTHERMOCOUPLE_TYPE1_J_TYPE_TC\x10\xd8N\x12!\n\x1cTHERMOCOUPLE_TYPE1_K_TYPE_TC\x10\xd9N\x12!\n\x1cTHERMOCOUPLE_TYPE1_N_TYPE_TC\x10\xddN\x12!\n\x1cTHERMOCOUPLE_TYPE1_R_TYPE_TC\x10\xe2N\x12!\n\x1cTHERMOCOUPLE_TYPE1_S_TYPE_TC\x10\xe5N\x12!\n\x1cTHERMOCOUPLE_TYPE1_T_TYPE_TC\x10\xe6N\x12!\n\x1cTHERMOCOUPLE_TYPE1_B_TYPE_TC\x10\xbfN\x12!\n\x1cTHERMOCOUPLE_TYPE1_E_TYPE_TC\x10\xc7N*c\n\tTimeUnits\x12\x1a\n\x16TIME_UNITS_UNSPECIFIED\x10\x00\x12\x17\n\x12TIME_UNITS_SECONDS\x10\xfcP\x12!\n\x1cTIME_UNITS_FROM_CUSTOM_SCALE\x10\xd1N*\x7f\n\nTimeUnits3\x12\x1b\n\x17TIME_UNITS3_UNSPECIFIED\x10\x00\x12\x18\n\x13TIME_UNITS3_SECONDS\x10\xfcP\x12\x16\n\x11TIME_UNITS3_TICKS\x10\xc0P\x12\"\n\x1dTIME_UNITS3_FROM_CUSTOM_SCALE\x10\xd1N*c\n\nTimescale2\x12\x1a\n\x16TIMESCALE2_UNSPECIFIED\x10\x00\x12\x19\n\x14TIMESCALE2_HOST_TIME\x10\xfe}\x12\x1e\n\x19TIMESCALE2_IO_DEVICE_TIME\x10\xff}*\xd2\x01\n\x0eTimestampEvent\x12\x1f\n\x1bTIMESTAMP_EVENT_UNSPECIFIED\x10\x00\x12\"\n\x1dTIMESTAMP_EVENT_START_TRIGGER\x10\xcb\x61\x12&\n!TIMESTAMP_EVENT_REFERENCE_TRIGGER\x10\xca\x61\x12&\n!TIMESTAMP_EVENT_ARM_START_TRIGGER\x10\xb1r\x12+\n&TIMESTAMP_EVENT_FIRST_SAMPLE_TIMESTAMP\x10\x82~*\xce\x01\n\x0bTorqueUnits\x12\x1c\n\x18TORQUE_UNITS_UNSPECIFIED\x10\x00\x12\x1f\n\x1aTORQUE_UNITS_NEWTON_METERS\x10\x89|\x12\x1d\n\x18TORQUE_UNITS_INCH_OUNCES\x10\x8a|\x12\x1d\n\x18TORQUE_UNITS_INCH_POUNDS\x10\x8b|\x12\x1d\n\x18TORQUE_UNITS_FOOT_POUNDS\x10\x8c|\x12#\n\x1eTORQUE_UNITS_FROM_CUSTOM_SCALE\x10\xd1N*\xb4\n\n\x0eUnitsPreScaled\x12 \n\x1cUNITS_PRE_SCALED_UNSPECIFIED\x10\x00\x12\x1b\n\x16UNITS_PRE_SCALED_VOLTS\x10\xecP\x12\x1a\n\x15UNITS_PRE_SCALED_AMPS\x10\xe6P\x12\x1b\n\x16UNITS_PRE_SCALED_DEG_F\x10\xa0O\x12\x1b\n\x16UNITS_PRE_SCALED_DEG_C\x10\x9fO\x12\x1b\n\x16UNITS_PRE_SCALED_DEG_R\x10\xa1O\x12\x1d\n\x18UNITS_PRE_SCALED_KELVINS\x10\xd5P\x12\x1c\n\x17UNITS_PRE_SCALED_STRAIN\x10\xbbP\x12\x1a\n\x15UNITS_PRE_SCALED_OHMS\x10\x90Q\x12\x18\n\x13UNITS_PRE_SCALED_HZ\x10\x85Q\x12\x1d\n\x18UNITS_PRE_SCALED_SECONDS\x10\xfcP\x12\x1c\n\x17UNITS_PRE_SCALED_METERS\x10\xebO\x12\x1c\n\x17UNITS_PRE_SCALED_INCHES\x10\x8bQ\x12\x1d\n\x18UNITS_PRE_SCALED_DEGREES\x10\xa2O\x12\x1d\n\x18UNITS_PRE_SCALED_RADIANS\x10\xa1P\x12\x1b\n\x16UNITS_PRE_SCALED_TICKS\x10\xc0P\x12\x19\n\x14UNITS_PRE_SCALED_RPM\x10\xd0}\x12(\n#UNITS_PRE_SCALED_RADIANS_PER_SECOND\x10\xd1}\x12(\n#UNITS_PRE_SCALED_DEGREES_PER_SECOND\x10\xd2}\x12\x17\n\x12UNITS_PRE_SCALED_G\x10\xcaO\x12/\n*UNITS_PRE_SCALED_METERS_PER_SECOND_SQUARED\x10\xb6\x61\x12/\n*UNITS_PRE_SCALED_INCHES_PER_SECOND_SQUARED\x10\xb7\x61\x12\'\n\"UNITS_PRE_SCALED_METERS_PER_SECOND\x10\xd7|\x12\'\n\"UNITS_PRE_SCALED_INCHES_PER_SECOND\x10\xd8|\x12\x1d\n\x18UNITS_PRE_SCALED_PASCALS\x10\xe1N\x12\x1d\n\x18UNITS_PRE_SCALED_NEWTONS\x10\x83|\x12\x1c\n\x17UNITS_PRE_SCALED_POUNDS\x10\x84|\x12$\n\x1fUNITS_PRE_SCALED_KILOGRAM_FORCE\x10\x85|\x12,\n\'UNITS_PRE_SCALED_POUNDS_PER_SQUARE_INCH\x10\x87|\x12\x19\n\x14UNITS_PRE_SCALED_BAR\x10\x88|\x12#\n\x1eUNITS_PRE_SCALED_NEWTON_METERS\x10\x89|\x12!\n\x1cUNITS_PRE_SCALED_INCH_OUNCES\x10\x8a|\x12!\n\x1cUNITS_PRE_SCALED_INCH_POUNDS\x10\x8b|\x12!\n\x1cUNITS_PRE_SCALED_FOOT_POUNDS\x10\x8c|\x12$\n\x1fUNITS_PRE_SCALED_VOLTS_PER_VOLT\x10\x98|\x12&\n!UNITS_PRE_SCALED_M_VOLTS_PER_VOLT\x10\x99|\x12\x1e\n\x19UNITS_PRE_SCALED_COULOMBS\x10\xe6}\x12#\n\x1eUNITS_PRE_SCALED_PICO_COULOMBS\x10\xe7}\x12\x1f\n\x1aUNITS_PRE_SCALED_FROM_TEDS\x10\xe4\x61*\xfb\x01\n\"VelocityIEPESensorSensitivityUnits\x12\x36\n2VELOCITY_IEPE_SENSOR_SENSITIVITY_UNITS_UNSPECIFIED\x10\x00\x12P\nKVELOCITY_IEPE_SENSOR_SENSITIVITY_UNITS_MILLIVOLTS_PER_MILLIMETER_PER_SECOND\x10\xdb|\x12K\nFVELOCITY_IEPE_SENSOR_SENSITIVITY_UNITS_MILLI_VOLTS_PER_INCH_PER_SECOND\x10\xdc|*\xa4\x01\n\rVelocityUnits\x12\x1e\n\x1aVELOCITY_UNITS_UNSPECIFIED\x10\x00\x12%\n VELOCITY_UNITS_METERS_PER_SECOND\x10\xd7|\x12%\n VELOCITY_UNITS_INCHES_PER_SECOND\x10\xd8|\x12%\n VELOCITY_UNITS_FROM_CUSTOM_SCALE\x10\xd1N*q\n\rVoltageUnits2\x12\x1e\n\x1aVOLTAGE_UNITS2_UNSPECIFIED\x10\x00\x12\x19\n\x14VOLTAGE_UNITS2_VOLTS\x10\xecP\x12%\n VOLTAGE_UNITS2_FROM_CUSTOM_SCALE\x10\xd1N*\xb3\x01\n\x14WatchdogAOOutputType\x12\'\n#WATCHDOG_AO_OUTPUT_TYPE_UNSPECIFIED\x10\x00\x12$\n\x1fWATCHDOG_AO_OUTPUT_TYPE_VOLTAGE\x10\xd2P\x12$\n\x1fWATCHDOG_AO_OUTPUT_TYPE_CURRENT\x10\x96O\x12&\n!WATCHDOG_AO_OUTPUT_TYPE_NO_CHANGE\x10\xb0O*\xac\x01\n\x14WatchdogCOExpirState\x12\'\n#WATCHDOG_CO_EXPIR_STATE_UNSPECIFIED\x10\x00\x12 \n\x1bWATCHDOG_CO_EXPIR_STATE_LOW\x10\xe6O\x12!\n\x1cWATCHDOG_CO_EXPIR_STATE_HIGH\x10\xd0O\x12&\n!WATCHDOG_CO_EXPIR_STATE_NO_CHANGE\x10\xb0O*n\n\x15WatchdogControlAction\x12\'\n#WATCHDOG_CONTROL_ACTION_RESET_TIMER\x10\x00\x12,\n(WATCHDOG_CONTROL_ACTION_CLEAR_EXPIRATION\x10\x01*\x9d\x01\n\x17WindowTriggerCondition1\x12)\n%WINDOW_TRIGGER_CONDITION1_UNSPECIFIED\x10\x00\x12+\n&WINDOW_TRIGGER_CONDITION1_ENTERING_WIN\x10\xb3O\x12*\n%WINDOW_TRIGGER_CONDITION1_LEAVING_WIN\x10\xe0O*\xc9\x01\n\x15WriteBasicTEDSOptions\x12(\n$WRITE_BASIC_TEDS_OPTIONS_UNSPECIFIED\x10\x00\x12-\n(WRITE_BASIC_TEDS_OPTIONS_WRITE_TO_EEPROM\x10\xfa\x61\x12+\n&WRITE_BASIC_TEDS_OPTIONS_WRITE_TO_PROM\x10\xfb\x61\x12*\n%WRITE_BASIC_TEDS_OPTIONS_DO_NOT_WRITE\x10\xfc\x61*\x8e\x01\n\x15WaveformAttributeMode\x12 \n\x1cWAVEFORM_ATTRIBUTE_MODE_NONE\x10\x00\x12\"\n\x1eWAVEFORM_ATTRIBUTE_MODE_TIMING\x10\x01\x12/\n+WAVEFORM_ATTRIBUTE_MODE_EXTENDED_PROPERTIES\x10\x02*\xc1\x99\x01\n\x1b\x43hannelInt32AttributeValues\x12\x1d\n\x19\x43HANNEL_INT32_UNSPECIFIED\x10\x00\x12+\n\'CHANNEL_INT32_AC_EXCIT_WIRE_MODE_4_WIRE\x10\x04\x12+\n\'CHANNEL_INT32_AC_EXCIT_WIRE_MODE_5_WIRE\x10\x05\x12+\n\'CHANNEL_INT32_AC_EXCIT_WIRE_MODE_6_WIRE\x10\x06\x12,\n\'CHANNEL_INT32_ADC_TIMING_MODE_AUTOMATIC\x10\xe1}\x12\x32\n-CHANNEL_INT32_ADC_TIMING_MODE_HIGH_RESOLUTION\x10\xd3O\x12-\n(CHANNEL_INT32_ADC_TIMING_MODE_HIGH_SPEED\x10\xf8r\x12\x37\n2CHANNEL_INT32_ADC_TIMING_MODE_BEST_50_HZ_REJECTION\x10\xf9r\x12\x37\n2CHANNEL_INT32_ADC_TIMING_MODE_BEST_60_HZ_REJECTION\x10\xfar\x12)\n$CHANNEL_INT32_ADC_TIMING_MODE_CUSTOM\x10\x99O\x12.\n)CHANNEL_INT32_AI_MEASUREMENT_TYPE_VOLTAGE\x10\xd2P\x12\x32\n-CHANNEL_INT32_AI_MEASUREMENT_TYPE_VOLTAGE_RMS\x10\xeeP\x12.\n)CHANNEL_INT32_AI_MEASUREMENT_TYPE_CURRENT\x10\x96O\x12\x32\n-CHANNEL_INT32_AI_MEASUREMENT_TYPE_CURRENT_RMS\x10\xefP\x12\x45\n@CHANNEL_INT32_AI_MEASUREMENT_TYPE_VOLTAGE_CUSTOM_WITH_EXCITATION\x10\xd3P\x12-\n(CHANNEL_INT32_AI_MEASUREMENT_TYPE_BRIDGE\x10\xa4|\x12\x33\n.CHANNEL_INT32_AI_MEASUREMENT_TYPE_FREQ_VOLTAGE\x10\xc5O\x12\x31\n,CHANNEL_INT32_AI_MEASUREMENT_TYPE_RESISTANCE\x10\xa6P\x12.\n)CHANNEL_INT32_AI_MEASUREMENT_TYPE_TEMP_TC\x10\xbfP\x12\x33\n.CHANNEL_INT32_AI_MEASUREMENT_TYPE_TEMP_THRMSTR\x10\xbeP\x12/\n*CHANNEL_INT32_AI_MEASUREMENT_TYPE_TEMP_RTD\x10\xbdP\x12;\n6CHANNEL_INT32_AI_MEASUREMENT_TYPE_TEMP_BUILT_IN_SENSOR\x10\xc7P\x12\x32\n-CHANNEL_INT32_AI_MEASUREMENT_TYPE_STRAIN_GAGE\x10\xbcP\x12:\n5CHANNEL_INT32_AI_MEASUREMENT_TYPE_ROSETTE_STRAIN_GAGE\x10\xec|\x12\x34\n/CHANNEL_INT32_AI_MEASUREMENT_TYPE_POSITION_LVDT\x10\xf0P\x12\x34\n/CHANNEL_INT32_AI_MEASUREMENT_TYPE_POSITION_RVDT\x10\xf1P\x12L\nGCHANNEL_INT32_AI_MEASUREMENT_TYPE_POSITION_EDDY_CURRENT_PROXIMITY_PROBE\x10\xf3s\x12\x34\n/CHANNEL_INT32_AI_MEASUREMENT_TYPE_ACCELEROMETER\x10\xf4P\x12:\n5CHANNEL_INT32_AI_MEASUREMENT_TYPE_ACCELERATION_CHARGE\x10\xe8}\x12\x45\n@CHANNEL_INT32_AI_MEASUREMENT_TYPE_ACCELERATION_4_WIRE_DC_VOLTAGE\x10\xea}\x12;\n6CHANNEL_INT32_AI_MEASUREMENT_TYPE_VELOCITY_IEPE_SENSOR\x10\xde|\x12\x33\n.CHANNEL_INT32_AI_MEASUREMENT_TYPE_FORCE_BRIDGE\x10\x9b|\x12\x38\n3CHANNEL_INT32_AI_MEASUREMENT_TYPE_FORCE_IEPE_SENSOR\x10\x97|\x12\x36\n1CHANNEL_INT32_AI_MEASUREMENT_TYPE_PRESSURE_BRIDGE\x10\x9e|\x12@\n;CHANNEL_INT32_AI_MEASUREMENT_TYPE_SOUND_PRESSURE_MICROPHONE\x10\xf2P\x12\x34\n/CHANNEL_INT32_AI_MEASUREMENT_TYPE_TORQUE_BRIDGE\x10\xa1|\x12\x32\n-CHANNEL_INT32_AI_MEASUREMENT_TYPE_TEDS_SENSOR\x10\xf3\x61\x12-\n(CHANNEL_INT32_AI_MEASUREMENT_TYPE_CHARGE\x10\xe9}\x12,\n\'CHANNEL_INT32_AI_MEASUREMENT_TYPE_POWER\x10\xc9~\x12\x37\n2CHANNEL_INT32_AI_MEASUREMENT_TYPE_CALCULATED_POWER\x10\xcc~\x12\x35\n0CHANNEL_INT32_AO_IDLE_OUTPUT_BEHAVIOR_ZERO_VOLTS\x10\xee\x61\x12\x39\n4CHANNEL_INT32_AO_IDLE_OUTPUT_BEHAVIOR_HIGH_IMPEDANCE\x10\xef\x61\x12\x42\n=CHANNEL_INT32_AO_IDLE_OUTPUT_BEHAVIOR_MAINTAIN_EXISTING_VALUE\x10\xf0\x61\x12\x31\n,CHANNEL_INT32_AO_OUTPUT_CHANNEL_TYPE_VOLTAGE\x10\xd2P\x12\x31\n,CHANNEL_INT32_AO_OUTPUT_CHANNEL_TYPE_CURRENT\x10\x96O\x12\x32\n-CHANNEL_INT32_AO_OUTPUT_CHANNEL_TYPE_FUNC_GEN\x10\x9es\x12\x45\n@CHANNEL_INT32_ACCEL_CHARGE_SENSITIVITY_UNITS_PICO_COULOMBS_PER_G\x10\xe3}\x12]\nXCHANNEL_INT32_ACCEL_CHARGE_SENSITIVITY_UNITS_PICO_COULOMBS_PER_METERS_PER_SECOND_SQUARED\x10\xe4}\x12]\nXCHANNEL_INT32_ACCEL_CHARGE_SENSITIVITY_UNITS_PICO_COULOMBS_PER_INCHES_PER_SECOND_SQUARED\x10\xe5}\x12\x39\n4CHANNEL_INT32_ACCEL_SENSITIVITY_UNITS1_M_VOLTS_PER_G\x10\xdd\x61\x12\x37\n2CHANNEL_INT32_ACCEL_SENSITIVITY_UNITS1_VOLTS_PER_G\x10\xde\x61\x12,\n\'CHANNEL_INT32_ACCEL_UNITS2_ACCEL_UNIT_G\x10\xcaO\x12\x39\n4CHANNEL_INT32_ACCEL_UNITS2_METERS_PER_SECOND_SQUARED\x10\xb6\x61\x12\x39\n4CHANNEL_INT32_ACCEL_UNITS2_INCHES_PER_SECOND_SQUARED\x10\xb7\x61\x12\x31\n,CHANNEL_INT32_ACCEL_UNITS2_FROM_CUSTOM_SCALE\x10\xd1N\x12\'\n\"CHANNEL_INT32_ANGLE_UNITS1_DEGREES\x10\xa2O\x12\'\n\"CHANNEL_INT32_ANGLE_UNITS1_RADIANS\x10\xa1P\x12\x31\n,CHANNEL_INT32_ANGLE_UNITS1_FROM_CUSTOM_SCALE\x10\xd1N\x12\'\n\"CHANNEL_INT32_ANGLE_UNITS2_DEGREES\x10\xa2O\x12\'\n\"CHANNEL_INT32_ANGLE_UNITS2_RADIANS\x10\xa1P\x12%\n CHANNEL_INT32_ANGLE_UNITS2_TICKS\x10\xc0P\x12\x31\n,CHANNEL_INT32_ANGLE_UNITS2_FROM_CUSTOM_SCALE\x10\xd1N\x12\'\n\"CHANNEL_INT32_ANGLE_UNITS3_DEGREES\x10\xa2O\x12\x31\n,CHANNEL_INT32_ANGLE_UNITS3_FROM_CUSTOM_SCALE\x10\xd1N\x12-\n(CHANNEL_INT32_ANGULAR_VELOCITY_UNITS_RPM\x10\xd0}\x12<\n7CHANNEL_INT32_ANGULAR_VELOCITY_UNITS_RADIANS_PER_SECOND\x10\xd1}\x12<\n7CHANNEL_INT32_ANGULAR_VELOCITY_UNITS_DEGREES_PER_SECOND\x10\xd2}\x12;\n6CHANNEL_INT32_ANGULAR_VELOCITY_UNITS_FROM_CUSTOM_SCALE\x10\xd1N\x12\'\n\"CHANNEL_INT32_AUTO_ZERO_TYPE1_NONE\x10\xf6O\x12\'\n\"CHANNEL_INT32_AUTO_ZERO_TYPE1_ONCE\x10\x84P\x12/\n*CHANNEL_INT32_AUTO_ZERO_TYPE1_EVERY_SAMPLE\x10\xb4O\x12\x34\n/CHANNEL_INT32_BRIDGE_CONFIGURATION1_FULL_BRIDGE\x10\xc6O\x12\x34\n/CHANNEL_INT32_BRIDGE_CONFIGURATION1_HALF_BRIDGE\x10\xcbO\x12\x37\n2CHANNEL_INT32_BRIDGE_CONFIGURATION1_QUARTER_BRIDGE\x10\x9eP\x12\x32\n-CHANNEL_INT32_BRIDGE_CONFIGURATION1_NO_BRIDGE\x10\xf4O\x12\x39\n4CHANNEL_INT32_BRIDGE_ELECTRICAL_UNITS_VOLTS_PER_VOLT\x10\x98|\x12;\n6CHANNEL_INT32_BRIDGE_ELECTRICAL_UNITS_M_VOLTS_PER_VOLT\x10\x99|\x12\x30\n+CHANNEL_INT32_BRIDGE_PHYSICAL_UNITS_NEWTONS\x10\x83|\x12/\n*CHANNEL_INT32_BRIDGE_PHYSICAL_UNITS_POUNDS\x10\x84|\x12\x37\n2CHANNEL_INT32_BRIDGE_PHYSICAL_UNITS_KILOGRAM_FORCE\x10\x85|\x12\x30\n+CHANNEL_INT32_BRIDGE_PHYSICAL_UNITS_PASCALS\x10\xe1N\x12?\n:CHANNEL_INT32_BRIDGE_PHYSICAL_UNITS_POUNDS_PER_SQUARE_INCH\x10\x87|\x12,\n\'CHANNEL_INT32_BRIDGE_PHYSICAL_UNITS_BAR\x10\x88|\x12\x36\n1CHANNEL_INT32_BRIDGE_PHYSICAL_UNITS_NEWTON_METERS\x10\x89|\x12\x34\n/CHANNEL_INT32_BRIDGE_PHYSICAL_UNITS_INCH_OUNCES\x10\x8a|\x12\x34\n/CHANNEL_INT32_BRIDGE_PHYSICAL_UNITS_INCH_POUNDS\x10\x8b|\x12\x34\n/CHANNEL_INT32_BRIDGE_PHYSICAL_UNITS_FOOT_POUNDS\x10\x8c|\x12\x33\n.CHANNEL_INT32_BRIDGE_SHUNT_CAL_SOURCE_BUILT_IN\x10\xd8O\x12\x38\n3CHANNEL_INT32_BRIDGE_SHUNT_CAL_SOURCE_USER_PROVIDED\x10\xb7O\x12.\n)CHANNEL_INT32_BRIDGE_UNITS_VOLTS_PER_VOLT\x10\x98|\x12\x30\n+CHANNEL_INT32_BRIDGE_UNITS_M_VOLTS_PER_VOLT\x10\x99|\x12\x31\n,CHANNEL_INT32_BRIDGE_UNITS_FROM_CUSTOM_SCALE\x10\xd1N\x12)\n$CHANNEL_INT32_BRIDGE_UNITS_FROM_TEDS\x10\xe4\x61\x12\x32\n-CHANNEL_INT32_CI_MEASUREMENT_TYPE_COUNT_EDGES\x10\x8dO\x12+\n&CHANNEL_INT32_CI_MEASUREMENT_TYPE_FREQ\x10\xc3O\x12-\n(CHANNEL_INT32_CI_MEASUREMENT_TYPE_PERIOD\x10\x90P\x12\x32\n-CHANNEL_INT32_CI_MEASUREMENT_TYPE_PULSE_WIDTH\x10\xf7P\x12\x32\n-CHANNEL_INT32_CI_MEASUREMENT_TYPE_SEMI_PERIOD\x10\xb1P\x12\x36\n1CHANNEL_INT32_CI_MEASUREMENT_TYPE_PULSE_FREQUENCY\x10\xf8{\x12\x31\n,CHANNEL_INT32_CI_MEASUREMENT_TYPE_PULSE_TIME\x10\xf9{\x12\x32\n-CHANNEL_INT32_CI_MEASUREMENT_TYPE_PULSE_TICKS\x10\xfa{\x12\x31\n,CHANNEL_INT32_CI_MEASUREMENT_TYPE_DUTY_CYCLE\x10\xc6}\x12;\n6CHANNEL_INT32_CI_MEASUREMENT_TYPE_POSITION_ANG_ENCODER\x10\xf8P\x12;\n6CHANNEL_INT32_CI_MEASUREMENT_TYPE_POSITION_LIN_ENCODER\x10\xf9P\x12;\n6CHANNEL_INT32_CI_MEASUREMENT_TYPE_VELOCITY_ANG_ENCODER\x10\xce}\x12;\n6CHANNEL_INT32_CI_MEASUREMENT_TYPE_VELOCITY_LIN_ENCODER\x10\xcf}\x12\x33\n.CHANNEL_INT32_CI_MEASUREMENT_TYPE_TWO_EDGE_SEP\x10\x9bP\x12\x34\n/CHANNEL_INT32_CI_MEASUREMENT_TYPE_GPS_TIMESTAMP\x10\xfaP\x12\'\n\"CHANNEL_INT32_CJC_SOURCE1_BUILT_IN\x10\xd8O\x12(\n#CHANNEL_INT32_CJC_SOURCE1_CONST_VAL\x10\x84O\x12#\n\x1e\x43HANNEL_INT32_CJC_SOURCE1_CHAN\x10\x81O\x12,\n\'CHANNEL_INT32_CO_OUTPUT_TYPE_PULSE_TIME\x10\x9dP\x12,\n\'CHANNEL_INT32_CO_OUTPUT_TYPE_PULSE_FREQ\x10\x87O\x12-\n(CHANNEL_INT32_CO_OUTPUT_TYPE_PULSE_TICKS\x10\x9cP\x12\"\n\x1d\x43HANNEL_INT32_CHANNEL_TYPE_AI\x10\xf4N\x12\"\n\x1d\x43HANNEL_INT32_CHANNEL_TYPE_AO\x10\xf6N\x12\"\n\x1d\x43HANNEL_INT32_CHANNEL_TYPE_DI\x10\xa7O\x12\"\n\x1d\x43HANNEL_INT32_CHANNEL_TYPE_DO\x10\xa9O\x12\"\n\x1d\x43HANNEL_INT32_CHANNEL_TYPE_CI\x10\x93O\x12\"\n\x1d\x43HANNEL_INT32_CHANNEL_TYPE_CO\x10\x94O\x12(\n#CHANNEL_INT32_CHARGE_UNITS_COULOMBS\x10\xe6}\x12-\n(CHANNEL_INT32_CHARGE_UNITS_PICO_COULOMBS\x10\xe7}\x12\x31\n,CHANNEL_INT32_CHARGE_UNITS_FROM_CUSTOM_SCALE\x10\xd1N\x12\x35\n0CHANNEL_INT32_CONSTRAINED_GEN_MODE_UNCONSTRAINED\x10\xf4r\x12\x37\n2CHANNEL_INT32_CONSTRAINED_GEN_MODE_FIXED_HIGH_FREQ\x10\xf5r\x12\x36\n1CHANNEL_INT32_CONSTRAINED_GEN_MODE_FIXED_LOW_FREQ\x10\xf6r\x12\x43\n>CHANNEL_INT32_CONSTRAINED_GEN_MODE_FIXED_50_PERCENT_DUTY_CYCLE\x10\xf7r\x12,\n\'CHANNEL_INT32_COUNT_DIRECTION1_COUNT_UP\x10\x90O\x12.\n)CHANNEL_INT32_COUNT_DIRECTION1_COUNT_DOWN\x10\x8cO\x12\x32\n-CHANNEL_INT32_COUNT_DIRECTION1_EXT_CONTROLLED\x10\xd6P\x12:\n5CHANNEL_INT32_COUNTER_FREQUENCY_METHOD_LOW_FREQ_1_CTR\x10\xf9N\x12;\n6CHANNEL_INT32_COUNTER_FREQUENCY_METHOD_HIGH_FREQ_2_CTR\x10\xadO\x12;\n6CHANNEL_INT32_COUNTER_FREQUENCY_METHOD_LARGE_RNG_2_CTR\x10\xddO\x12\x33\n.CHANNEL_INT32_COUNTER_FREQUENCY_METHOD_DYN_AVG\x10\xc1}\x12\x1f\n\x1a\x43HANNEL_INT32_COUPLING1_AC\x10\xbdN\x12\x1f\n\x1a\x43HANNEL_INT32_COUPLING1_DC\x10\xc2N\x12 \n\x1b\x43HANNEL_INT32_COUPLING1_GND\x10\xd2N\x12<\n7CHANNEL_INT32_CURRENT_SHUNT_RESISTOR_LOCATION1_INTERNAL\x10\xd8O\x12<\n7CHANNEL_INT32_CURRENT_SHUNT_RESISTOR_LOCATION1_EXTERNAL\x10\xb7O\x12&\n!CHANNEL_INT32_CURRENT_UNITS1_AMPS\x10\xe6P\x12\x33\n.CHANNEL_INT32_CURRENT_UNITS1_FROM_CUSTOM_SCALE\x10\xd1N\x12+\n&CHANNEL_INT32_CURRENT_UNITS1_FROM_TEDS\x10\xe4\x61\x12\x36\n1CHANNEL_INT32_DATA_JUSTIFICATION1_RIGHT_JUSTIFIED\x10\xa7P\x12\x35\n0CHANNEL_INT32_DATA_JUSTIFICATION1_LEFT_JUSTIFIED\x10\xe1O\x12.\n)CHANNEL_INT32_DATA_TRANSFER_MECHANISM_DMA\x10\xc6N\x12\x35\n0CHANNEL_INT32_DATA_TRANSFER_MECHANISM_INTERRUPTS\x10\xdcO\x12\x38\n3CHANNEL_INT32_DATA_TRANSFER_MECHANISM_PROGRAMMED_IO\x10\x98P\x12\x33\n.CHANNEL_INT32_DATA_TRANSFER_MECHANISM_US_BBULK\x10\xae\x62\x12\x32\n-CHANNEL_INT32_DIGITAL_DRIVE_TYPE_ACTIVE_DRIVE\x10\x9d\x62\x12\x34\n/CHANNEL_INT32_DIGITAL_DRIVE_TYPE_OPEN_COLLECTOR\x10\x9e\x62\x12*\n%CHANNEL_INT32_DIGITAL_LINE_STATE_HIGH\x10\xd0O\x12)\n$CHANNEL_INT32_DIGITAL_LINE_STATE_LOW\x10\xe6O\x12.\n)CHANNEL_INT32_DIGITAL_LINE_STATE_TRISTATE\x10\xc6P\x12/\n*CHANNEL_INT32_DIGITAL_LINE_STATE_NO_CHANGE\x10\xb0O\x12/\n*CHANNEL_INT32_DIGITAL_WIDTH_UNITS4_SECONDS\x10\xfcP\x12:\n5CHANNEL_INT32_DIGITAL_WIDTH_UNITS4_SAMPLE_CLK_PERIODS\x10\xaeP\x12L\nGCHANNEL_INT32_EDDY_CURRENT_PROX_PROBE_SENSITIVITY_UNITS_M_VOLTS_PER_MIL\x10\xf4s\x12J\nECHANNEL_INT32_EDDY_CURRENT_PROX_PROBE_SENSITIVITY_UNITS_VOLTS_PER_MIL\x10\xf5s\x12S\nNCHANNEL_INT32_EDDY_CURRENT_PROX_PROBE_SENSITIVITY_UNITS_M_VOLTS_PER_MILLIMETER\x10\xf6s\x12Q\nLCHANNEL_INT32_EDDY_CURRENT_PROX_PROBE_SENSITIVITY_UNITS_VOLTS_PER_MILLIMETER\x10\xf7s\x12O\nJCHANNEL_INT32_EDDY_CURRENT_PROX_PROBE_SENSITIVITY_UNITS_M_VOLTS_PER_MICRON\x10\xf8s\x12\x1f\n\x1a\x43HANNEL_INT32_EDGE1_RISING\x10\xa8P\x12 \n\x1b\x43HANNEL_INT32_EDGE1_FALLING\x10\xbbO\x12#\n\x1e\x43HANNEL_INT32_ENCODER_TYPE2_X1\x10\xeaN\x12#\n\x1e\x43HANNEL_INT32_ENCODER_TYPE2_X2\x10\xebN\x12#\n\x1e\x43HANNEL_INT32_ENCODER_TYPE2_X4\x10\xecN\x12\x33\n.CHANNEL_INT32_ENCODER_TYPE2_TWO_PULSE_COUNTING\x10\xc9P\x12\x37\n2CHANNEL_INT32_ENCODER_Z_INDEX_PHASE1_A_HIGH_B_HIGH\x10\xb8N\x12\x36\n1CHANNEL_INT32_ENCODER_Z_INDEX_PHASE1_A_HIGH_B_LOW\x10\xb9N\x12\x36\n1CHANNEL_INT32_ENCODER_Z_INDEX_PHASE1_A_LOW_B_HIGH\x10\xbaN\x12\x35\n0CHANNEL_INT32_ENCODER_Z_INDEX_PHASE1_A_LOW_B_LOW\x10\xbbN\x12)\n$CHANNEL_INT32_EXCITATION_D_COR_AC_DC\x10\xc2N\x12)\n$CHANNEL_INT32_EXCITATION_D_COR_AC_AC\x10\xbdN\x12\x45\n@CHANNEL_INT32_EXCITATION_IDLE_OUTPUT_BEHAVIOR_ZERO_VOLTS_OR_AMPS\x10\xee\x61\x12J\nECHANNEL_INT32_EXCITATION_IDLE_OUTPUT_BEHAVIOR_MAINTAIN_EXISTING_VALUE\x10\xf0\x61\x12-\n(CHANNEL_INT32_EXCITATION_SOURCE_INTERNAL\x10\xd8O\x12-\n(CHANNEL_INT32_EXCITATION_SOURCE_EXTERNAL\x10\xb7O\x12)\n$CHANNEL_INT32_EXCITATION_SOURCE_NONE\x10\xf6O\x12\x38\n3CHANNEL_INT32_EXCITATION_VOLTAGE_OR_CURRENT_VOLTAGE\x10\xd2P\x12\x38\n3CHANNEL_INT32_EXCITATION_VOLTAGE_OR_CURRENT_CURRENT\x10\x96O\x12\x37\n2CHANNEL_INT32_FILTER_RESPONSE_CONSTANT_GROUP_DELAY\x10\xcb}\x12.\n)CHANNEL_INT32_FILTER_RESPONSE_BUTTERWORTH\x10\xcc}\x12-\n(CHANNEL_INT32_FILTER_RESPONSE_ELLIPTICAL\x10\xcd}\x12\x33\n.CHANNEL_INT32_FILTER_RESPONSE_HARDWARE_DEFINED\x10\xcfO\x12(\n#CHANNEL_INT32_FILTER_RESPONSE1_COMB\x10\x98~\x12*\n%CHANNEL_INT32_FILTER_RESPONSE1_BESSEL\x10\x99~\x12-\n(CHANNEL_INT32_FILTER_RESPONSE1_BRICKWALL\x10\x9b~\x12/\n*CHANNEL_INT32_FILTER_RESPONSE1_BUTTERWORTH\x10\xcc}\x12\x30\n+CHANNEL_INT32_FILTER_TYPE1_HARDWARE_DEFINED\x10\xcfO\x12\'\n\"CHANNEL_INT32_FILTER_TYPE2_LOWPASS\x10\xc7}\x12(\n#CHANNEL_INT32_FILTER_TYPE2_HIGHPASS\x10\xc8}\x12(\n#CHANNEL_INT32_FILTER_TYPE2_BANDPASS\x10\xc9}\x12%\n CHANNEL_INT32_FILTER_TYPE2_NOTCH\x10\xca}\x12&\n!CHANNEL_INT32_FILTER_TYPE2_CUSTOM\x10\x99O\x12I\nDCHANNEL_INT32_FORCE_IEPE_SENSOR_SENSITIVITY_UNITS_M_VOLTS_PER_NEWTON\x10\x93|\x12H\nCCHANNEL_INT32_FORCE_IEPE_SENSOR_SENSITIVITY_UNITS_M_VOLTS_PER_POUND\x10\x94|\x12&\n!CHANNEL_INT32_FORCE_UNITS_NEWTONS\x10\x83|\x12%\n CHANNEL_INT32_FORCE_UNITS_POUNDS\x10\x84|\x12-\n(CHANNEL_INT32_FORCE_UNITS_KILOGRAM_FORCE\x10\x85|\x12\x30\n+CHANNEL_INT32_FORCE_UNITS_FROM_CUSTOM_SCALE\x10\xd1N\x12%\n CHANNEL_INT32_FREQUENCY_UNITS_HZ\x10\x85Q\x12\x34\n/CHANNEL_INT32_FREQUENCY_UNITS_FROM_CUSTOM_SCALE\x10\xd1N\x12&\n!CHANNEL_INT32_FREQUENCY_UNITS2_HZ\x10\x85Q\x12&\n!CHANNEL_INT32_FREQUENCY_UNITS3_HZ\x10\x85Q\x12)\n$CHANNEL_INT32_FREQUENCY_UNITS3_TICKS\x10\xc0P\x12\x35\n0CHANNEL_INT32_FREQUENCY_UNITS3_FROM_CUSTOM_SCALE\x10\xd1N\x12%\n CHANNEL_INT32_FUNC_GEN_TYPE_SINE\x10\x9fs\x12)\n$CHANNEL_INT32_FUNC_GEN_TYPE_TRIANGLE\x10\xa0s\x12\'\n\"CHANNEL_INT32_FUNC_GEN_TYPE_SQUARE\x10\xa1s\x12)\n$CHANNEL_INT32_FUNC_GEN_TYPE_SAWTOOTH\x10\xa2s\x12)\n$CHANNEL_INT32_GPS_SIGNAL_TYPE1_IRIGB\x10\xd6N\x12\'\n\"CHANNEL_INT32_GPS_SIGNAL_TYPE1_PPS\x10\xe0N\x12(\n#CHANNEL_INT32_GPS_SIGNAL_TYPE1_NONE\x10\xf6O\x12O\nJCHANNEL_INT32_INPUT_DATA_TRANSFER_CONDITION_ON_BRD_MEM_MORE_THAN_HALF_FULL\x10\xfdO\x12\x45\n@CHANNEL_INT32_INPUT_DATA_TRANSFER_CONDITION_ON_BRD_MEM_NOT_EMPTY\x10\x81P\x12K\nFCHANNEL_INT32_INPUT_DATA_TRANSFER_CONDITION_ONBRD_MEM_CUSTOM_THRESHOLD\x10\xa1\x62\x12\x42\n=CHANNEL_INT32_INPUT_DATA_TRANSFER_CONDITION_WHEN_ACQ_COMPLETE\x10\x82\x62\x12%\n CHANNEL_INT32_INPUT_TERM_CFG_RSE\x10\xe3N\x12&\n!CHANNEL_INT32_INPUT_TERM_CFG_NRSE\x10\xdeN\x12&\n!CHANNEL_INT32_INPUT_TERM_CFG_DIFF\x10\xfaN\x12-\n(CHANNEL_INT32_INPUT_TERM_CFG_PSEUDO_DIFF\x10\xf1\x61\x12\'\n\"CHANNEL_INT32_INPUT_TERM_CFG2_DIFF\x10\xfaN\x12&\n!CHANNEL_INT32_INPUT_TERM_CFG2_RSE\x10\xe3N\x12J\nECHANNEL_INT32_LVDT_SENSITIVITY_UNITS1_M_VOLTS_PER_VOLT_PER_MILLIMETER\x10\xda\x61\x12J\nECHANNEL_INT32_LVDT_SENSITIVITY_UNITS1_M_VOLTS_PER_VOLT_PER_MILLI_INCH\x10\xd9\x61\x12\'\n\"CHANNEL_INT32_LENGTH_UNITS2_METERS\x10\xebO\x12\'\n\"CHANNEL_INT32_LENGTH_UNITS2_INCHES\x10\x8bQ\x12\x32\n-CHANNEL_INT32_LENGTH_UNITS2_FROM_CUSTOM_SCALE\x10\xd1N\x12\'\n\"CHANNEL_INT32_LENGTH_UNITS3_METERS\x10\xebO\x12\'\n\"CHANNEL_INT32_LENGTH_UNITS3_INCHES\x10\x8bQ\x12&\n!CHANNEL_INT32_LENGTH_UNITS3_TICKS\x10\xc0P\x12\x32\n-CHANNEL_INT32_LENGTH_UNITS3_FROM_CUSTOM_SCALE\x10\xd1N\x12\'\n\"CHANNEL_INT32_LENGTH_UNITS4_METERS\x10\xebO\x12%\n CHANNEL_INT32_LENGTH_UNITS4_FEET\x10\x8cQ\x12\x32\n-CHANNEL_INT32_LENGTH_UNITS4_FROM_CUSTOM_SCALE\x10\xd1N\x12\x1e\n\x19\x43HANNEL_INT32_LEVEL1_HIGH\x10\xd0O\x12\x1d\n\x18\x43HANNEL_INT32_LEVEL1_LOW\x10\xe6O\x12*\n%CHANNEL_INT32_LOGIC_FAMILY_1POINT_8_V\x10\xb8~\x12*\n%CHANNEL_INT32_LOGIC_FAMILY_2POINT_5_V\x10\x9cr\x12*\n%CHANNEL_INT32_LOGIC_FAMILY_3POINT_3_V\x10\x9dr\x12#\n\x1e\x43HANNEL_INT32_LOGIC_FAMILY_5_V\x10\x9br\x12\x39\n4CHANNEL_INT32_LOGIC_LVL_BEHAVIOR_LOGIC_LEVEL_PULL_UP\x10\xc0}\x12*\n%CHANNEL_INT32_LOGIC_LVL_BEHAVIOR_NONE\x10\xf6O\x12%\n CHANNEL_INT32_MODULATION_TYPE_AM\x10\xa4s\x12%\n CHANNEL_INT32_MODULATION_TYPE_FM\x10\xa5s\x12\'\n\"CHANNEL_INT32_MODULATION_TYPE_NONE\x10\xf6O\x12\x30\n+CHANNEL_INT32_NAV_MEASUREMENT_TYPE_ALTITUDE\x10\xfd|\x12\x31\n,CHANNEL_INT32_NAV_MEASUREMENT_TYPE_LONGITUDE\x10\xfe|\x12\x30\n+CHANNEL_INT32_NAV_MEASUREMENT_TYPE_LATITUDE\x10\xff|\x12\x39\n4CHANNEL_INT32_NAV_MEASUREMENT_TYPE_SPEED_OVER_GROUND\x10\x80}\x12-\n(CHANNEL_INT32_NAV_MEASUREMENT_TYPE_TRACK\x10\x81}\x12\x31\n,CHANNEL_INT32_NAV_MEASUREMENT_TYPE_TIMESTAMP\x10\xf2|\x12\x35\n0CHANNEL_INT32_NAV_MEASUREMENT_TYPE_VERT_VELOCITY\x10\x83}\x12\x42\n=CHANNEL_INT32_OUTPUT_DATA_TRANSFER_CONDITION_ON_BRD_MEM_EMPTY\x10\xfbO\x12N\nICHANNEL_INT32_OUTPUT_DATA_TRANSFER_CONDITION_ON_BRD_MEM_HALF_FULL_OR_LESS\x10\xffO\x12\x45\n@CHANNEL_INT32_OUTPUT_DATA_TRANSFER_CONDITION_ON_BRD_MEM_NOT_FULL\x10\x82P\x12&\n!CHANNEL_INT32_OUTPUT_TERM_CFG_RSE\x10\xe3N\x12\'\n\"CHANNEL_INT32_OUTPUT_TERM_CFG_DIFF\x10\xfaN\x12.\n)CHANNEL_INT32_OUTPUT_TERM_CFG_PSEUDO_DIFF\x10\xf1\x61\x12=\n8CHANNEL_INT32_POWER_IDLE_OUTPUT_BEHAVIOR_OUTPUT_DISABLED\x10\x8fy\x12\x45\n@CHANNEL_INT32_POWER_IDLE_OUTPUT_BEHAVIOR_MAINTAIN_EXISTING_VALUE\x10\xf0\x61\x12\x36\n1CHANNEL_INT32_POWER_OUTPUT_STATE_CONSTANT_VOLTAGE\x10\x8cy\x12\x36\n1CHANNEL_INT32_POWER_OUTPUT_STATE_CONSTANT_CURRENT\x10\x8dy\x12\x31\n,CHANNEL_INT32_POWER_OUTPUT_STATE_OVERVOLTAGE\x10\x8ey\x12\x35\n0CHANNEL_INT32_POWER_OUTPUT_STATE_OUTPUT_DISABLED\x10\x8fy\x12)\n$CHANNEL_INT32_PRESSURE_UNITS_PASCALS\x10\xe1N\x12\x38\n3CHANNEL_INT32_PRESSURE_UNITS_POUNDS_PER_SQUARE_INCH\x10\x87|\x12%\n CHANNEL_INT32_PRESSURE_UNITS_BAR\x10\x88|\x12\x33\n.CHANNEL_INT32_PRESSURE_UNITS_FROM_CUSTOM_SCALE\x10\xd1N\x12$\n\x1f\x43HANNEL_INT32_RTD_TYPE1_PT_3750\x10\xc1\x61\x12$\n\x1f\x43HANNEL_INT32_RTD_TYPE1_PT_3851\x10\xd7N\x12$\n\x1f\x43HANNEL_INT32_RTD_TYPE1_PT_3911\x10\xc2\x61\x12$\n\x1f\x43HANNEL_INT32_RTD_TYPE1_PT_3916\x10\xd5N\x12$\n\x1f\x43HANNEL_INT32_RTD_TYPE1_PT_3920\x10\xc5N\x12$\n\x1f\x43HANNEL_INT32_RTD_TYPE1_PT_3928\x10\xc3\x61\x12#\n\x1e\x43HANNEL_INT32_RTD_TYPE1_CUSTOM\x10\x99O\x12\x46\nACHANNEL_INT32_RVDT_SENSITIVITY_UNITS1_M_VOLTS_PER_VOLT_PER_DEGREE\x10\xdb\x61\x12\x46\nACHANNEL_INT32_RVDT_SENSITIVITY_UNITS1_M_VOLTS_PER_VOLT_PER_RADIAN\x10\xdc\x61\x12\x31\n,CHANNEL_INT32_RAW_DATA_COMPRESSION_TYPE_NONE\x10\xf6O\x12=\n8CHANNEL_INT32_RAW_DATA_COMPRESSION_TYPE_LOSSLESS_PACKING\x10\x8b\x62\x12>\n9CHANNEL_INT32_RAW_DATA_COMPRESSION_TYPE_LOSSY_LSB_REMOVAL\x10\x8c\x62\x12\x31\n-CHANNEL_INT32_RESISTANCE_CONFIGURATION_2_WIRE\x10\x02\x12\x31\n-CHANNEL_INT32_RESISTANCE_CONFIGURATION_3_WIRE\x10\x03\x12\x31\n-CHANNEL_INT32_RESISTANCE_CONFIGURATION_4_WIRE\x10\x04\x12)\n$CHANNEL_INT32_RESISTANCE_UNITS1_OHMS\x10\x90Q\x12\x36\n1CHANNEL_INT32_RESISTANCE_UNITS1_FROM_CUSTOM_SCALE\x10\xd1N\x12.\n)CHANNEL_INT32_RESISTANCE_UNITS1_FROM_TEDS\x10\xe4\x61\x12(\n#CHANNEL_INT32_RESOLUTION_TYPE1_BITS\x10\xfdN\x12:\n5CHANNEL_INT32_SAMP_CLK_OVERRUN_BEHAVIOR_REPEATED_DATA\x10\xbe}\x12;\n6CHANNEL_INT32_SAMP_CLK_OVERRUN_BEHAVIOR_SENTINEL_VALUE\x10\xbf}\x12V\nQCHANNEL_INT32_SAMPLE_CLOCK_ACTIVE_OR_INACTIVE_EDGE_SELECTION_SAMP_CLK_ACTIVE_EDGE\x10\x99r\x12X\nSCHANNEL_INT32_SAMPLE_CLOCK_ACTIVE_OR_INACTIVE_EDGE_SELECTION_SAMP_CLK_INACTIVE_EDGE\x10\x9ar\x12)\n$CHANNEL_INT32_SCALE_TYPE2_POLYNOMIAL\x10\xd1Q\x12$\n\x1f\x43HANNEL_INT32_SCALE_TYPE2_TABLE\x10\xd2Q\x12)\n$CHANNEL_INT32_SCALE_TYPE3_POLYNOMIAL\x10\xd1Q\x12$\n\x1f\x43HANNEL_INT32_SCALE_TYPE3_TABLE\x10\xd2Q\x12#\n\x1e\x43HANNEL_INT32_SCALE_TYPE3_NONE\x10\xf6O\x12#\n\x1e\x43HANNEL_INT32_SCALE_TYPE4_NONE\x10\xf6O\x12/\n*CHANNEL_INT32_SCALE_TYPE4_TWO_POINT_LINEAR\x10\x9a|\x12$\n\x1f\x43HANNEL_INT32_SCALE_TYPE4_TABLE\x10\xd2Q\x12)\n$CHANNEL_INT32_SCALE_TYPE4_POLYNOMIAL\x10\xd1Q\x12\x1e\n\x19\x43HANNEL_INT32_SENSE_LOCAL\x10\xdf}\x12\x1f\n\x1a\x43HANNEL_INT32_SENSE_REMOTE\x10\xe0}\x12-\n(CHANNEL_INT32_SENSOR_POWER_CFG_NO_CHANGE\x10\xb0O\x12+\n&CHANNEL_INT32_SENSOR_POWER_CFG_ENABLED\x10\x91~\x12,\n\'CHANNEL_INT32_SENSOR_POWER_CFG_DISABLED\x10\x92~\x12\'\n\"CHANNEL_INT32_SENSOR_POWER_TYPE_DC\x10\xc2N\x12\'\n\"CHANNEL_INT32_SENSOR_POWER_TYPE_AC\x10\xbdN\x12/\n*CHANNEL_INT32_SENSOR_POWER_TYPE_BIPOLAR_DC\x10\x93~\x12%\n CHANNEL_INT32_SHUNT_CAL_SELECT_A\x10\xe1\x61\x12%\n CHANNEL_INT32_SHUNT_CAL_SELECT_B\x10\xe2\x61\x12+\n&CHANNEL_INT32_SHUNT_CAL_SELECT_A_AND_B\x10\xe3\x61\x12\x30\n+CHANNEL_INT32_SOUND_PRESSURE_UNITS1_PASCALS\x10\xe1N\x12:\n5CHANNEL_INT32_SOUND_PRESSURE_UNITS1_FROM_CUSTOM_SCALE\x10\xd1N\x12,\n\'CHANNEL_INT32_SOURCE_SELECTION_INTERNAL\x10\xd8O\x12,\n\'CHANNEL_INT32_SOURCE_SELECTION_EXTERNAL\x10\xb7O\x12\x39\n4CHANNEL_INT32_STRAIN_GAGE_BRIDGE_TYPE1_FULL_BRIDGE_I\x10\xc7O\x12:\n5CHANNEL_INT32_STRAIN_GAGE_BRIDGE_TYPE1_FULL_BRIDGE_II\x10\xc8O\x12;\n6CHANNEL_INT32_STRAIN_GAGE_BRIDGE_TYPE1_FULL_BRIDGE_III\x10\xc9O\x12\x39\n4CHANNEL_INT32_STRAIN_GAGE_BRIDGE_TYPE1_HALF_BRIDGE_I\x10\xccO\x12:\n5CHANNEL_INT32_STRAIN_GAGE_BRIDGE_TYPE1_HALF_BRIDGE_II\x10\xcdO\x12<\n7CHANNEL_INT32_STRAIN_GAGE_BRIDGE_TYPE1_QUARTER_BRIDGE_I\x10\x9fP\x12=\n8CHANNEL_INT32_STRAIN_GAGE_BRIDGE_TYPE1_QUARTER_BRIDGE_II\x10\xa0P\x12J\nECHANNEL_INT32_STRAIN_GAGE_ROSETTE_MEASUREMENT_TYPE_PRINCIPAL_STRAIN_1\x10\xe3|\x12J\nECHANNEL_INT32_STRAIN_GAGE_ROSETTE_MEASUREMENT_TYPE_PRINCIPAL_STRAIN_2\x10\xe4|\x12N\nICHANNEL_INT32_STRAIN_GAGE_ROSETTE_MEASUREMENT_TYPE_PRINCIPAL_STRAIN_ANGLE\x10\xe5|\x12J\nECHANNEL_INT32_STRAIN_GAGE_ROSETTE_MEASUREMENT_TYPE_CARTESIAN_STRAIN_X\x10\xe6|\x12J\nECHANNEL_INT32_STRAIN_GAGE_ROSETTE_MEASUREMENT_TYPE_CARTESIAN_STRAIN_Y\x10\xe7|\x12Q\nLCHANNEL_INT32_STRAIN_GAGE_ROSETTE_MEASUREMENT_TYPE_CARTESIAN_SHEAR_STRAIN_XY\x10\xe8|\x12H\nCCHANNEL_INT32_STRAIN_GAGE_ROSETTE_MEASUREMENT_TYPE_MAX_SHEAR_STRAIN\x10\xe9|\x12N\nICHANNEL_INT32_STRAIN_GAGE_ROSETTE_MEASUREMENT_TYPE_MAX_SHEAR_STRAIN_ANGLE\x10\xea|\x12?\n:CHANNEL_INT32_STRAIN_GAGE_ROSETTE_TYPE_RECTANGULAR_ROSETTE\x10\xe0|\x12\x39\n4CHANNEL_INT32_STRAIN_GAGE_ROSETTE_TYPE_DELTA_ROSETTE\x10\xe1|\x12\x37\n2CHANNEL_INT32_STRAIN_GAGE_ROSETTE_TYPE_TEE_ROSETTE\x10\xe2|\x12\'\n\"CHANNEL_INT32_STRAIN_UNITS1_STRAIN\x10\xbbP\x12\x32\n-CHANNEL_INT32_STRAIN_UNITS1_FROM_CUSTOM_SCALE\x10\xd1N\x12;\n6CHANNEL_INT32_SYNC_UNLOCK_BEHAVIOR_STOP_TASK_AND_ERROR\x10\xf6{\x12=\n8CHANNEL_INT32_SYNC_UNLOCK_BEHAVIOR_IGNORE_LOST_SYNC_LOCK\x10\x81~\x12+\n&CHANNEL_INT32_TEMPERATURE_UNITS1_DEG_C\x10\x9fO\x12+\n&CHANNEL_INT32_TEMPERATURE_UNITS1_DEG_F\x10\xa0O\x12-\n(CHANNEL_INT32_TEMPERATURE_UNITS1_KELVINS\x10\xd5P\x12+\n&CHANNEL_INT32_TEMPERATURE_UNITS1_DEG_R\x10\xa1O\x12\x37\n2CHANNEL_INT32_TEMPERATURE_UNITS1_FROM_CUSTOM_SCALE\x10\xd1N\x12/\n*CHANNEL_INT32_THERMOCOUPLE_TYPE1_J_TYPE_TC\x10\xd8N\x12/\n*CHANNEL_INT32_THERMOCOUPLE_TYPE1_K_TYPE_TC\x10\xd9N\x12/\n*CHANNEL_INT32_THERMOCOUPLE_TYPE1_N_TYPE_TC\x10\xddN\x12/\n*CHANNEL_INT32_THERMOCOUPLE_TYPE1_R_TYPE_TC\x10\xe2N\x12/\n*CHANNEL_INT32_THERMOCOUPLE_TYPE1_S_TYPE_TC\x10\xe5N\x12/\n*CHANNEL_INT32_THERMOCOUPLE_TYPE1_T_TYPE_TC\x10\xe6N\x12/\n*CHANNEL_INT32_THERMOCOUPLE_TYPE1_B_TYPE_TC\x10\xbfN\x12/\n*CHANNEL_INT32_THERMOCOUPLE_TYPE1_E_TYPE_TC\x10\xc7N\x12%\n CHANNEL_INT32_TIME_UNITS_SECONDS\x10\xfcP\x12/\n*CHANNEL_INT32_TIME_UNITS_FROM_CUSTOM_SCALE\x10\xd1N\x12&\n!CHANNEL_INT32_TIME_UNITS2_SECONDS\x10\xfcP\x12&\n!CHANNEL_INT32_TIME_UNITS3_SECONDS\x10\xfcP\x12$\n\x1f\x43HANNEL_INT32_TIME_UNITS3_TICKS\x10\xc0P\x12\x30\n+CHANNEL_INT32_TIME_UNITS3_FROM_CUSTOM_SCALE\x10\xd1N\x12 \n\x1b\x43HANNEL_INT32_TIMESCALE_TAI\x10\xf4|\x12 \n\x1b\x43HANNEL_INT32_TIMESCALE_UTC\x10\xf3|\x12-\n(CHANNEL_INT32_TORQUE_UNITS_NEWTON_METERS\x10\x89|\x12+\n&CHANNEL_INT32_TORQUE_UNITS_INCH_OUNCES\x10\x8a|\x12+\n&CHANNEL_INT32_TORQUE_UNITS_INCH_POUNDS\x10\x8b|\x12+\n&CHANNEL_INT32_TORQUE_UNITS_FOOT_POUNDS\x10\x8c|\x12\x31\n,CHANNEL_INT32_TORQUE_UNITS_FROM_CUSTOM_SCALE\x10\xd1N\x12^\nYCHANNEL_INT32_VELOCITY_IEPE_SENSOR_SENSITIVITY_UNITS_MILLIVOLTS_PER_MILLIMETER_PER_SECOND\x10\xdb|\x12Y\nTCHANNEL_INT32_VELOCITY_IEPE_SENSOR_SENSITIVITY_UNITS_MILLI_VOLTS_PER_INCH_PER_SECOND\x10\xdc|\x12\x33\n.CHANNEL_INT32_VELOCITY_UNITS_METERS_PER_SECOND\x10\xd7|\x12\x33\n.CHANNEL_INT32_VELOCITY_UNITS_INCHES_PER_SECOND\x10\xd8|\x12\x33\n.CHANNEL_INT32_VELOCITY_UNITS_FROM_CUSTOM_SCALE\x10\xd1N\x12\x34\n/CHANNEL_INT32_VELOCITY_UNITS2_METERS_PER_SECOND\x10\xd7|\x12\x36\n1CHANNEL_INT32_VELOCITY_UNITS2_KILOMETERS_PER_HOUR\x10\x87}\x12\x32\n-CHANNEL_INT32_VELOCITY_UNITS2_FEET_PER_SECOND\x10\x88}\x12\x31\n,CHANNEL_INT32_VELOCITY_UNITS2_MILES_PER_HOUR\x10\x89}\x12(\n#CHANNEL_INT32_VELOCITY_UNITS2_KNOTS\x10\x8a}\x12\x34\n/CHANNEL_INT32_VELOCITY_UNITS2_FROM_CUSTOM_SCALE\x10\xd1N\x12\'\n\"CHANNEL_INT32_VOLTAGE_UNITS1_VOLTS\x10\xecP\x12\x33\n.CHANNEL_INT32_VOLTAGE_UNITS1_FROM_CUSTOM_SCALE\x10\xd1N\x12+\n&CHANNEL_INT32_VOLTAGE_UNITS1_FROM_TEDS\x10\xe4\x61\x12\'\n\"CHANNEL_INT32_VOLTAGE_UNITS2_VOLTS\x10\xecP\x12\x33\n.CHANNEL_INT32_VOLTAGE_UNITS2_FROM_CUSTOM_SCALE\x10\xd1N\x1a\x02\x10\x01*\xb9\x32\n\x1a\x44\x65viceInt32AttributeValues\x12\x1c\n\x18\x44\x45VICE_INT32_UNSPECIFIED\x10\x00\x12-\n(DEVICE_INT32_AI_MEASUREMENT_TYPE_VOLTAGE\x10\xd2P\x12\x31\n,DEVICE_INT32_AI_MEASUREMENT_TYPE_VOLTAGE_RMS\x10\xeeP\x12-\n(DEVICE_INT32_AI_MEASUREMENT_TYPE_CURRENT\x10\x96O\x12\x31\n,DEVICE_INT32_AI_MEASUREMENT_TYPE_CURRENT_RMS\x10\xefP\x12\x44\n?DEVICE_INT32_AI_MEASUREMENT_TYPE_VOLTAGE_CUSTOM_WITH_EXCITATION\x10\xd3P\x12,\n\'DEVICE_INT32_AI_MEASUREMENT_TYPE_BRIDGE\x10\xa4|\x12\x32\n-DEVICE_INT32_AI_MEASUREMENT_TYPE_FREQ_VOLTAGE\x10\xc5O\x12\x30\n+DEVICE_INT32_AI_MEASUREMENT_TYPE_RESISTANCE\x10\xa6P\x12-\n(DEVICE_INT32_AI_MEASUREMENT_TYPE_TEMP_TC\x10\xbfP\x12\x32\n-DEVICE_INT32_AI_MEASUREMENT_TYPE_TEMP_THRMSTR\x10\xbeP\x12.\n)DEVICE_INT32_AI_MEASUREMENT_TYPE_TEMP_RTD\x10\xbdP\x12:\n5DEVICE_INT32_AI_MEASUREMENT_TYPE_TEMP_BUILT_IN_SENSOR\x10\xc7P\x12\x31\n,DEVICE_INT32_AI_MEASUREMENT_TYPE_STRAIN_GAGE\x10\xbcP\x12\x39\n4DEVICE_INT32_AI_MEASUREMENT_TYPE_ROSETTE_STRAIN_GAGE\x10\xec|\x12\x33\n.DEVICE_INT32_AI_MEASUREMENT_TYPE_POSITION_LVDT\x10\xf0P\x12\x33\n.DEVICE_INT32_AI_MEASUREMENT_TYPE_POSITION_RVDT\x10\xf1P\x12K\nFDEVICE_INT32_AI_MEASUREMENT_TYPE_POSITION_EDDY_CURRENT_PROXIMITY_PROBE\x10\xf3s\x12\x33\n.DEVICE_INT32_AI_MEASUREMENT_TYPE_ACCELEROMETER\x10\xf4P\x12\x39\n4DEVICE_INT32_AI_MEASUREMENT_TYPE_ACCELERATION_CHARGE\x10\xe8}\x12\x44\n?DEVICE_INT32_AI_MEASUREMENT_TYPE_ACCELERATION_4_WIRE_DC_VOLTAGE\x10\xea}\x12:\n5DEVICE_INT32_AI_MEASUREMENT_TYPE_VELOCITY_IEPE_SENSOR\x10\xde|\x12\x32\n-DEVICE_INT32_AI_MEASUREMENT_TYPE_FORCE_BRIDGE\x10\x9b|\x12\x37\n2DEVICE_INT32_AI_MEASUREMENT_TYPE_FORCE_IEPE_SENSOR\x10\x97|\x12\x35\n0DEVICE_INT32_AI_MEASUREMENT_TYPE_PRESSURE_BRIDGE\x10\x9e|\x12?\n:DEVICE_INT32_AI_MEASUREMENT_TYPE_SOUND_PRESSURE_MICROPHONE\x10\xf2P\x12\x33\n.DEVICE_INT32_AI_MEASUREMENT_TYPE_TORQUE_BRIDGE\x10\xa1|\x12\x31\n,DEVICE_INT32_AI_MEASUREMENT_TYPE_TEDS_SENSOR\x10\xf3\x61\x12,\n\'DEVICE_INT32_AI_MEASUREMENT_TYPE_CHARGE\x10\xe9}\x12+\n&DEVICE_INT32_AI_MEASUREMENT_TYPE_POWER\x10\xc9~\x12\x36\n1DEVICE_INT32_AI_MEASUREMENT_TYPE_CALCULATED_POWER\x10\xcc~\x12\x30\n+DEVICE_INT32_AO_OUTPUT_CHANNEL_TYPE_VOLTAGE\x10\xd2P\x12\x30\n+DEVICE_INT32_AO_OUTPUT_CHANNEL_TYPE_CURRENT\x10\x96O\x12\x31\n,DEVICE_INT32_AO_OUTPUT_CHANNEL_TYPE_FUNC_GEN\x10\x9es\x12/\n*DEVICE_INT32_ACQUISITION_TYPE_FINITE_SAMPS\x10\xc2O\x12-\n(DEVICE_INT32_ACQUISITION_TYPE_CONT_SAMPS\x10\x8bO\x12\x38\n3DEVICE_INT32_ACQUISITION_TYPE_HW_TIMED_SINGLE_POINT\x10\xea\x61\x12\x1d\n\x18\x44\x45VICE_INT32_ALT_REF_MSL\x10\x85}\x12\x1d\n\x18\x44\x45VICE_INT32_ALT_REF_HAE\x10\x86}\x12$\n\x1f\x44\x45VICE_INT32_ANT_STATUS_UNKNOWN\x10\xac\x62\x12#\n\x1e\x44\x45VICE_INT32_ANT_STATUS_NORMAL\x10\xdbQ\x12#\n\x1e\x44\x45VICE_INT32_ANT_STATUS_ABSENT\x10\xfa|\x12(\n#DEVICE_INT32_ANT_STATUS_OVERCURRENT\x10\xfb|\x12\x1e\n\x19\x44\x45VICE_INT32_BUS_TYPE_PCI\x10\xa6\x62\x12\x1f\n\x1a\x44\x45VICE_INT32_BUS_TYPE_PCIE\x10\xacj\x12\x1e\n\x19\x44\x45VICE_INT32_BUS_TYPE_PXI\x10\xa7\x62\x12\x1f\n\x1a\x44\x45VICE_INT32_BUS_TYPE_PXIE\x10\xf2r\x12\x1f\n\x1a\x44\x45VICE_INT32_BUS_TYPE_SCXI\x10\xa8\x62\x12\x1e\n\x19\x44\x45VICE_INT32_BUS_TYPE_SCC\x10\xf3r\x12\"\n\x1d\x44\x45VICE_INT32_BUS_TYPE_PC_CARD\x10\xa9\x62\x12\x1e\n\x19\x44\x45VICE_INT32_BUS_TYPE_USB\x10\xaa\x62\x12&\n!DEVICE_INT32_BUS_TYPE_COMPACT_DAQ\x10\xadr\x12&\n!DEVICE_INT32_BUS_TYPE_COMPACT_RIO\x10\x8f~\x12 \n\x1b\x44\x45VICE_INT32_BUS_TYPE_TCPIP\x10\xecs\x12\"\n\x1d\x44\x45VICE_INT32_BUS_TYPE_UNKNOWN\x10\xac\x62\x12\'\n\"DEVICE_INT32_BUS_TYPE_SWITCH_BLOCK\x10\xfe{\x12\x31\n,DEVICE_INT32_CI_MEASUREMENT_TYPE_COUNT_EDGES\x10\x8dO\x12*\n%DEVICE_INT32_CI_MEASUREMENT_TYPE_FREQ\x10\xc3O\x12,\n\'DEVICE_INT32_CI_MEASUREMENT_TYPE_PERIOD\x10\x90P\x12\x31\n,DEVICE_INT32_CI_MEASUREMENT_TYPE_PULSE_WIDTH\x10\xf7P\x12\x31\n,DEVICE_INT32_CI_MEASUREMENT_TYPE_SEMI_PERIOD\x10\xb1P\x12\x35\n0DEVICE_INT32_CI_MEASUREMENT_TYPE_PULSE_FREQUENCY\x10\xf8{\x12\x30\n+DEVICE_INT32_CI_MEASUREMENT_TYPE_PULSE_TIME\x10\xf9{\x12\x31\n,DEVICE_INT32_CI_MEASUREMENT_TYPE_PULSE_TICKS\x10\xfa{\x12\x30\n+DEVICE_INT32_CI_MEASUREMENT_TYPE_DUTY_CYCLE\x10\xc6}\x12:\n5DEVICE_INT32_CI_MEASUREMENT_TYPE_POSITION_ANG_ENCODER\x10\xf8P\x12:\n5DEVICE_INT32_CI_MEASUREMENT_TYPE_POSITION_LIN_ENCODER\x10\xf9P\x12:\n5DEVICE_INT32_CI_MEASUREMENT_TYPE_VELOCITY_ANG_ENCODER\x10\xce}\x12:\n5DEVICE_INT32_CI_MEASUREMENT_TYPE_VELOCITY_LIN_ENCODER\x10\xcf}\x12\x32\n-DEVICE_INT32_CI_MEASUREMENT_TYPE_TWO_EDGE_SEP\x10\x9bP\x12\x33\n.DEVICE_INT32_CI_MEASUREMENT_TYPE_GPS_TIMESTAMP\x10\xfaP\x12+\n&DEVICE_INT32_CO_OUTPUT_TYPE_PULSE_TIME\x10\x9dP\x12+\n&DEVICE_INT32_CO_OUTPUT_TYPE_PULSE_FREQ\x10\x87O\x12,\n\'DEVICE_INT32_CO_OUTPUT_TYPE_PULSE_TICKS\x10\x9cP\x12\"\n\x1e\x44\x45VICE_INT32_COUPLING_TYPES_AC\x10\x01\x12\"\n\x1e\x44\x45VICE_INT32_COUPLING_TYPES_DC\x10\x02\x12&\n\"DEVICE_INT32_COUPLING_TYPES_GROUND\x10\x04\x12)\n%DEVICE_INT32_COUPLING_TYPES_HF_REJECT\x10\x08\x12)\n%DEVICE_INT32_COUPLING_TYPES_LF_REJECT\x10\x10\x12,\n(DEVICE_INT32_COUPLING_TYPES_NOISE_REJECT\x10 \x12&\n!DEVICE_INT32_FILTER_TYPE2_LOWPASS\x10\xc7}\x12\'\n\"DEVICE_INT32_FILTER_TYPE2_HIGHPASS\x10\xc8}\x12\'\n\"DEVICE_INT32_FILTER_TYPE2_BANDPASS\x10\xc9}\x12$\n\x1f\x44\x45VICE_INT32_FILTER_TYPE2_NOTCH\x10\xca}\x12%\n DEVICE_INT32_FILTER_TYPE2_CUSTOM\x10\x99O\x12\x32\n-DEVICE_INT32_ID_PIN_STATUS_MEMORY_NOT_PRESENT\x10\xcd~\x12.\n)DEVICE_INT32_ID_PIN_STATUS_MEMORY_PRESENT\x10\xce~\x12/\n*DEVICE_INT32_NAV_MEASUREMENT_TYPE_ALTITUDE\x10\xfd|\x12\x30\n+DEVICE_INT32_NAV_MEASUREMENT_TYPE_LONGITUDE\x10\xfe|\x12/\n*DEVICE_INT32_NAV_MEASUREMENT_TYPE_LATITUDE\x10\xff|\x12\x38\n3DEVICE_INT32_NAV_MEASUREMENT_TYPE_SPEED_OVER_GROUND\x10\x80}\x12,\n\'DEVICE_INT32_NAV_MEASUREMENT_TYPE_TRACK\x10\x81}\x12\x30\n+DEVICE_INT32_NAV_MEASUREMENT_TYPE_TIMESTAMP\x10\xf2|\x12\x34\n/DEVICE_INT32_NAV_MEASUREMENT_TYPE_VERT_VELOCITY\x10\x83}\x12!\n\x1c\x44\x45VICE_INT32_NAV_MODE_MOBILE\x10\xf5|\x12\x31\n,DEVICE_INT32_NAV_MODE_STATIONARY_WITH_SURVEY\x10\xf6|\x12:\n5DEVICE_INT32_NAV_MODE_STATIONARY_WITH_PRESET_LOCATION\x10\xf7|\x12/\n*DEVICE_INT32_PRODUCT_CATEGORY_M_SERIES_DAQ\x10\xb3r\x12/\n*DEVICE_INT32_PRODUCT_CATEGORY_X_SERIES_DAQ\x10\xf2{\x12/\n*DEVICE_INT32_PRODUCT_CATEGORY_E_SERIES_DAQ\x10\xb2r\x12/\n*DEVICE_INT32_PRODUCT_CATEGORY_S_SERIES_DAQ\x10\xb4r\x12/\n*DEVICE_INT32_PRODUCT_CATEGORY_B_SERIES_DAQ\x10\xc6r\x12\x30\n+DEVICE_INT32_PRODUCT_CATEGORY_SC_SERIES_DAQ\x10\xb5r\x12)\n$DEVICE_INT32_PRODUCT_CATEGORY_USBDAQ\x10\xb6r\x12,\n\'DEVICE_INT32_PRODUCT_CATEGORY_AO_SERIES\x10\xb7r\x12-\n(DEVICE_INT32_PRODUCT_CATEGORY_DIGITAL_IO\x10\xb8r\x12-\n(DEVICE_INT32_PRODUCT_CATEGORY_TIO_SERIES\x10\xc5r\x12=\n8DEVICE_INT32_PRODUCT_CATEGORY_DYNAMIC_SIGNAL_ACQUISITION\x10\xb9r\x12+\n&DEVICE_INT32_PRODUCT_CATEGORY_SWITCHES\x10\xbar\x12\x36\n1DEVICE_INT32_PRODUCT_CATEGORY_COMPACT_DAQ_CHASSIS\x10\xc2r\x12\x36\n1DEVICE_INT32_PRODUCT_CATEGORY_COMPACT_RIO_CHASSIS\x10\x90~\x12\x32\n-DEVICE_INT32_PRODUCT_CATEGORY_C_SERIES_MODULE\x10\xc3r\x12.\n)DEVICE_INT32_PRODUCT_CATEGORY_SCXI_MODULE\x10\xc4r\x12\x36\n1DEVICE_INT32_PRODUCT_CATEGORY_SCC_CONNECTOR_BLOCK\x10\xf0r\x12-\n(DEVICE_INT32_PRODUCT_CATEGORY_SCC_MODULE\x10\xf1r\x12*\n%DEVICE_INT32_PRODUCT_CATEGORY_NIELVIS\x10\xa3s\x12.\n)DEVICE_INT32_PRODUCT_CATEGORY_NETWORK_DAQ\x10\xeds\x12-\n(DEVICE_INT32_PRODUCT_CATEGORY_SC_EXPRESS\x10\x8e|\x12,\n\'DEVICE_INT32_PRODUCT_CATEGORY_FIELD_DAQ\x10\x97~\x12\x35\n0DEVICE_INT32_PRODUCT_CATEGORY_TEST_SCALE_CHASSIS\x10\xb4~\x12\x34\n/DEVICE_INT32_PRODUCT_CATEGORY_TEST_SCALE_MODULE\x10\xb5~\x12*\n%DEVICE_INT32_PRODUCT_CATEGORY_MIO_DAQ\x10\xb6~\x12*\n%DEVICE_INT32_PRODUCT_CATEGORY_UNKNOWN\x10\xac\x62\x12\'\n\"DEVICE_INT32_TRIGGER_USAGE_ADVANCE\x10\xc8\x61\x12%\n DEVICE_INT32_TRIGGER_USAGE_PAUSE\x10\xc9\x61\x12)\n$DEVICE_INT32_TRIGGER_USAGE_REFERENCE\x10\xca\x61\x12%\n DEVICE_INT32_TRIGGER_USAGE_START\x10\xcb\x61\x12)\n$DEVICE_INT32_TRIGGER_USAGE_HANDSHAKE\x10\x95Q\x12)\n$DEVICE_INT32_TRIGGER_USAGE_ARM_START\x10\xb1r\x12,\n(DEVICE_INT32_TRIGGER_USAGE_TYPES_ADVANCE\x10\x01\x12*\n&DEVICE_INT32_TRIGGER_USAGE_TYPES_PAUSE\x10\x02\x12.\n*DEVICE_INT32_TRIGGER_USAGE_TYPES_REFERENCE\x10\x04\x12*\n&DEVICE_INT32_TRIGGER_USAGE_TYPES_START\x10\x08\x12.\n*DEVICE_INT32_TRIGGER_USAGE_TYPES_HANDSHAKE\x10\x10\x12.\n*DEVICE_INT32_TRIGGER_USAGE_TYPES_ARM_START\x10 \x1a\x02\x10\x01*\xc3\x08\n ExportSignalInt32AttributeValues\x12\"\n\x1e\x45XPORTSIGNAL_INT32_UNSPECIFIED\x10\x00\x12H\nCEXPORTSIGNAL_INT32_DEASSERT_CONDITION_ONBRD_MEM_MORE_THAN_HALF_FULL\x10\xfdO\x12\x39\n4EXPORTSIGNAL_INT32_DEASSERT_CONDITION_ONBRD_MEM_FULL\x10\xfcO\x12\x45\n@EXPORTSIGNAL_INT32_DEASSERT_CONDITION_ONBRD_MEM_CUSTOM_THRESHOLD\x10\xa1\x62\x12=\n8EXPORTSIGNAL_INT32_DIGITAL_WIDTH_UNITS1_SAMP_CLK_PERIODS\x10\xaeP\x12\x34\n/EXPORTSIGNAL_INT32_DIGITAL_WIDTH_UNITS1_SECONDS\x10\xfcP\x12\x32\n-EXPORTSIGNAL_INT32_DIGITAL_WIDTH_UNITS1_TICKS\x10\xc0P\x12\x34\n/EXPORTSIGNAL_INT32_DIGITAL_WIDTH_UNITS3_SECONDS\x10\xfcP\x12,\n\'EXPORTSIGNAL_INT32_EXPORT_ACTIONS_PULSE\x10\x99P\x12-\n(EXPORTSIGNAL_INT32_EXPORT_ACTIONS_TOGGLE\x10\xc3P\x12*\n%EXPORTSIGNAL_INT32_EXPORT_ACTIONS_LVL\x10\xe2O\x12-\n(EXPORTSIGNAL_INT32_EXPORT_ACTIONS2_PULSE\x10\x99P\x12.\n)EXPORTSIGNAL_INT32_EXPORT_ACTIONS2_TOGGLE\x10\xc3P\x12-\n(EXPORTSIGNAL_INT32_EXPORT_ACTIONS3_PULSE\x10\x99P\x12+\n&EXPORTSIGNAL_INT32_EXPORT_ACTIONS3_LVL\x10\xe2O\x12\x33\n.EXPORTSIGNAL_INT32_EXPORT_ACTIONS5_INTERLOCKED\x10\x85\x62\x12-\n(EXPORTSIGNAL_INT32_EXPORT_ACTIONS5_PULSE\x10\x99P\x12#\n\x1e\x45XPORTSIGNAL_INT32_LEVEL1_HIGH\x10\xd0O\x12\"\n\x1d\x45XPORTSIGNAL_INT32_LEVEL1_LOW\x10\xe6O\x12-\n(EXPORTSIGNAL_INT32_POLARITY2_ACTIVE_HIGH\x10\xefN\x12,\n\'EXPORTSIGNAL_INT32_POLARITY2_ACTIVE_LOW\x10\xf0N\x1a\x02\x10\x01*\xe5#\n#PhysicalChannelInt32AttributeValues\x12%\n!PHYSICALCHANNEL_INT32_UNSPECIFIED\x10\x00\x12\x36\n1PHYSICALCHANNEL_INT32_AI_MEASUREMENT_TYPE_VOLTAGE\x10\xd2P\x12:\n5PHYSICALCHANNEL_INT32_AI_MEASUREMENT_TYPE_VOLTAGE_RMS\x10\xeeP\x12\x36\n1PHYSICALCHANNEL_INT32_AI_MEASUREMENT_TYPE_CURRENT\x10\x96O\x12:\n5PHYSICALCHANNEL_INT32_AI_MEASUREMENT_TYPE_CURRENT_RMS\x10\xefP\x12M\nHPHYSICALCHANNEL_INT32_AI_MEASUREMENT_TYPE_VOLTAGE_CUSTOM_WITH_EXCITATION\x10\xd3P\x12\x35\n0PHYSICALCHANNEL_INT32_AI_MEASUREMENT_TYPE_BRIDGE\x10\xa4|\x12;\n6PHYSICALCHANNEL_INT32_AI_MEASUREMENT_TYPE_FREQ_VOLTAGE\x10\xc5O\x12\x39\n4PHYSICALCHANNEL_INT32_AI_MEASUREMENT_TYPE_RESISTANCE\x10\xa6P\x12\x36\n1PHYSICALCHANNEL_INT32_AI_MEASUREMENT_TYPE_TEMP_TC\x10\xbfP\x12;\n6PHYSICALCHANNEL_INT32_AI_MEASUREMENT_TYPE_TEMP_THRMSTR\x10\xbeP\x12\x37\n2PHYSICALCHANNEL_INT32_AI_MEASUREMENT_TYPE_TEMP_RTD\x10\xbdP\x12\x43\n>PHYSICALCHANNEL_INT32_AI_MEASUREMENT_TYPE_TEMP_BUILT_IN_SENSOR\x10\xc7P\x12:\n5PHYSICALCHANNEL_INT32_AI_MEASUREMENT_TYPE_STRAIN_GAGE\x10\xbcP\x12\x42\n=PHYSICALCHANNEL_INT32_AI_MEASUREMENT_TYPE_ROSETTE_STRAIN_GAGE\x10\xec|\x12<\n7PHYSICALCHANNEL_INT32_AI_MEASUREMENT_TYPE_POSITION_LVDT\x10\xf0P\x12<\n7PHYSICALCHANNEL_INT32_AI_MEASUREMENT_TYPE_POSITION_RVDT\x10\xf1P\x12T\nOPHYSICALCHANNEL_INT32_AI_MEASUREMENT_TYPE_POSITION_EDDY_CURRENT_PROXIMITY_PROBE\x10\xf3s\x12<\n7PHYSICALCHANNEL_INT32_AI_MEASUREMENT_TYPE_ACCELEROMETER\x10\xf4P\x12\x42\n=PHYSICALCHANNEL_INT32_AI_MEASUREMENT_TYPE_ACCELERATION_CHARGE\x10\xe8}\x12M\nHPHYSICALCHANNEL_INT32_AI_MEASUREMENT_TYPE_ACCELERATION_4_WIRE_DC_VOLTAGE\x10\xea}\x12\x43\n>PHYSICALCHANNEL_INT32_AI_MEASUREMENT_TYPE_VELOCITY_IEPE_SENSOR\x10\xde|\x12;\n6PHYSICALCHANNEL_INT32_AI_MEASUREMENT_TYPE_FORCE_BRIDGE\x10\x9b|\x12@\n;PHYSICALCHANNEL_INT32_AI_MEASUREMENT_TYPE_FORCE_IEPE_SENSOR\x10\x97|\x12>\n9PHYSICALCHANNEL_INT32_AI_MEASUREMENT_TYPE_PRESSURE_BRIDGE\x10\x9e|\x12H\nCPHYSICALCHANNEL_INT32_AI_MEASUREMENT_TYPE_SOUND_PRESSURE_MICROPHONE\x10\xf2P\x12<\n7PHYSICALCHANNEL_INT32_AI_MEASUREMENT_TYPE_TORQUE_BRIDGE\x10\xa1|\x12:\n5PHYSICALCHANNEL_INT32_AI_MEASUREMENT_TYPE_TEDS_SENSOR\x10\xf3\x61\x12\x35\n0PHYSICALCHANNEL_INT32_AI_MEASUREMENT_TYPE_CHARGE\x10\xe9}\x12\x34\n/PHYSICALCHANNEL_INT32_AI_MEASUREMENT_TYPE_POWER\x10\xc9~\x12?\n:PHYSICALCHANNEL_INT32_AI_MEASUREMENT_TYPE_CALCULATED_POWER\x10\xcc~\x12\x39\n4PHYSICALCHANNEL_INT32_AO_OUTPUT_CHANNEL_TYPE_VOLTAGE\x10\xd2P\x12\x39\n4PHYSICALCHANNEL_INT32_AO_OUTPUT_CHANNEL_TYPE_CURRENT\x10\x96O\x12:\n5PHYSICALCHANNEL_INT32_AO_OUTPUT_CHANNEL_TYPE_FUNC_GEN\x10\x9es\x12>\n9PHYSICALCHANNEL_INT32_AO_POWER_UP_OUTPUT_BEHAVIOR_VOLTAGE\x10\xd2P\x12>\n9PHYSICALCHANNEL_INT32_AO_POWER_UP_OUTPUT_BEHAVIOR_CURRENT\x10\x96O\x12\x45\n@PHYSICALCHANNEL_INT32_AO_POWER_UP_OUTPUT_BEHAVIOR_HIGH_IMPEDANCE\x10\xef\x61\x12\x38\n3PHYSICALCHANNEL_INT32_ACQUISITION_TYPE_FINITE_SAMPS\x10\xc2O\x12\x36\n1PHYSICALCHANNEL_INT32_ACQUISITION_TYPE_CONT_SAMPS\x10\x8bO\x12\x41\n\n9PHYSICALCHANNEL_INT32_CI_MEASUREMENT_TYPE_PULSE_FREQUENCY\x10\xf8{\x12\x39\n4PHYSICALCHANNEL_INT32_CI_MEASUREMENT_TYPE_PULSE_TIME\x10\xf9{\x12:\n5PHYSICALCHANNEL_INT32_CI_MEASUREMENT_TYPE_PULSE_TICKS\x10\xfa{\x12\x39\n4PHYSICALCHANNEL_INT32_CI_MEASUREMENT_TYPE_DUTY_CYCLE\x10\xc6}\x12\x43\n>PHYSICALCHANNEL_INT32_CI_MEASUREMENT_TYPE_POSITION_ANG_ENCODER\x10\xf8P\x12\x43\n>PHYSICALCHANNEL_INT32_CI_MEASUREMENT_TYPE_POSITION_LIN_ENCODER\x10\xf9P\x12\x43\n>PHYSICALCHANNEL_INT32_CI_MEASUREMENT_TYPE_VELOCITY_ANG_ENCODER\x10\xce}\x12\x43\n>PHYSICALCHANNEL_INT32_CI_MEASUREMENT_TYPE_VELOCITY_LIN_ENCODER\x10\xcf}\x12;\n6PHYSICALCHANNEL_INT32_CI_MEASUREMENT_TYPE_TWO_EDGE_SEP\x10\x9bP\x12<\n7PHYSICALCHANNEL_INT32_CI_MEASUREMENT_TYPE_GPS_TIMESTAMP\x10\xfaP\x12\x34\n/PHYSICALCHANNEL_INT32_CO_OUTPUT_TYPE_PULSE_TIME\x10\x9dP\x12\x34\n/PHYSICALCHANNEL_INT32_CO_OUTPUT_TYPE_PULSE_FREQ\x10\x87O\x12\x35\n0PHYSICALCHANNEL_INT32_CO_OUTPUT_TYPE_PULSE_TICKS\x10\x9cP\x12\x32\n-PHYSICALCHANNEL_INT32_LOGIC_FAMILY_1POINT_8_V\x10\xb8~\x12\x32\n-PHYSICALCHANNEL_INT32_LOGIC_FAMILY_2POINT_5_V\x10\x9cr\x12\x32\n-PHYSICALCHANNEL_INT32_LOGIC_FAMILY_3POINT_3_V\x10\x9dr\x12+\n&PHYSICALCHANNEL_INT32_LOGIC_FAMILY_5_V\x10\x9br\x12\x38\n3PHYSICALCHANNEL_INT32_NAV_MEASUREMENT_TYPE_ALTITUDE\x10\xfd|\x12\x39\n4PHYSICALCHANNEL_INT32_NAV_MEASUREMENT_TYPE_LONGITUDE\x10\xfe|\x12\x38\n3PHYSICALCHANNEL_INT32_NAV_MEASUREMENT_TYPE_LATITUDE\x10\xff|\x12\x41\n\n9TIMING_INT32_MIOAI_CONVERT_TB_SRC_SAME_AS_MASTER_TIMEBASE\x10\xaaP\x12\x37\n2TIMING_INT32_MIOAI_CONVERT_TB_SRC_100_MHZ_TIMEBASE\x10\xf1{\x12\x36\n1TIMING_INT32_MIOAI_CONVERT_TB_SRC_80_MHZ_TIMEBASE\x10\xacr\x12\x36\n1TIMING_INT32_MIOAI_CONVERT_TB_SRC_20_MHZ_TIMEBASE\x10\xf9\x61\x12\x35\n0TIMING_INT32_MIOAI_CONVERT_TB_SRC_8_MHZ_TIMEBASE\x10\x97}\x12\x37\n2TIMING_INT32_OVERFLOW_BEHAVIOR_STOP_TASK_AND_ERROR\x10\xf6{\x12\x33\n.TIMING_INT32_OVERFLOW_BEHAVIOR_IGNORE_OVERRUNS\x10\xf7{\x12\x42\n=TIMING_INT32_SAMPLE_INPUT_DATA_WHEN_HANDSHAKE_TRIGGER_ASSERTS\x10\x88\x62\x12\x44\n?TIMING_INT32_SAMPLE_INPUT_DATA_WHEN_HANDSHAKE_TRIGGER_DEASSERTS\x10\x89\x62\x12-\n(TIMING_INT32_SAMPLE_TIMING_TYPE_SAMP_CLK\x10\x94Q\x12\x34\n/TIMING_INT32_SAMPLE_TIMING_TYPE_BURST_HANDSHAKE\x10\x84\x62\x12.\n)TIMING_INT32_SAMPLE_TIMING_TYPE_HANDSHAKE\x10\x95Q\x12-\n(TIMING_INT32_SAMPLE_TIMING_TYPE_IMPLICIT\x10\xd3Q\x12.\n)TIMING_INT32_SAMPLE_TIMING_TYPE_ON_DEMAND\x10\x96Q\x12\x35\n0TIMING_INT32_SAMPLE_TIMING_TYPE_CHANGE_DETECTION\x10\xd8\x61\x12\x37\n2TIMING_INT32_SAMPLE_TIMING_TYPE_PIPELINED_SAMP_CLK\x10\xccr\x12)\n$TIMING_INT32_SYNC_PULSE_TYPE_ONBOARD\x10\x80~\x12*\n%TIMING_INT32_SYNC_PULSE_TYPE_DIG_EDGE\x10\xa6O\x12&\n!TIMING_INT32_SYNC_PULSE_TYPE_TIME\x10\xfc|\x12&\n!TIMING_INT32_TIMESCALE2_HOST_TIME\x10\xfe}\x12+\n&TIMING_INT32_TIMESCALE2_IO_DEVICE_TIME\x10\xff}\x12:\n5TIMING_INT32_UNDERFLOW_BEHAVIOR_HALT_OUTPUT_AND_ERROR\x10\x97r\x12?\n:TIMING_INT32_UNDERFLOW_BEHAVIOR_PAUSE_UNTIL_DATA_AVAILABLE\x10\x98r*\xfc\x11\n\x1bTriggerInt32AttributeValues\x12\x1d\n\x19TRIGGER_INT32_UNSPECIFIED\x10\x00\x12)\n$TRIGGER_INT32_ACTIVE_LEVEL_ABOVE_LVL\x10\xedN\x12)\n$TRIGGER_INT32_ACTIVE_LEVEL_BELOW_LVL\x10\xfbN\x12\x1f\n\x1aTRIGGER_INT32_COUPLING2_AC\x10\xbdN\x12\x1f\n\x1aTRIGGER_INT32_COUPLING2_DC\x10\xc2N\x12=\n8TRIGGER_INT32_DIGITAL_PATTERN_CONDITION1_PATTERN_MATCHES\x10\x8eP\x12\x44\n?TRIGGER_INT32_DIGITAL_PATTERN_CONDITION1_PATTERN_DOES_NOT_MATCH\x10\x8dP\x12\x38\n3TRIGGER_INT32_DIGITAL_WIDTH_UNITS1_SAMP_CLK_PERIODS\x10\xaeP\x12/\n*TRIGGER_INT32_DIGITAL_WIDTH_UNITS1_SECONDS\x10\xfcP\x12-\n(TRIGGER_INT32_DIGITAL_WIDTH_UNITS1_TICKS\x10\xc0P\x12\x1f\n\x1aTRIGGER_INT32_EDGE1_RISING\x10\xa8P\x12 \n\x1bTRIGGER_INT32_EDGE1_FALLING\x10\xbbO\x12\x1e\n\x19TRIGGER_INT32_LEVEL1_HIGH\x10\xd0O\x12\x1d\n\x18TRIGGER_INT32_LEVEL1_LOW\x10\xe6O\x12&\n!TRIGGER_INT32_SLOPE1_RISING_SLOPE\x10\xa8P\x12\'\n\"TRIGGER_INT32_SLOPE1_FALLING_SLOPE\x10\xbbO\x12!\n\x1cTRIGGER_INT32_SYNC_TYPE_NONE\x10\xf6O\x12#\n\x1eTRIGGER_INT32_SYNC_TYPE_MASTER\x10\x90|\x12\"\n\x1dTRIGGER_INT32_SYNC_TYPE_SLAVE\x10\x91|\x12\'\n\"TRIGGER_INT32_TIMESCALE2_HOST_TIME\x10\xfe}\x12,\n\'TRIGGER_INT32_TIMESCALE2_IO_DEVICE_TIME\x10\xff}\x12+\n&TRIGGER_INT32_TRIGGER_TYPE10_ANLG_EDGE\x10\xf3N\x12\x31\n,TRIGGER_INT32_TRIGGER_TYPE10_ANLG_MULTI_EDGE\x10\xec}\x12*\n%TRIGGER_INT32_TRIGGER_TYPE10_DIG_EDGE\x10\xa6O\x12-\n(TRIGGER_INT32_TRIGGER_TYPE10_DIG_PATTERN\x10\x9eQ\x12*\n%TRIGGER_INT32_TRIGGER_TYPE10_ANLG_WIN\x10\xf7N\x12&\n!TRIGGER_INT32_TRIGGER_TYPE10_TIME\x10\xfc|\x12&\n!TRIGGER_INT32_TRIGGER_TYPE10_NONE\x10\xf6O\x12)\n$TRIGGER_INT32_TRIGGER_TYPE4_DIG_EDGE\x10\xa6O\x12%\n TRIGGER_INT32_TRIGGER_TYPE4_TIME\x10\xfc|\x12%\n TRIGGER_INT32_TRIGGER_TYPE4_NONE\x10\xf6O\x12)\n$TRIGGER_INT32_TRIGGER_TYPE5_DIG_EDGE\x10\xa6O\x12)\n$TRIGGER_INT32_TRIGGER_TYPE5_SOFTWARE\x10\xb4P\x12%\n TRIGGER_INT32_TRIGGER_TYPE5_NONE\x10\xf6O\x12)\n$TRIGGER_INT32_TRIGGER_TYPE6_ANLG_LVL\x10\xf5N\x12)\n$TRIGGER_INT32_TRIGGER_TYPE6_ANLG_WIN\x10\xf7N\x12(\n#TRIGGER_INT32_TRIGGER_TYPE6_DIG_LVL\x10\xa8O\x12,\n\'TRIGGER_INT32_TRIGGER_TYPE6_DIG_PATTERN\x10\x9eQ\x12%\n TRIGGER_INT32_TRIGGER_TYPE6_NONE\x10\xf6O\x12*\n%TRIGGER_INT32_TRIGGER_TYPE8_ANLG_EDGE\x10\xf3N\x12\x30\n+TRIGGER_INT32_TRIGGER_TYPE8_ANLG_MULTI_EDGE\x10\xec}\x12)\n$TRIGGER_INT32_TRIGGER_TYPE8_DIG_EDGE\x10\xa6O\x12,\n\'TRIGGER_INT32_TRIGGER_TYPE8_DIG_PATTERN\x10\x9eQ\x12)\n$TRIGGER_INT32_TRIGGER_TYPE8_ANLG_WIN\x10\xf7N\x12%\n TRIGGER_INT32_TRIGGER_TYPE8_TIME\x10\xfc|\x12%\n TRIGGER_INT32_TRIGGER_TYPE8_NONE\x10\xf6O\x12,\n\'TRIGGER_INT32_TRIGGER_TYPE9_INTERLOCKED\x10\x85\x62\x12%\n TRIGGER_INT32_TRIGGER_TYPE9_NONE\x10\xf6O\x12\x39\n4TRIGGER_INT32_WINDOW_TRIGGER_CONDITION1_ENTERING_WIN\x10\xb3O\x12\x38\n3TRIGGER_INT32_WINDOW_TRIGGER_CONDITION1_LEAVING_WIN\x10\xe0O\x12\x37\n2TRIGGER_INT32_WINDOW_TRIGGER_CONDITION2_INSIDE_WIN\x10\xd7O\x12\x38\n3TRIGGER_INT32_WINDOW_TRIGGER_CONDITION2_OUTSIDE_WIN\x10\x8bP\x1a\x02\x10\x01*\xfa\x05\n\x1cWatchdogInt32AttributeValues\x12\x1e\n\x1aWATCHDOG_INT32_UNSPECIFIED\x10\x00\x12+\n&WATCHDOG_INT32_DIGITAL_LINE_STATE_HIGH\x10\xd0O\x12*\n%WATCHDOG_INT32_DIGITAL_LINE_STATE_LOW\x10\xe6O\x12/\n*WATCHDOG_INT32_DIGITAL_LINE_STATE_TRISTATE\x10\xc6P\x12\x30\n+WATCHDOG_INT32_DIGITAL_LINE_STATE_NO_CHANGE\x10\xb0O\x12 \n\x1bWATCHDOG_INT32_EDGE1_RISING\x10\xa8P\x12!\n\x1cWATCHDOG_INT32_EDGE1_FALLING\x10\xbbO\x12*\n%WATCHDOG_INT32_TRIGGER_TYPE4_DIG_EDGE\x10\xa6O\x12&\n!WATCHDOG_INT32_TRIGGER_TYPE4_TIME\x10\xfc|\x12&\n!WATCHDOG_INT32_TRIGGER_TYPE4_NONE\x10\xf6O\x12\x33\n.WATCHDOG_INT32_WATCHDOG_AO_EXPIR_STATE_VOLTAGE\x10\xd2P\x12\x33\n.WATCHDOG_INT32_WATCHDOG_AO_EXPIR_STATE_CURRENT\x10\x96O\x12\x35\n0WATCHDOG_INT32_WATCHDOG_AO_EXPIR_STATE_NO_CHANGE\x10\xb0O\x12/\n*WATCHDOG_INT32_WATCHDOG_CO_EXPIR_STATE_LOW\x10\xe6O\x12\x30\n+WATCHDOG_INT32_WATCHDOG_CO_EXPIR_STATE_HIGH\x10\xd0O\x12\x35\n0WATCHDOG_INT32_WATCHDOG_CO_EXPIR_STATE_NO_CHANGE\x10\xb0O\x1a\x02\x10\x01*\xed\x02\n\x19WriteInt32AttributeValues\x12\x1b\n\x17WRITE_INT32_UNSPECIFIED\x10\x00\x12/\n*WRITE_INT32_REGENERATION_MODE1_ALLOW_REGEN\x10\xf1N\x12\x36\n1WRITE_INT32_REGENERATION_MODE1_DO_NOT_ALLOW_REGEN\x10\xaeO\x12 \n\x1bWRITE_INT32_WAIT_MODE2_POLL\x10\xec\x61\x12!\n\x1cWRITE_INT32_WAIT_MODE2_YIELD\x10\xed\x61\x12!\n\x1cWRITE_INT32_WAIT_MODE2_SLEEP\x10\x83\x62\x12/\n*WRITE_INT32_WRITE_RELATIVE_TO_FIRST_SAMPLE\x10\xb8Q\x12\x31\n,WRITE_INT32_WRITE_RELATIVE_TO_CURR_WRITE_POS\x10\xbeQ2\xa5\x9a\x03\n\x07NiDAQmx\x12p\n\x15\x41\x64\x64\x43\x44\x41QSyncConnection\x12*.nidaqmx_grpc.AddCDAQSyncConnectionRequest\x1a+.nidaqmx_grpc.AddCDAQSyncConnectionResponse\x12m\n\x14\x41\x64\x64GlobalChansToTask\x12).nidaqmx_grpc.AddGlobalChansToTaskRequest\x1a*.nidaqmx_grpc.AddGlobalChansToTaskResponse\x12\x61\n\x10\x41\x64\x64NetworkDevice\x12%.nidaqmx_grpc.AddNetworkDeviceRequest\x1a&.nidaqmx_grpc.AddNetworkDeviceResponse\x12\xa3\x01\n&AreConfiguredCDAQSyncPortsDisconnected\x12;.nidaqmx_grpc.AreConfiguredCDAQSyncPortsDisconnectedRequest\x1a<.nidaqmx_grpc.AreConfiguredCDAQSyncPortsDisconnectedResponse\x12\x91\x01\n AutoConfigureCDAQSyncConnections\x12\x35.nidaqmx_grpc.AutoConfigureCDAQSyncConnectionsRequest\x1a\x36.nidaqmx_grpc.AutoConfigureCDAQSyncConnectionsResponse\x12|\n\x19\x43\x61lculateReversePolyCoeff\x12..nidaqmx_grpc.CalculateReversePolyCoeffRequest\x1a/.nidaqmx_grpc.CalculateReversePolyCoeffResponse\x12g\n\x12\x43\x66gAnlgEdgeRefTrig\x12\'.nidaqmx_grpc.CfgAnlgEdgeRefTrigRequest\x1a(.nidaqmx_grpc.CfgAnlgEdgeRefTrigResponse\x12m\n\x14\x43\x66gAnlgEdgeStartTrig\x12).nidaqmx_grpc.CfgAnlgEdgeStartTrigRequest\x1a*.nidaqmx_grpc.CfgAnlgEdgeStartTrigResponse\x12v\n\x17\x43\x66gAnlgMultiEdgeRefTrig\x12,.nidaqmx_grpc.CfgAnlgMultiEdgeRefTrigRequest\x1a-.nidaqmx_grpc.CfgAnlgMultiEdgeRefTrigResponse\x12|\n\x19\x43\x66gAnlgMultiEdgeStartTrig\x12..nidaqmx_grpc.CfgAnlgMultiEdgeStartTrigRequest\x1a/.nidaqmx_grpc.CfgAnlgMultiEdgeStartTrigResponse\x12m\n\x14\x43\x66gAnlgWindowRefTrig\x12).nidaqmx_grpc.CfgAnlgWindowRefTrigRequest\x1a*.nidaqmx_grpc.CfgAnlgWindowRefTrigResponse\x12s\n\x16\x43\x66gAnlgWindowStartTrig\x12+.nidaqmx_grpc.CfgAnlgWindowStartTrigRequest\x1a,.nidaqmx_grpc.CfgAnlgWindowStartTrigResponse\x12\x9d\x01\n$CfgBurstHandshakingTimingExportClock\x12\x39.nidaqmx_grpc.CfgBurstHandshakingTimingExportClockRequest\x1a:.nidaqmx_grpc.CfgBurstHandshakingTimingExportClockResponse\x12\x9d\x01\n$CfgBurstHandshakingTimingImportClock\x12\x39.nidaqmx_grpc.CfgBurstHandshakingTimingImportClockRequest\x1a:.nidaqmx_grpc.CfgBurstHandshakingTimingImportClockResponse\x12y\n\x18\x43\x66gChangeDetectionTiming\x12-.nidaqmx_grpc.CfgChangeDetectionTimingRequest\x1a..nidaqmx_grpc.CfgChangeDetectionTimingResponse\x12\x64\n\x11\x43\x66gDigEdgeRefTrig\x12&.nidaqmx_grpc.CfgDigEdgeRefTrigRequest\x1a\'.nidaqmx_grpc.CfgDigEdgeRefTrigResponse\x12j\n\x13\x43\x66gDigEdgeStartTrig\x12(.nidaqmx_grpc.CfgDigEdgeStartTrigRequest\x1a).nidaqmx_grpc.CfgDigEdgeStartTrigResponse\x12m\n\x14\x43\x66gDigPatternRefTrig\x12).nidaqmx_grpc.CfgDigPatternRefTrigRequest\x1a*.nidaqmx_grpc.CfgDigPatternRefTrigResponse\x12s\n\x16\x43\x66gDigPatternStartTrig\x12+.nidaqmx_grpc.CfgDigPatternStartTrigRequest\x1a,.nidaqmx_grpc.CfgDigPatternStartTrigResponse\x12m\n\x14\x43\x66gHandshakingTiming\x12).nidaqmx_grpc.CfgHandshakingTimingRequest\x1a*.nidaqmx_grpc.CfgHandshakingTimingResponse\x12\x64\n\x11\x43\x66gImplicitTiming\x12&.nidaqmx_grpc.CfgImplicitTimingRequest\x1a\'.nidaqmx_grpc.CfgImplicitTimingResponse\x12[\n\x0e\x43\x66gInputBuffer\x12#.nidaqmx_grpc.CfgInputBufferRequest\x1a$.nidaqmx_grpc.CfgInputBufferResponse\x12^\n\x0f\x43\x66gOutputBuffer\x12$.nidaqmx_grpc.CfgOutputBufferRequest\x1a%.nidaqmx_grpc.CfgOutputBufferResponse\x12|\n\x19\x43\x66gPipelinedSampClkTiming\x12..nidaqmx_grpc.CfgPipelinedSampClkTimingRequest\x1a/.nidaqmx_grpc.CfgPipelinedSampClkTimingResponse\x12\x61\n\x10\x43\x66gSampClkTiming\x12%.nidaqmx_grpc.CfgSampClkTimingRequest\x1a&.nidaqmx_grpc.CfgSampClkTimingResponse\x12\x61\n\x10\x43\x66gTimeStartTrig\x12%.nidaqmx_grpc.CfgTimeStartTrigRequest\x1a&.nidaqmx_grpc.CfgTimeStartTrigResponse\x12y\n\x18\x43\x66gWatchdogAOExpirStates\x12-.nidaqmx_grpc.CfgWatchdogAOExpirStatesRequest\x1a..nidaqmx_grpc.CfgWatchdogAOExpirStatesResponse\x12y\n\x18\x43\x66gWatchdogCOExpirStates\x12-.nidaqmx_grpc.CfgWatchdogCOExpirStatesRequest\x1a..nidaqmx_grpc.CfgWatchdogCOExpirStatesResponse\x12y\n\x18\x43\x66gWatchdogDOExpirStates\x12-.nidaqmx_grpc.CfgWatchdogDOExpirStatesRequest\x1a..nidaqmx_grpc.CfgWatchdogDOExpirStatesResponse\x12L\n\tClearTEDS\x12\x1e.nidaqmx_grpc.ClearTEDSRequest\x1a\x1f.nidaqmx_grpc.ClearTEDSResponse\x12L\n\tClearTask\x12\x1e.nidaqmx_grpc.ClearTaskRequest\x1a\x1f.nidaqmx_grpc.ClearTaskResponse\x12\x61\n\x10\x43onfigureLogging\x12%.nidaqmx_grpc.ConfigureLoggingRequest\x1a&.nidaqmx_grpc.ConfigureLoggingResponse\x12X\n\rConfigureTEDS\x12\".nidaqmx_grpc.ConfigureTEDSRequest\x1a#.nidaqmx_grpc.ConfigureTEDSResponse\x12U\n\x0c\x43onnectTerms\x12!.nidaqmx_grpc.ConnectTermsRequest\x1a\".nidaqmx_grpc.ConnectTermsResponse\x12j\n\x13\x43ontrolWatchdogTask\x12(.nidaqmx_grpc.ControlWatchdogTaskRequest\x1a).nidaqmx_grpc.ControlWatchdogTaskResponse\x12\x8e\x01\n\x1f\x43reateAIAccel4WireDCVoltageChan\x12\x34.nidaqmx_grpc.CreateAIAccel4WireDCVoltageChanRequest\x1a\x35.nidaqmx_grpc.CreateAIAccel4WireDCVoltageChanResponse\x12\x64\n\x11\x43reateAIAccelChan\x12&.nidaqmx_grpc.CreateAIAccelChanRequest\x1a\'.nidaqmx_grpc.CreateAIAccelChanResponse\x12v\n\x17\x43reateAIAccelChargeChan\x12,.nidaqmx_grpc.CreateAIAccelChargeChanRequest\x1a-.nidaqmx_grpc.CreateAIAccelChargeChanResponse\x12g\n\x12\x43reateAIBridgeChan\x12\'.nidaqmx_grpc.CreateAIBridgeChanRequest\x1a(.nidaqmx_grpc.CreateAIBridgeChanResponse\x12g\n\x12\x43reateAIChargeChan\x12\'.nidaqmx_grpc.CreateAIChargeChanRequest\x1a(.nidaqmx_grpc.CreateAIChargeChanResponse\x12j\n\x13\x43reateAICurrentChan\x12(.nidaqmx_grpc.CreateAICurrentChanRequest\x1a).nidaqmx_grpc.CreateAICurrentChanResponse\x12s\n\x16\x43reateAICurrentRMSChan\x12+.nidaqmx_grpc.CreateAICurrentRMSChanRequest\x1a,.nidaqmx_grpc.CreateAICurrentRMSChanResponse\x12\x94\x01\n!CreateAIForceBridgePolynomialChan\x12\x36.nidaqmx_grpc.CreateAIForceBridgePolynomialChanRequest\x1a\x37.nidaqmx_grpc.CreateAIForceBridgePolynomialChanResponse\x12\x85\x01\n\x1c\x43reateAIForceBridgeTableChan\x12\x31.nidaqmx_grpc.CreateAIForceBridgeTableChanRequest\x1a\x32.nidaqmx_grpc.CreateAIForceBridgeTableChanResponse\x12\x97\x01\n\"CreateAIForceBridgeTwoPointLinChan\x12\x37.nidaqmx_grpc.CreateAIForceBridgeTwoPointLinChanRequest\x1a\x38.nidaqmx_grpc.CreateAIForceBridgeTwoPointLinChanResponse\x12p\n\x15\x43reateAIForceIEPEChan\x12*.nidaqmx_grpc.CreateAIForceIEPEChanRequest\x1a+.nidaqmx_grpc.CreateAIForceIEPEChanResponse\x12v\n\x17\x43reateAIFreqVoltageChan\x12,.nidaqmx_grpc.CreateAIFreqVoltageChanRequest\x1a-.nidaqmx_grpc.CreateAIFreqVoltageChanResponse\x12s\n\x16\x43reateAIMicrophoneChan\x12+.nidaqmx_grpc.CreateAIMicrophoneChanRequest\x1a,.nidaqmx_grpc.CreateAIMicrophoneChanResponse\x12\x91\x01\n CreateAIPosEddyCurrProxProbeChan\x12\x35.nidaqmx_grpc.CreateAIPosEddyCurrProxProbeChanRequest\x1a\x36.nidaqmx_grpc.CreateAIPosEddyCurrProxProbeChanResponse\x12j\n\x13\x43reateAIPosLVDTChan\x12(.nidaqmx_grpc.CreateAIPosLVDTChanRequest\x1a).nidaqmx_grpc.CreateAIPosLVDTChanResponse\x12j\n\x13\x43reateAIPosRVDTChan\x12(.nidaqmx_grpc.CreateAIPosRVDTChanRequest\x1a).nidaqmx_grpc.CreateAIPosRVDTChanResponse\x12\x64\n\x11\x43reateAIPowerChan\x12&.nidaqmx_grpc.CreateAIPowerChanRequest\x1a\'.nidaqmx_grpc.CreateAIPowerChanResponse\x12\x9d\x01\n$CreateAIPressureBridgePolynomialChan\x12\x39.nidaqmx_grpc.CreateAIPressureBridgePolynomialChanRequest\x1a:.nidaqmx_grpc.CreateAIPressureBridgePolynomialChanResponse\x12\x8e\x01\n\x1f\x43reateAIPressureBridgeTableChan\x12\x34.nidaqmx_grpc.CreateAIPressureBridgeTableChanRequest\x1a\x35.nidaqmx_grpc.CreateAIPressureBridgeTableChanResponse\x12\xa0\x01\n%CreateAIPressureBridgeTwoPointLinChan\x12:.nidaqmx_grpc.CreateAIPressureBridgeTwoPointLinChanRequest\x1a;.nidaqmx_grpc.CreateAIPressureBridgeTwoPointLinChanResponse\x12^\n\x0f\x43reateAIRTDChan\x12$.nidaqmx_grpc.CreateAIRTDChanRequest\x1a%.nidaqmx_grpc.CreateAIRTDChanResponse\x12s\n\x16\x43reateAIResistanceChan\x12+.nidaqmx_grpc.CreateAIResistanceChanRequest\x1a,.nidaqmx_grpc.CreateAIResistanceChanResponse\x12\x88\x01\n\x1d\x43reateAIRosetteStrainGageChan\x12\x32.nidaqmx_grpc.CreateAIRosetteStrainGageChanRequest\x1a\x33.nidaqmx_grpc.CreateAIRosetteStrainGageChanResponse\x12s\n\x16\x43reateAIStrainGageChan\x12+.nidaqmx_grpc.CreateAIStrainGageChanRequest\x1a,.nidaqmx_grpc.CreateAIStrainGageChanResponse\x12\x88\x01\n\x1d\x43reateAITempBuiltInSensorChan\x12\x32.nidaqmx_grpc.CreateAITempBuiltInSensorChanRequest\x1a\x33.nidaqmx_grpc.CreateAITempBuiltInSensorChanResponse\x12j\n\x13\x43reateAIThrmcplChan\x12(.nidaqmx_grpc.CreateAIThrmcplChanRequest\x1a).nidaqmx_grpc.CreateAIThrmcplChanResponse\x12s\n\x16\x43reateAIThrmstrChanIex\x12+.nidaqmx_grpc.CreateAIThrmstrChanIexRequest\x1a,.nidaqmx_grpc.CreateAIThrmstrChanIexResponse\x12s\n\x16\x43reateAIThrmstrChanVex\x12+.nidaqmx_grpc.CreateAIThrmstrChanVexRequest\x1a,.nidaqmx_grpc.CreateAIThrmstrChanVexResponse\x12\x97\x01\n\"CreateAITorqueBridgePolynomialChan\x12\x37.nidaqmx_grpc.CreateAITorqueBridgePolynomialChanRequest\x1a\x38.nidaqmx_grpc.CreateAITorqueBridgePolynomialChanResponse\x12\x88\x01\n\x1d\x43reateAITorqueBridgeTableChan\x12\x32.nidaqmx_grpc.CreateAITorqueBridgeTableChanRequest\x1a\x33.nidaqmx_grpc.CreateAITorqueBridgeTableChanResponse\x12\x9a\x01\n#CreateAITorqueBridgeTwoPointLinChan\x12\x38.nidaqmx_grpc.CreateAITorqueBridgeTwoPointLinChanRequest\x1a\x39.nidaqmx_grpc.CreateAITorqueBridgeTwoPointLinChanResponse\x12y\n\x18\x43reateAIVelocityIEPEChan\x12-.nidaqmx_grpc.CreateAIVelocityIEPEChanRequest\x1a..nidaqmx_grpc.CreateAIVelocityIEPEChanResponse\x12j\n\x13\x43reateAIVoltageChan\x12(.nidaqmx_grpc.CreateAIVoltageChanRequest\x1a).nidaqmx_grpc.CreateAIVoltageChanResponse\x12\x85\x01\n\x1c\x43reateAIVoltageChanWithExcit\x12\x31.nidaqmx_grpc.CreateAIVoltageChanWithExcitRequest\x1a\x32.nidaqmx_grpc.CreateAIVoltageChanWithExcitResponse\x12s\n\x16\x43reateAIVoltageRMSChan\x12+.nidaqmx_grpc.CreateAIVoltageRMSChanRequest\x1a,.nidaqmx_grpc.CreateAIVoltageRMSChanResponse\x12j\n\x13\x43reateAOCurrentChan\x12(.nidaqmx_grpc.CreateAOCurrentChanRequest\x1a).nidaqmx_grpc.CreateAOCurrentChanResponse\x12j\n\x13\x43reateAOFuncGenChan\x12(.nidaqmx_grpc.CreateAOFuncGenChanRequest\x1a).nidaqmx_grpc.CreateAOFuncGenChanResponse\x12j\n\x13\x43reateAOVoltageChan\x12(.nidaqmx_grpc.CreateAOVoltageChanRequest\x1a).nidaqmx_grpc.CreateAOVoltageChanResponse\x12s\n\x16\x43reateCIAngEncoderChan\x12+.nidaqmx_grpc.CreateCIAngEncoderChanRequest\x1a,.nidaqmx_grpc.CreateCIAngEncoderChanResponse\x12v\n\x17\x43reateCIAngVelocityChan\x12,.nidaqmx_grpc.CreateCIAngVelocityChanRequest\x1a-.nidaqmx_grpc.CreateCIAngVelocityChanResponse\x12s\n\x16\x43reateCICountEdgesChan\x12+.nidaqmx_grpc.CreateCICountEdgesChanRequest\x1a,.nidaqmx_grpc.CreateCICountEdgesChanResponse\x12p\n\x15\x43reateCIDutyCycleChan\x12*.nidaqmx_grpc.CreateCIDutyCycleChanRequest\x1a+.nidaqmx_grpc.CreateCIDutyCycleChanResponse\x12\x61\n\x10\x43reateCIFreqChan\x12%.nidaqmx_grpc.CreateCIFreqChanRequest\x1a&.nidaqmx_grpc.CreateCIFreqChanResponse\x12y\n\x18\x43reateCIGPSTimestampChan\x12-.nidaqmx_grpc.CreateCIGPSTimestampChanRequest\x1a..nidaqmx_grpc.CreateCIGPSTimestampChanResponse\x12s\n\x16\x43reateCILinEncoderChan\x12+.nidaqmx_grpc.CreateCILinEncoderChanRequest\x1a,.nidaqmx_grpc.CreateCILinEncoderChanResponse\x12v\n\x17\x43reateCILinVelocityChan\x12,.nidaqmx_grpc.CreateCILinVelocityChanRequest\x1a-.nidaqmx_grpc.CreateCILinVelocityChanResponse\x12g\n\x12\x43reateCIPeriodChan\x12\'.nidaqmx_grpc.CreateCIPeriodChanRequest\x1a(.nidaqmx_grpc.CreateCIPeriodChanResponse\x12p\n\x15\x43reateCIPulseChanFreq\x12*.nidaqmx_grpc.CreateCIPulseChanFreqRequest\x1a+.nidaqmx_grpc.CreateCIPulseChanFreqResponse\x12s\n\x16\x43reateCIPulseChanTicks\x12+.nidaqmx_grpc.CreateCIPulseChanTicksRequest\x1a,.nidaqmx_grpc.CreateCIPulseChanTicksResponse\x12p\n\x15\x43reateCIPulseChanTime\x12*.nidaqmx_grpc.CreateCIPulseChanTimeRequest\x1a+.nidaqmx_grpc.CreateCIPulseChanTimeResponse\x12s\n\x16\x43reateCIPulseWidthChan\x12+.nidaqmx_grpc.CreateCIPulseWidthChanRequest\x1a,.nidaqmx_grpc.CreateCIPulseWidthChanResponse\x12s\n\x16\x43reateCISemiPeriodChan\x12+.nidaqmx_grpc.CreateCISemiPeriodChanRequest\x1a,.nidaqmx_grpc.CreateCISemiPeriodChanResponse\x12s\n\x16\x43reateCITwoEdgeSepChan\x12+.nidaqmx_grpc.CreateCITwoEdgeSepChanRequest\x1a,.nidaqmx_grpc.CreateCITwoEdgeSepChanResponse\x12p\n\x15\x43reateCOPulseChanFreq\x12*.nidaqmx_grpc.CreateCOPulseChanFreqRequest\x1a+.nidaqmx_grpc.CreateCOPulseChanFreqResponse\x12s\n\x16\x43reateCOPulseChanTicks\x12+.nidaqmx_grpc.CreateCOPulseChanTicksRequest\x1a,.nidaqmx_grpc.CreateCOPulseChanTicksResponse\x12p\n\x15\x43reateCOPulseChanTime\x12*.nidaqmx_grpc.CreateCOPulseChanTimeRequest\x1a+.nidaqmx_grpc.CreateCOPulseChanTimeResponse\x12U\n\x0c\x43reateDIChan\x12!.nidaqmx_grpc.CreateDIChanRequest\x1a\".nidaqmx_grpc.CreateDIChanResponse\x12U\n\x0c\x43reateDOChan\x12!.nidaqmx_grpc.CreateDOChanRequest\x1a\".nidaqmx_grpc.CreateDOChanResponse\x12[\n\x0e\x43reateLinScale\x12#.nidaqmx_grpc.CreateLinScaleRequest\x1a$.nidaqmx_grpc.CreateLinScaleResponse\x12[\n\x0e\x43reateMapScale\x12#.nidaqmx_grpc.CreateMapScaleRequest\x1a$.nidaqmx_grpc.CreateMapScaleResponse\x12p\n\x15\x43reatePolynomialScale\x12*.nidaqmx_grpc.CreatePolynomialScaleRequest\x1a+.nidaqmx_grpc.CreatePolynomialScaleResponse\x12p\n\x15\x43reateTEDSAIAccelChan\x12*.nidaqmx_grpc.CreateTEDSAIAccelChanRequest\x1a+.nidaqmx_grpc.CreateTEDSAIAccelChanResponse\x12s\n\x16\x43reateTEDSAIBridgeChan\x12+.nidaqmx_grpc.CreateTEDSAIBridgeChanRequest\x1a,.nidaqmx_grpc.CreateTEDSAIBridgeChanResponse\x12v\n\x17\x43reateTEDSAICurrentChan\x12,.nidaqmx_grpc.CreateTEDSAICurrentChanRequest\x1a-.nidaqmx_grpc.CreateTEDSAICurrentChanResponse\x12\x82\x01\n\x1b\x43reateTEDSAIForceBridgeChan\x12\x30.nidaqmx_grpc.CreateTEDSAIForceBridgeChanRequest\x1a\x31.nidaqmx_grpc.CreateTEDSAIForceBridgeChanResponse\x12|\n\x19\x43reateTEDSAIForceIEPEChan\x12..nidaqmx_grpc.CreateTEDSAIForceIEPEChanRequest\x1a/.nidaqmx_grpc.CreateTEDSAIForceIEPEChanResponse\x12\x7f\n\x1a\x43reateTEDSAIMicrophoneChan\x12/.nidaqmx_grpc.CreateTEDSAIMicrophoneChanRequest\x1a\x30.nidaqmx_grpc.CreateTEDSAIMicrophoneChanResponse\x12v\n\x17\x43reateTEDSAIPosLVDTChan\x12,.nidaqmx_grpc.CreateTEDSAIPosLVDTChanRequest\x1a-.nidaqmx_grpc.CreateTEDSAIPosLVDTChanResponse\x12v\n\x17\x43reateTEDSAIPosRVDTChan\x12,.nidaqmx_grpc.CreateTEDSAIPosRVDTChanRequest\x1a-.nidaqmx_grpc.CreateTEDSAIPosRVDTChanResponse\x12\x8b\x01\n\x1e\x43reateTEDSAIPressureBridgeChan\x12\x33.nidaqmx_grpc.CreateTEDSAIPressureBridgeChanRequest\x1a\x34.nidaqmx_grpc.CreateTEDSAIPressureBridgeChanResponse\x12j\n\x13\x43reateTEDSAIRTDChan\x12(.nidaqmx_grpc.CreateTEDSAIRTDChanRequest\x1a).nidaqmx_grpc.CreateTEDSAIRTDChanResponse\x12\x7f\n\x1a\x43reateTEDSAIResistanceChan\x12/.nidaqmx_grpc.CreateTEDSAIResistanceChanRequest\x1a\x30.nidaqmx_grpc.CreateTEDSAIResistanceChanResponse\x12\x7f\n\x1a\x43reateTEDSAIStrainGageChan\x12/.nidaqmx_grpc.CreateTEDSAIStrainGageChanRequest\x1a\x30.nidaqmx_grpc.CreateTEDSAIStrainGageChanResponse\x12v\n\x17\x43reateTEDSAIThrmcplChan\x12,.nidaqmx_grpc.CreateTEDSAIThrmcplChanRequest\x1a-.nidaqmx_grpc.CreateTEDSAIThrmcplChanResponse\x12\x7f\n\x1a\x43reateTEDSAIThrmstrChanIex\x12/.nidaqmx_grpc.CreateTEDSAIThrmstrChanIexRequest\x1a\x30.nidaqmx_grpc.CreateTEDSAIThrmstrChanIexResponse\x12\x7f\n\x1a\x43reateTEDSAIThrmstrChanVex\x12/.nidaqmx_grpc.CreateTEDSAIThrmstrChanVexRequest\x1a\x30.nidaqmx_grpc.CreateTEDSAIThrmstrChanVexResponse\x12\x85\x01\n\x1c\x43reateTEDSAITorqueBridgeChan\x12\x31.nidaqmx_grpc.CreateTEDSAITorqueBridgeChanRequest\x1a\x32.nidaqmx_grpc.CreateTEDSAITorqueBridgeChanResponse\x12v\n\x17\x43reateTEDSAIVoltageChan\x12,.nidaqmx_grpc.CreateTEDSAIVoltageChanRequest\x1a-.nidaqmx_grpc.CreateTEDSAIVoltageChanResponse\x12\x91\x01\n CreateTEDSAIVoltageChanWithExcit\x12\x35.nidaqmx_grpc.CreateTEDSAIVoltageChanWithExcitRequest\x1a\x36.nidaqmx_grpc.CreateTEDSAIVoltageChanWithExcitResponse\x12\x61\n\x10\x43reateTableScale\x12%.nidaqmx_grpc.CreateTableScaleRequest\x1a&.nidaqmx_grpc.CreateTableScaleResponse\x12O\n\nCreateTask\x12\x1f.nidaqmx_grpc.CreateTaskRequest\x1a .nidaqmx_grpc.CreateTaskResponse\x12v\n\x17\x43reateWatchdogTimerTask\x12,.nidaqmx_grpc.CreateWatchdogTimerTaskRequest\x1a-.nidaqmx_grpc.CreateWatchdogTimerTaskResponse\x12|\n\x19\x43reateWatchdogTimerTaskEx\x12..nidaqmx_grpc.CreateWatchdogTimerTaskExRequest\x1a/.nidaqmx_grpc.CreateWatchdogTimerTaskExResponse\x12j\n\x13\x44\x65leteNetworkDevice\x12(.nidaqmx_grpc.DeleteNetworkDeviceRequest\x1a).nidaqmx_grpc.DeleteNetworkDeviceResponse\x12p\n\x15\x44\x65leteSavedGlobalChan\x12*.nidaqmx_grpc.DeleteSavedGlobalChanRequest\x1a+.nidaqmx_grpc.DeleteSavedGlobalChanResponse\x12\x61\n\x10\x44\x65leteSavedScale\x12%.nidaqmx_grpc.DeleteSavedScaleRequest\x1a&.nidaqmx_grpc.DeleteSavedScaleResponse\x12^\n\x0f\x44\x65leteSavedTask\x12$.nidaqmx_grpc.DeleteSavedTaskRequest\x1a%.nidaqmx_grpc.DeleteSavedTaskResponse\x12\x64\n\x11\x44\x65viceSupportsCal\x12&.nidaqmx_grpc.DeviceSupportsCalRequest\x1a\'.nidaqmx_grpc.DeviceSupportsCalResponse\x12[\n\x0e\x44isableRefTrig\x12#.nidaqmx_grpc.DisableRefTrigRequest\x1a$.nidaqmx_grpc.DisableRefTrigResponse\x12\x61\n\x10\x44isableStartTrig\x12%.nidaqmx_grpc.DisableStartTrigRequest\x1a&.nidaqmx_grpc.DisableStartTrigResponse\x12^\n\x0f\x44isconnectTerms\x12$.nidaqmx_grpc.DisconnectTermsRequest\x1a%.nidaqmx_grpc.DisconnectTermsResponse\x12U\n\x0c\x45xportSignal\x12!.nidaqmx_grpc.ExportSignalRequest\x1a\".nidaqmx_grpc.ExportSignalResponse\x12j\n\x13GetAIChanCalCalDate\x12(.nidaqmx_grpc.GetAIChanCalCalDateRequest\x1a).nidaqmx_grpc.GetAIChanCalCalDateResponse\x12j\n\x13GetAIChanCalExpDate\x12(.nidaqmx_grpc.GetAIChanCalExpDateRequest\x1a).nidaqmx_grpc.GetAIChanCalExpDateResponse\x12s\n\x16GetAnalogPowerUpStates\x12+.nidaqmx_grpc.GetAnalogPowerUpStatesRequest\x1a,.nidaqmx_grpc.GetAnalogPowerUpStatesResponse\x12\x9d\x01\n$GetAnalogPowerUpStatesWithOutputType\x12\x39.nidaqmx_grpc.GetAnalogPowerUpStatesWithOutputTypeRequest\x1a:.nidaqmx_grpc.GetAnalogPowerUpStatesWithOutputTypeResponse\x12\x82\x01\n\x1bGetArmStartTrigTimestampVal\x12\x30.nidaqmx_grpc.GetArmStartTrigTimestampValRequest\x1a\x31.nidaqmx_grpc.GetArmStartTrigTimestampValResponse\x12v\n\x17GetArmStartTrigTrigWhen\x12,.nidaqmx_grpc.GetArmStartTrigTrigWhenRequest\x1a-.nidaqmx_grpc.GetArmStartTrigTrigWhenResponse\x12\x9d\x01\n$GetAutoConfiguredCDAQSyncConnections\x12\x39.nidaqmx_grpc.GetAutoConfiguredCDAQSyncConnectionsRequest\x1a:.nidaqmx_grpc.GetAutoConfiguredCDAQSyncConnectionsResponse\x12y\n\x18GetBufferAttributeUInt32\x12-.nidaqmx_grpc.GetBufferAttributeUInt32Request\x1a..nidaqmx_grpc.GetBufferAttributeUInt32Response\x12v\n\x17GetCalInfoAttributeBool\x12,.nidaqmx_grpc.GetCalInfoAttributeBoolRequest\x1a-.nidaqmx_grpc.GetCalInfoAttributeBoolResponse\x12|\n\x19GetCalInfoAttributeDouble\x12..nidaqmx_grpc.GetCalInfoAttributeDoubleRequest\x1a/.nidaqmx_grpc.GetCalInfoAttributeDoubleResponse\x12|\n\x19GetCalInfoAttributeString\x12..nidaqmx_grpc.GetCalInfoAttributeStringRequest\x1a/.nidaqmx_grpc.GetCalInfoAttributeStringResponse\x12|\n\x19GetCalInfoAttributeUInt32\x12..nidaqmx_grpc.GetCalInfoAttributeUInt32Request\x1a/.nidaqmx_grpc.GetCalInfoAttributeUInt32Response\x12m\n\x14GetChanAttributeBool\x12).nidaqmx_grpc.GetChanAttributeBoolRequest\x1a*.nidaqmx_grpc.GetChanAttributeBoolResponse\x12s\n\x16GetChanAttributeDouble\x12+.nidaqmx_grpc.GetChanAttributeDoubleRequest\x1a,.nidaqmx_grpc.GetChanAttributeDoubleResponse\x12\x82\x01\n\x1bGetChanAttributeDoubleArray\x12\x30.nidaqmx_grpc.GetChanAttributeDoubleArrayRequest\x1a\x31.nidaqmx_grpc.GetChanAttributeDoubleArrayResponse\x12p\n\x15GetChanAttributeInt32\x12*.nidaqmx_grpc.GetChanAttributeInt32Request\x1a+.nidaqmx_grpc.GetChanAttributeInt32Response\x12s\n\x16GetChanAttributeString\x12+.nidaqmx_grpc.GetChanAttributeStringRequest\x1a,.nidaqmx_grpc.GetChanAttributeStringResponse\x12s\n\x16GetChanAttributeUInt32\x12+.nidaqmx_grpc.GetChanAttributeUInt32Request\x1a,.nidaqmx_grpc.GetChanAttributeUInt32Response\x12s\n\x16GetDeviceAttributeBool\x12+.nidaqmx_grpc.GetDeviceAttributeBoolRequest\x1a,.nidaqmx_grpc.GetDeviceAttributeBoolResponse\x12y\n\x18GetDeviceAttributeDouble\x12-.nidaqmx_grpc.GetDeviceAttributeDoubleRequest\x1a..nidaqmx_grpc.GetDeviceAttributeDoubleResponse\x12\x88\x01\n\x1dGetDeviceAttributeDoubleArray\x12\x32.nidaqmx_grpc.GetDeviceAttributeDoubleArrayRequest\x1a\x33.nidaqmx_grpc.GetDeviceAttributeDoubleArrayResponse\x12v\n\x17GetDeviceAttributeInt32\x12,.nidaqmx_grpc.GetDeviceAttributeInt32Request\x1a-.nidaqmx_grpc.GetDeviceAttributeInt32Response\x12\x85\x01\n\x1cGetDeviceAttributeInt32Array\x12\x31.nidaqmx_grpc.GetDeviceAttributeInt32ArrayRequest\x1a\x32.nidaqmx_grpc.GetDeviceAttributeInt32ArrayResponse\x12y\n\x18GetDeviceAttributeString\x12-.nidaqmx_grpc.GetDeviceAttributeStringRequest\x1a..nidaqmx_grpc.GetDeviceAttributeStringResponse\x12y\n\x18GetDeviceAttributeUInt32\x12-.nidaqmx_grpc.GetDeviceAttributeUInt32Request\x1a..nidaqmx_grpc.GetDeviceAttributeUInt32Response\x12\x88\x01\n\x1dGetDeviceAttributeUInt32Array\x12\x32.nidaqmx_grpc.GetDeviceAttributeUInt32ArrayRequest\x1a\x33.nidaqmx_grpc.GetDeviceAttributeUInt32ArrayResponse\x12\x94\x01\n!GetDigitalLogicFamilyPowerUpState\x12\x36.nidaqmx_grpc.GetDigitalLogicFamilyPowerUpStateRequest\x1a\x37.nidaqmx_grpc.GetDigitalLogicFamilyPowerUpStateResponse\x12v\n\x17GetDigitalPowerUpStates\x12,.nidaqmx_grpc.GetDigitalPowerUpStatesRequest\x1a-.nidaqmx_grpc.GetDigitalPowerUpStatesResponse\x12\x8b\x01\n\x1eGetDigitalPullUpPullDownStates\x12\x33.nidaqmx_grpc.GetDigitalPullUpPullDownStatesRequest\x1a\x34.nidaqmx_grpc.GetDigitalPullUpPullDownStatesResponse\x12\x85\x01\n\x1cGetDisconnectedCDAQSyncPorts\x12\x31.nidaqmx_grpc.GetDisconnectedCDAQSyncPortsRequest\x1a\x32.nidaqmx_grpc.GetDisconnectedCDAQSyncPortsResponse\x12[\n\x0eGetErrorString\x12#.nidaqmx_grpc.GetErrorStringRequest\x1a$.nidaqmx_grpc.GetErrorStringResponse\x12\x8b\x01\n\x1eGetExportedSignalAttributeBool\x12\x33.nidaqmx_grpc.GetExportedSignalAttributeBoolRequest\x1a\x34.nidaqmx_grpc.GetExportedSignalAttributeBoolResponse\x12\x91\x01\n GetExportedSignalAttributeDouble\x12\x35.nidaqmx_grpc.GetExportedSignalAttributeDoubleRequest\x1a\x36.nidaqmx_grpc.GetExportedSignalAttributeDoubleResponse\x12\x8e\x01\n\x1fGetExportedSignalAttributeInt32\x12\x34.nidaqmx_grpc.GetExportedSignalAttributeInt32Request\x1a\x35.nidaqmx_grpc.GetExportedSignalAttributeInt32Response\x12\x91\x01\n GetExportedSignalAttributeString\x12\x35.nidaqmx_grpc.GetExportedSignalAttributeStringRequest\x1a\x36.nidaqmx_grpc.GetExportedSignalAttributeStringResponse\x12\x91\x01\n GetExportedSignalAttributeUInt32\x12\x35.nidaqmx_grpc.GetExportedSignalAttributeUInt32Request\x1a\x36.nidaqmx_grpc.GetExportedSignalAttributeUInt32Response\x12y\n\x18GetExtCalLastDateAndTime\x12-.nidaqmx_grpc.GetExtCalLastDateAndTimeRequest\x1a..nidaqmx_grpc.GetExtCalLastDateAndTimeResponse\x12j\n\x13GetFirstSampClkWhen\x12(.nidaqmx_grpc.GetFirstSampClkWhenRequest\x1a).nidaqmx_grpc.GetFirstSampClkWhenResponse\x12y\n\x18GetFirstSampTimestampVal\x12-.nidaqmx_grpc.GetFirstSampTimestampValRequest\x1a..nidaqmx_grpc.GetFirstSampTimestampValResponse\x12\x64\n\x11GetNthTaskChannel\x12&.nidaqmx_grpc.GetNthTaskChannelRequest\x1a\'.nidaqmx_grpc.GetNthTaskChannelResponse\x12\x61\n\x10GetNthTaskDevice\x12%.nidaqmx_grpc.GetNthTaskDeviceRequest\x1a&.nidaqmx_grpc.GetNthTaskDeviceResponse\x12p\n\x15GetNthTaskReadChannel\x12*.nidaqmx_grpc.GetNthTaskReadChannelRequest\x1a+.nidaqmx_grpc.GetNthTaskReadChannelResponse\x12\x88\x01\n\x1dGetPersistedChanAttributeBool\x12\x32.nidaqmx_grpc.GetPersistedChanAttributeBoolRequest\x1a\x33.nidaqmx_grpc.GetPersistedChanAttributeBoolResponse\x12\x8e\x01\n\x1fGetPersistedChanAttributeString\x12\x34.nidaqmx_grpc.GetPersistedChanAttributeStringRequest\x1a\x35.nidaqmx_grpc.GetPersistedChanAttributeStringResponse\x12\x8b\x01\n\x1eGetPersistedScaleAttributeBool\x12\x33.nidaqmx_grpc.GetPersistedScaleAttributeBoolRequest\x1a\x34.nidaqmx_grpc.GetPersistedScaleAttributeBoolResponse\x12\x91\x01\n GetPersistedScaleAttributeString\x12\x35.nidaqmx_grpc.GetPersistedScaleAttributeStringRequest\x1a\x36.nidaqmx_grpc.GetPersistedScaleAttributeStringResponse\x12\x88\x01\n\x1dGetPersistedTaskAttributeBool\x12\x32.nidaqmx_grpc.GetPersistedTaskAttributeBoolRequest\x1a\x33.nidaqmx_grpc.GetPersistedTaskAttributeBoolResponse\x12\x8e\x01\n\x1fGetPersistedTaskAttributeString\x12\x34.nidaqmx_grpc.GetPersistedTaskAttributeStringRequest\x1a\x35.nidaqmx_grpc.GetPersistedTaskAttributeStringResponse\x12\x85\x01\n\x1cGetPhysicalChanAttributeBool\x12\x31.nidaqmx_grpc.GetPhysicalChanAttributeBoolRequest\x1a\x32.nidaqmx_grpc.GetPhysicalChanAttributeBoolResponse\x12\x88\x01\n\x1dGetPhysicalChanAttributeBytes\x12\x32.nidaqmx_grpc.GetPhysicalChanAttributeBytesRequest\x1a\x33.nidaqmx_grpc.GetPhysicalChanAttributeBytesResponse\x12\x8b\x01\n\x1eGetPhysicalChanAttributeDouble\x12\x33.nidaqmx_grpc.GetPhysicalChanAttributeDoubleRequest\x1a\x34.nidaqmx_grpc.GetPhysicalChanAttributeDoubleResponse\x12\x9a\x01\n#GetPhysicalChanAttributeDoubleArray\x12\x38.nidaqmx_grpc.GetPhysicalChanAttributeDoubleArrayRequest\x1a\x39.nidaqmx_grpc.GetPhysicalChanAttributeDoubleArrayResponse\x12\x88\x01\n\x1dGetPhysicalChanAttributeInt32\x12\x32.nidaqmx_grpc.GetPhysicalChanAttributeInt32Request\x1a\x33.nidaqmx_grpc.GetPhysicalChanAttributeInt32Response\x12\x97\x01\n\"GetPhysicalChanAttributeInt32Array\x12\x37.nidaqmx_grpc.GetPhysicalChanAttributeInt32ArrayRequest\x1a\x38.nidaqmx_grpc.GetPhysicalChanAttributeInt32ArrayResponse\x12\x8b\x01\n\x1eGetPhysicalChanAttributeString\x12\x33.nidaqmx_grpc.GetPhysicalChanAttributeStringRequest\x1a\x34.nidaqmx_grpc.GetPhysicalChanAttributeStringResponse\x12\x8b\x01\n\x1eGetPhysicalChanAttributeUInt32\x12\x33.nidaqmx_grpc.GetPhysicalChanAttributeUInt32Request\x1a\x34.nidaqmx_grpc.GetPhysicalChanAttributeUInt32Response\x12\x9a\x01\n#GetPhysicalChanAttributeUInt32Array\x12\x38.nidaqmx_grpc.GetPhysicalChanAttributeUInt32ArrayRequest\x1a\x39.nidaqmx_grpc.GetPhysicalChanAttributeUInt32ArrayResponse\x12m\n\x14GetReadAttributeBool\x12).nidaqmx_grpc.GetReadAttributeBoolRequest\x1a*.nidaqmx_grpc.GetReadAttributeBoolResponse\x12s\n\x16GetReadAttributeDouble\x12+.nidaqmx_grpc.GetReadAttributeDoubleRequest\x1a,.nidaqmx_grpc.GetReadAttributeDoubleResponse\x12p\n\x15GetReadAttributeInt32\x12*.nidaqmx_grpc.GetReadAttributeInt32Request\x1a+.nidaqmx_grpc.GetReadAttributeInt32Response\x12s\n\x16GetReadAttributeString\x12+.nidaqmx_grpc.GetReadAttributeStringRequest\x1a,.nidaqmx_grpc.GetReadAttributeStringResponse\x12s\n\x16GetReadAttributeUInt32\x12+.nidaqmx_grpc.GetReadAttributeUInt32Request\x1a,.nidaqmx_grpc.GetReadAttributeUInt32Response\x12s\n\x16GetReadAttributeUInt64\x12+.nidaqmx_grpc.GetReadAttributeUInt64Request\x1a,.nidaqmx_grpc.GetReadAttributeUInt64Response\x12y\n\x18GetRealTimeAttributeBool\x12-.nidaqmx_grpc.GetRealTimeAttributeBoolRequest\x1a..nidaqmx_grpc.GetRealTimeAttributeBoolResponse\x12|\n\x19GetRealTimeAttributeInt32\x12..nidaqmx_grpc.GetRealTimeAttributeInt32Request\x1a/.nidaqmx_grpc.GetRealTimeAttributeInt32Response\x12\x7f\n\x1aGetRealTimeAttributeUInt32\x12/.nidaqmx_grpc.GetRealTimeAttributeUInt32Request\x1a\x30.nidaqmx_grpc.GetRealTimeAttributeUInt32Response\x12s\n\x16GetRefTrigTimestampVal\x12+.nidaqmx_grpc.GetRefTrigTimestampValRequest\x1a,.nidaqmx_grpc.GetRefTrigTimestampValResponse\x12v\n\x17GetScaleAttributeDouble\x12,.nidaqmx_grpc.GetScaleAttributeDoubleRequest\x1a-.nidaqmx_grpc.GetScaleAttributeDoubleResponse\x12\x85\x01\n\x1cGetScaleAttributeDoubleArray\x12\x31.nidaqmx_grpc.GetScaleAttributeDoubleArrayRequest\x1a\x32.nidaqmx_grpc.GetScaleAttributeDoubleArrayResponse\x12s\n\x16GetScaleAttributeInt32\x12+.nidaqmx_grpc.GetScaleAttributeInt32Request\x1a,.nidaqmx_grpc.GetScaleAttributeInt32Response\x12v\n\x17GetScaleAttributeString\x12,.nidaqmx_grpc.GetScaleAttributeStringRequest\x1a-.nidaqmx_grpc.GetScaleAttributeStringResponse\x12|\n\x19GetSelfCalLastDateAndTime\x12..nidaqmx_grpc.GetSelfCalLastDateAndTimeRequest\x1a/.nidaqmx_grpc.GetSelfCalLastDateAndTimeResponse\x12y\n\x18GetStartTrigTimestampVal\x12-.nidaqmx_grpc.GetStartTrigTimestampValRequest\x1a..nidaqmx_grpc.GetStartTrigTimestampValResponse\x12m\n\x14GetStartTrigTrigWhen\x12).nidaqmx_grpc.GetStartTrigTrigWhenRequest\x1a*.nidaqmx_grpc.GetStartTrigTrigWhenResponse\x12m\n\x14GetSyncPulseTimeWhen\x12).nidaqmx_grpc.GetSyncPulseTimeWhenRequest\x1a*.nidaqmx_grpc.GetSyncPulseTimeWhenResponse\x12\x85\x01\n\x1cGetSystemInfoAttributeString\x12\x31.nidaqmx_grpc.GetSystemInfoAttributeStringRequest\x1a\x32.nidaqmx_grpc.GetSystemInfoAttributeStringResponse\x12\x85\x01\n\x1cGetSystemInfoAttributeUInt32\x12\x31.nidaqmx_grpc.GetSystemInfoAttributeUInt32Request\x1a\x32.nidaqmx_grpc.GetSystemInfoAttributeUInt32Response\x12m\n\x14GetTaskAttributeBool\x12).nidaqmx_grpc.GetTaskAttributeBoolRequest\x1a*.nidaqmx_grpc.GetTaskAttributeBoolResponse\x12s\n\x16GetTaskAttributeString\x12+.nidaqmx_grpc.GetTaskAttributeStringRequest\x1a,.nidaqmx_grpc.GetTaskAttributeStringResponse\x12s\n\x16GetTaskAttributeUInt32\x12+.nidaqmx_grpc.GetTaskAttributeUInt32Request\x1a,.nidaqmx_grpc.GetTaskAttributeUInt32Response\x12s\n\x16GetTimingAttributeBool\x12+.nidaqmx_grpc.GetTimingAttributeBoolRequest\x1a,.nidaqmx_grpc.GetTimingAttributeBoolResponse\x12y\n\x18GetTimingAttributeDouble\x12-.nidaqmx_grpc.GetTimingAttributeDoubleRequest\x1a..nidaqmx_grpc.GetTimingAttributeDoubleResponse\x12y\n\x18GetTimingAttributeExBool\x12-.nidaqmx_grpc.GetTimingAttributeExBoolRequest\x1a..nidaqmx_grpc.GetTimingAttributeExBoolResponse\x12\x7f\n\x1aGetTimingAttributeExDouble\x12/.nidaqmx_grpc.GetTimingAttributeExDoubleRequest\x1a\x30.nidaqmx_grpc.GetTimingAttributeExDoubleResponse\x12|\n\x19GetTimingAttributeExInt32\x12..nidaqmx_grpc.GetTimingAttributeExInt32Request\x1a/.nidaqmx_grpc.GetTimingAttributeExInt32Response\x12\x7f\n\x1aGetTimingAttributeExString\x12/.nidaqmx_grpc.GetTimingAttributeExStringRequest\x1a\x30.nidaqmx_grpc.GetTimingAttributeExStringResponse\x12\x88\x01\n\x1dGetTimingAttributeExTimestamp\x12\x32.nidaqmx_grpc.GetTimingAttributeExTimestampRequest\x1a\x33.nidaqmx_grpc.GetTimingAttributeExTimestampResponse\x12\x7f\n\x1aGetTimingAttributeExUInt32\x12/.nidaqmx_grpc.GetTimingAttributeExUInt32Request\x1a\x30.nidaqmx_grpc.GetTimingAttributeExUInt32Response\x12\x7f\n\x1aGetTimingAttributeExUInt64\x12/.nidaqmx_grpc.GetTimingAttributeExUInt64Request\x1a\x30.nidaqmx_grpc.GetTimingAttributeExUInt64Response\x12v\n\x17GetTimingAttributeInt32\x12,.nidaqmx_grpc.GetTimingAttributeInt32Request\x1a-.nidaqmx_grpc.GetTimingAttributeInt32Response\x12y\n\x18GetTimingAttributeString\x12-.nidaqmx_grpc.GetTimingAttributeStringRequest\x1a..nidaqmx_grpc.GetTimingAttributeStringResponse\x12\x82\x01\n\x1bGetTimingAttributeTimestamp\x12\x30.nidaqmx_grpc.GetTimingAttributeTimestampRequest\x1a\x31.nidaqmx_grpc.GetTimingAttributeTimestampResponse\x12y\n\x18GetTimingAttributeUInt32\x12-.nidaqmx_grpc.GetTimingAttributeUInt32Request\x1a..nidaqmx_grpc.GetTimingAttributeUInt32Response\x12y\n\x18GetTimingAttributeUInt64\x12-.nidaqmx_grpc.GetTimingAttributeUInt64Request\x1a..nidaqmx_grpc.GetTimingAttributeUInt64Response\x12m\n\x14GetTrigAttributeBool\x12).nidaqmx_grpc.GetTrigAttributeBoolRequest\x1a*.nidaqmx_grpc.GetTrigAttributeBoolResponse\x12s\n\x16GetTrigAttributeDouble\x12+.nidaqmx_grpc.GetTrigAttributeDoubleRequest\x1a,.nidaqmx_grpc.GetTrigAttributeDoubleResponse\x12\x82\x01\n\x1bGetTrigAttributeDoubleArray\x12\x30.nidaqmx_grpc.GetTrigAttributeDoubleArrayRequest\x1a\x31.nidaqmx_grpc.GetTrigAttributeDoubleArrayResponse\x12p\n\x15GetTrigAttributeInt32\x12*.nidaqmx_grpc.GetTrigAttributeInt32Request\x1a+.nidaqmx_grpc.GetTrigAttributeInt32Response\x12\x7f\n\x1aGetTrigAttributeInt32Array\x12/.nidaqmx_grpc.GetTrigAttributeInt32ArrayRequest\x1a\x30.nidaqmx_grpc.GetTrigAttributeInt32ArrayResponse\x12s\n\x16GetTrigAttributeString\x12+.nidaqmx_grpc.GetTrigAttributeStringRequest\x1a,.nidaqmx_grpc.GetTrigAttributeStringResponse\x12|\n\x19GetTrigAttributeTimestamp\x12..nidaqmx_grpc.GetTrigAttributeTimestampRequest\x1a/.nidaqmx_grpc.GetTrigAttributeTimestampResponse\x12s\n\x16GetTrigAttributeUInt32\x12+.nidaqmx_grpc.GetTrigAttributeUInt32Request\x1a,.nidaqmx_grpc.GetTrigAttributeUInt32Response\x12y\n\x18GetWatchdogAttributeBool\x12-.nidaqmx_grpc.GetWatchdogAttributeBoolRequest\x1a..nidaqmx_grpc.GetWatchdogAttributeBoolResponse\x12\x7f\n\x1aGetWatchdogAttributeDouble\x12/.nidaqmx_grpc.GetWatchdogAttributeDoubleRequest\x1a\x30.nidaqmx_grpc.GetWatchdogAttributeDoubleResponse\x12|\n\x19GetWatchdogAttributeInt32\x12..nidaqmx_grpc.GetWatchdogAttributeInt32Request\x1a/.nidaqmx_grpc.GetWatchdogAttributeInt32Response\x12\x7f\n\x1aGetWatchdogAttributeString\x12/.nidaqmx_grpc.GetWatchdogAttributeStringRequest\x1a\x30.nidaqmx_grpc.GetWatchdogAttributeStringResponse\x12p\n\x15GetWriteAttributeBool\x12*.nidaqmx_grpc.GetWriteAttributeBoolRequest\x1a+.nidaqmx_grpc.GetWriteAttributeBoolResponse\x12v\n\x17GetWriteAttributeDouble\x12,.nidaqmx_grpc.GetWriteAttributeDoubleRequest\x1a-.nidaqmx_grpc.GetWriteAttributeDoubleResponse\x12s\n\x16GetWriteAttributeInt32\x12+.nidaqmx_grpc.GetWriteAttributeInt32Request\x1a,.nidaqmx_grpc.GetWriteAttributeInt32Response\x12v\n\x17GetWriteAttributeString\x12,.nidaqmx_grpc.GetWriteAttributeStringRequest\x1a-.nidaqmx_grpc.GetWriteAttributeStringResponse\x12v\n\x17GetWriteAttributeUInt32\x12,.nidaqmx_grpc.GetWriteAttributeUInt32Request\x1a-.nidaqmx_grpc.GetWriteAttributeUInt32Response\x12v\n\x17GetWriteAttributeUInt64\x12,.nidaqmx_grpc.GetWriteAttributeUInt64Request\x1a-.nidaqmx_grpc.GetWriteAttributeUInt64Response\x12O\n\nIsTaskDone\x12\x1f.nidaqmx_grpc.IsTaskDoneRequest\x1a .nidaqmx_grpc.IsTaskDoneResponse\x12I\n\x08LoadTask\x12\x1d.nidaqmx_grpc.LoadTaskRequest\x1a\x1e.nidaqmx_grpc.LoadTaskResponse\x12\x8e\x01\n\x1fPerformBridgeOffsetNullingCalEx\x12\x34.nidaqmx_grpc.PerformBridgeOffsetNullingCalExRequest\x1a\x35.nidaqmx_grpc.PerformBridgeOffsetNullingCalExResponse\x12v\n\x17PerformBridgeShuntCalEx\x12,.nidaqmx_grpc.PerformBridgeShuntCalExRequest\x1a-.nidaqmx_grpc.PerformBridgeShuntCalExResponse\x12v\n\x17PerformStrainShuntCalEx\x12,.nidaqmx_grpc.PerformStrainShuntCalExRequest\x1a-.nidaqmx_grpc.PerformStrainShuntCalExResponse\x12\x97\x01\n\"PerformThrmcplLeadOffsetNullingCal\x12\x37.nidaqmx_grpc.PerformThrmcplLeadOffsetNullingCalRequest\x1a\x38.nidaqmx_grpc.PerformThrmcplLeadOffsetNullingCalResponse\x12X\n\rReadAnalogF64\x12\".nidaqmx_grpc.ReadAnalogF64Request\x1a#.nidaqmx_grpc.ReadAnalogF64Response\x12g\n\x12\x42\x65ginReadAnalogF64\x12\'.nidaqmx_grpc.BeginReadAnalogF64Request\x1a(.nidaqmx_grpc.BeginReadAnalogF64Response\x12j\n\x13ReadAnalogScalarF64\x12(.nidaqmx_grpc.ReadAnalogScalarF64Request\x1a).nidaqmx_grpc.ReadAnalogScalarF64Response\x12y\n\x18\x42\x65ginReadAnalogScalarF64\x12-.nidaqmx_grpc.BeginReadAnalogScalarF64Request\x1a..nidaqmx_grpc.BeginReadAnalogScalarF64Response\x12X\n\rReadBinaryI16\x12\".nidaqmx_grpc.ReadBinaryI16Request\x1a#.nidaqmx_grpc.ReadBinaryI16Response\x12g\n\x12\x42\x65ginReadBinaryI16\x12\'.nidaqmx_grpc.BeginReadBinaryI16Request\x1a(.nidaqmx_grpc.BeginReadBinaryI16Response\x12X\n\rReadBinaryI32\x12\".nidaqmx_grpc.ReadBinaryI32Request\x1a#.nidaqmx_grpc.ReadBinaryI32Response\x12g\n\x12\x42\x65ginReadBinaryI32\x12\'.nidaqmx_grpc.BeginReadBinaryI32Request\x1a(.nidaqmx_grpc.BeginReadBinaryI32Response\x12X\n\rReadBinaryU16\x12\".nidaqmx_grpc.ReadBinaryU16Request\x1a#.nidaqmx_grpc.ReadBinaryU16Response\x12g\n\x12\x42\x65ginReadBinaryU16\x12\'.nidaqmx_grpc.BeginReadBinaryU16Request\x1a(.nidaqmx_grpc.BeginReadBinaryU16Response\x12X\n\rReadBinaryU32\x12\".nidaqmx_grpc.ReadBinaryU32Request\x1a#.nidaqmx_grpc.ReadBinaryU32Response\x12g\n\x12\x42\x65ginReadBinaryU32\x12\'.nidaqmx_grpc.BeginReadBinaryU32Request\x1a(.nidaqmx_grpc.BeginReadBinaryU32Response\x12[\n\x0eReadCounterF64\x12#.nidaqmx_grpc.ReadCounterF64Request\x1a$.nidaqmx_grpc.ReadCounterF64Response\x12j\n\x13\x42\x65ginReadCounterF64\x12(.nidaqmx_grpc.BeginReadCounterF64Request\x1a).nidaqmx_grpc.BeginReadCounterF64Response\x12\x61\n\x10ReadCounterF64Ex\x12%.nidaqmx_grpc.ReadCounterF64ExRequest\x1a&.nidaqmx_grpc.ReadCounterF64ExResponse\x12p\n\x15\x42\x65ginReadCounterF64Ex\x12*.nidaqmx_grpc.BeginReadCounterF64ExRequest\x1a+.nidaqmx_grpc.BeginReadCounterF64ExResponse\x12m\n\x14ReadCounterScalarF64\x12).nidaqmx_grpc.ReadCounterScalarF64Request\x1a*.nidaqmx_grpc.ReadCounterScalarF64Response\x12|\n\x19\x42\x65ginReadCounterScalarF64\x12..nidaqmx_grpc.BeginReadCounterScalarF64Request\x1a/.nidaqmx_grpc.BeginReadCounterScalarF64Response\x12m\n\x14ReadCounterScalarU32\x12).nidaqmx_grpc.ReadCounterScalarU32Request\x1a*.nidaqmx_grpc.ReadCounterScalarU32Response\x12|\n\x19\x42\x65ginReadCounterScalarU32\x12..nidaqmx_grpc.BeginReadCounterScalarU32Request\x1a/.nidaqmx_grpc.BeginReadCounterScalarU32Response\x12[\n\x0eReadCounterU32\x12#.nidaqmx_grpc.ReadCounterU32Request\x1a$.nidaqmx_grpc.ReadCounterU32Response\x12j\n\x13\x42\x65ginReadCounterU32\x12(.nidaqmx_grpc.BeginReadCounterU32Request\x1a).nidaqmx_grpc.BeginReadCounterU32Response\x12\x61\n\x10ReadCounterU32Ex\x12%.nidaqmx_grpc.ReadCounterU32ExRequest\x1a&.nidaqmx_grpc.ReadCounterU32ExResponse\x12p\n\x15\x42\x65ginReadCounterU32Ex\x12*.nidaqmx_grpc.BeginReadCounterU32ExRequest\x1a+.nidaqmx_grpc.BeginReadCounterU32ExResponse\x12R\n\x0bReadCtrFreq\x12 .nidaqmx_grpc.ReadCtrFreqRequest\x1a!.nidaqmx_grpc.ReadCtrFreqResponse\x12\x61\n\x10\x42\x65ginReadCtrFreq\x12%.nidaqmx_grpc.BeginReadCtrFreqRequest\x1a&.nidaqmx_grpc.BeginReadCtrFreqResponse\x12\x64\n\x11ReadCtrFreqScalar\x12&.nidaqmx_grpc.ReadCtrFreqScalarRequest\x1a\'.nidaqmx_grpc.ReadCtrFreqScalarResponse\x12s\n\x16\x42\x65ginReadCtrFreqScalar\x12+.nidaqmx_grpc.BeginReadCtrFreqScalarRequest\x1a,.nidaqmx_grpc.BeginReadCtrFreqScalarResponse\x12U\n\x0cReadCtrTicks\x12!.nidaqmx_grpc.ReadCtrTicksRequest\x1a\".nidaqmx_grpc.ReadCtrTicksResponse\x12\x64\n\x11\x42\x65ginReadCtrTicks\x12&.nidaqmx_grpc.BeginReadCtrTicksRequest\x1a\'.nidaqmx_grpc.BeginReadCtrTicksResponse\x12g\n\x12ReadCtrTicksScalar\x12\'.nidaqmx_grpc.ReadCtrTicksScalarRequest\x1a(.nidaqmx_grpc.ReadCtrTicksScalarResponse\x12v\n\x17\x42\x65ginReadCtrTicksScalar\x12,.nidaqmx_grpc.BeginReadCtrTicksScalarRequest\x1a-.nidaqmx_grpc.BeginReadCtrTicksScalarResponse\x12R\n\x0bReadCtrTime\x12 .nidaqmx_grpc.ReadCtrTimeRequest\x1a!.nidaqmx_grpc.ReadCtrTimeResponse\x12\x61\n\x10\x42\x65ginReadCtrTime\x12%.nidaqmx_grpc.BeginReadCtrTimeRequest\x1a&.nidaqmx_grpc.BeginReadCtrTimeResponse\x12\x64\n\x11ReadCtrTimeScalar\x12&.nidaqmx_grpc.ReadCtrTimeScalarRequest\x1a\'.nidaqmx_grpc.ReadCtrTimeScalarResponse\x12s\n\x16\x42\x65ginReadCtrTimeScalar\x12+.nidaqmx_grpc.BeginReadCtrTimeScalarRequest\x1a,.nidaqmx_grpc.BeginReadCtrTimeScalarResponse\x12\x61\n\x10ReadDigitalLines\x12%.nidaqmx_grpc.ReadDigitalLinesRequest\x1a&.nidaqmx_grpc.ReadDigitalLinesResponse\x12p\n\x15\x42\x65ginReadDigitalLines\x12*.nidaqmx_grpc.BeginReadDigitalLinesRequest\x1a+.nidaqmx_grpc.BeginReadDigitalLinesResponse\x12m\n\x14ReadDigitalScalarU32\x12).nidaqmx_grpc.ReadDigitalScalarU32Request\x1a*.nidaqmx_grpc.ReadDigitalScalarU32Response\x12|\n\x19\x42\x65ginReadDigitalScalarU32\x12..nidaqmx_grpc.BeginReadDigitalScalarU32Request\x1a/.nidaqmx_grpc.BeginReadDigitalScalarU32Response\x12[\n\x0eReadDigitalU16\x12#.nidaqmx_grpc.ReadDigitalU16Request\x1a$.nidaqmx_grpc.ReadDigitalU16Response\x12j\n\x13\x42\x65ginReadDigitalU16\x12(.nidaqmx_grpc.BeginReadDigitalU16Request\x1a).nidaqmx_grpc.BeginReadDigitalU16Response\x12[\n\x0eReadDigitalU32\x12#.nidaqmx_grpc.ReadDigitalU32Request\x1a$.nidaqmx_grpc.ReadDigitalU32Response\x12j\n\x13\x42\x65ginReadDigitalU32\x12(.nidaqmx_grpc.BeginReadDigitalU32Request\x1a).nidaqmx_grpc.BeginReadDigitalU32Response\x12X\n\rReadDigitalU8\x12\".nidaqmx_grpc.ReadDigitalU8Request\x1a#.nidaqmx_grpc.ReadDigitalU8Response\x12g\n\x12\x42\x65ginReadDigitalU8\x12\'.nidaqmx_grpc.BeginReadDigitalU8Request\x1a(.nidaqmx_grpc.BeginReadDigitalU8Response\x12^\n\x0fReadIDPinMemory\x12$.nidaqmx_grpc.ReadIDPinMemoryRequest\x1a%.nidaqmx_grpc.ReadIDPinMemoryResponse\x12g\n\x12ReadPowerBinaryI16\x12\'.nidaqmx_grpc.ReadPowerBinaryI16Request\x1a(.nidaqmx_grpc.ReadPowerBinaryI16Response\x12v\n\x17\x42\x65ginReadPowerBinaryI16\x12,.nidaqmx_grpc.BeginReadPowerBinaryI16Request\x1a-.nidaqmx_grpc.BeginReadPowerBinaryI16Response\x12U\n\x0cReadPowerF64\x12!.nidaqmx_grpc.ReadPowerF64Request\x1a\".nidaqmx_grpc.ReadPowerF64Response\x12\x64\n\x11\x42\x65ginReadPowerF64\x12&.nidaqmx_grpc.BeginReadPowerF64Request\x1a\'.nidaqmx_grpc.BeginReadPowerF64Response\x12g\n\x12ReadPowerScalarF64\x12\'.nidaqmx_grpc.ReadPowerScalarF64Request\x1a(.nidaqmx_grpc.ReadPowerScalarF64Response\x12v\n\x17\x42\x65ginReadPowerScalarF64\x12,.nidaqmx_grpc.BeginReadPowerScalarF64Request\x1a-.nidaqmx_grpc.BeginReadPowerScalarF64Response\x12\x46\n\x07ReadRaw\x12\x1c.nidaqmx_grpc.ReadRawRequest\x1a\x1d.nidaqmx_grpc.ReadRawResponse\x12U\n\x0c\x42\x65ginReadRaw\x12!.nidaqmx_grpc.BeginReadRawRequest\x1a\".nidaqmx_grpc.BeginReadRawResponse\x12\x66\n\x11RegisterDoneEvent\x12&.nidaqmx_grpc.RegisterDoneEventRequest\x1a\'.nidaqmx_grpc.RegisterDoneEventResponse0\x01\x12\x81\x01\n\x1aRegisterEveryNSamplesEvent\x12/.nidaqmx_grpc.RegisterEveryNSamplesEventRequest\x1a\x30.nidaqmx_grpc.RegisterEveryNSamplesEventResponse0\x01\x12l\n\x13RegisterSignalEvent\x12(.nidaqmx_grpc.RegisterSignalEventRequest\x1a).nidaqmx_grpc.RegisterSignalEventResponse0\x01\x12y\n\x18RemoveCDAQSyncConnection\x12-.nidaqmx_grpc.RemoveCDAQSyncConnectionRequest\x1a..nidaqmx_grpc.RemoveCDAQSyncConnectionResponse\x12m\n\x14ReserveNetworkDevice\x12).nidaqmx_grpc.ReserveNetworkDeviceRequest\x1a*.nidaqmx_grpc.ReserveNetworkDeviceResponse\x12m\n\x14ResetBufferAttribute\x12).nidaqmx_grpc.ResetBufferAttributeRequest\x1a*.nidaqmx_grpc.ResetBufferAttributeResponse\x12g\n\x12ResetChanAttribute\x12\'.nidaqmx_grpc.ResetChanAttributeRequest\x1a(.nidaqmx_grpc.ResetChanAttributeResponse\x12R\n\x0bResetDevice\x12 .nidaqmx_grpc.ResetDeviceRequest\x1a!.nidaqmx_grpc.ResetDeviceResponse\x12\x85\x01\n\x1cResetExportedSignalAttribute\x12\x31.nidaqmx_grpc.ResetExportedSignalAttributeRequest\x1a\x32.nidaqmx_grpc.ResetExportedSignalAttributeResponse\x12g\n\x12ResetReadAttribute\x12\'.nidaqmx_grpc.ResetReadAttributeRequest\x1a(.nidaqmx_grpc.ResetReadAttributeResponse\x12s\n\x16ResetRealTimeAttribute\x12+.nidaqmx_grpc.ResetRealTimeAttributeRequest\x1a,.nidaqmx_grpc.ResetRealTimeAttributeResponse\x12m\n\x14ResetTimingAttribute\x12).nidaqmx_grpc.ResetTimingAttributeRequest\x1a*.nidaqmx_grpc.ResetTimingAttributeResponse\x12s\n\x16ResetTimingAttributeEx\x12+.nidaqmx_grpc.ResetTimingAttributeExRequest\x1a,.nidaqmx_grpc.ResetTimingAttributeExResponse\x12g\n\x12ResetTrigAttribute\x12\'.nidaqmx_grpc.ResetTrigAttributeRequest\x1a(.nidaqmx_grpc.ResetTrigAttributeResponse\x12s\n\x16ResetWatchdogAttribute\x12+.nidaqmx_grpc.ResetWatchdogAttributeRequest\x1a,.nidaqmx_grpc.ResetWatchdogAttributeResponse\x12j\n\x13ResetWriteAttribute\x12(.nidaqmx_grpc.ResetWriteAttributeRequest\x1a).nidaqmx_grpc.ResetWriteAttributeResponse\x12s\n\x16RestoreLastExtCalConst\x12+.nidaqmx_grpc.RestoreLastExtCalConstRequest\x1a,.nidaqmx_grpc.RestoreLastExtCalConstResponse\x12[\n\x0eSaveGlobalChan\x12#.nidaqmx_grpc.SaveGlobalChanRequest\x1a$.nidaqmx_grpc.SaveGlobalChanResponse\x12L\n\tSaveScale\x12\x1e.nidaqmx_grpc.SaveScaleRequest\x1a\x1f.nidaqmx_grpc.SaveScaleResponse\x12I\n\x08SaveTask\x12\x1d.nidaqmx_grpc.SaveTaskRequest\x1a\x1e.nidaqmx_grpc.SaveTaskResponse\x12\x46\n\x07SelfCal\x12\x1c.nidaqmx_grpc.SelfCalRequest\x1a\x1d.nidaqmx_grpc.SelfCalResponse\x12[\n\x0eSelfTestDevice\x12#.nidaqmx_grpc.SelfTestDeviceRequest\x1a$.nidaqmx_grpc.SelfTestDeviceResponse\x12j\n\x13SetAIChanCalCalDate\x12(.nidaqmx_grpc.SetAIChanCalCalDateRequest\x1a).nidaqmx_grpc.SetAIChanCalCalDateResponse\x12j\n\x13SetAIChanCalExpDate\x12(.nidaqmx_grpc.SetAIChanCalExpDateRequest\x1a).nidaqmx_grpc.SetAIChanCalExpDateResponse\x12s\n\x16SetAnalogPowerUpStates\x12+.nidaqmx_grpc.SetAnalogPowerUpStatesRequest\x1a,.nidaqmx_grpc.SetAnalogPowerUpStatesResponse\x12\x9d\x01\n$SetAnalogPowerUpStatesWithOutputType\x12\x39.nidaqmx_grpc.SetAnalogPowerUpStatesWithOutputTypeRequest\x1a:.nidaqmx_grpc.SetAnalogPowerUpStatesWithOutputTypeResponse\x12v\n\x17SetArmStartTrigTrigWhen\x12,.nidaqmx_grpc.SetArmStartTrigTrigWhenRequest\x1a-.nidaqmx_grpc.SetArmStartTrigTrigWhenResponse\x12y\n\x18SetBufferAttributeUInt32\x12-.nidaqmx_grpc.SetBufferAttributeUInt32Request\x1a..nidaqmx_grpc.SetBufferAttributeUInt32Response\x12v\n\x17SetCalInfoAttributeBool\x12,.nidaqmx_grpc.SetCalInfoAttributeBoolRequest\x1a-.nidaqmx_grpc.SetCalInfoAttributeBoolResponse\x12|\n\x19SetCalInfoAttributeDouble\x12..nidaqmx_grpc.SetCalInfoAttributeDoubleRequest\x1a/.nidaqmx_grpc.SetCalInfoAttributeDoubleResponse\x12|\n\x19SetCalInfoAttributeString\x12..nidaqmx_grpc.SetCalInfoAttributeStringRequest\x1a/.nidaqmx_grpc.SetCalInfoAttributeStringResponse\x12|\n\x19SetCalInfoAttributeUInt32\x12..nidaqmx_grpc.SetCalInfoAttributeUInt32Request\x1a/.nidaqmx_grpc.SetCalInfoAttributeUInt32Response\x12m\n\x14SetChanAttributeBool\x12).nidaqmx_grpc.SetChanAttributeBoolRequest\x1a*.nidaqmx_grpc.SetChanAttributeBoolResponse\x12s\n\x16SetChanAttributeDouble\x12+.nidaqmx_grpc.SetChanAttributeDoubleRequest\x1a,.nidaqmx_grpc.SetChanAttributeDoubleResponse\x12\x82\x01\n\x1bSetChanAttributeDoubleArray\x12\x30.nidaqmx_grpc.SetChanAttributeDoubleArrayRequest\x1a\x31.nidaqmx_grpc.SetChanAttributeDoubleArrayResponse\x12p\n\x15SetChanAttributeInt32\x12*.nidaqmx_grpc.SetChanAttributeInt32Request\x1a+.nidaqmx_grpc.SetChanAttributeInt32Response\x12s\n\x16SetChanAttributeString\x12+.nidaqmx_grpc.SetChanAttributeStringRequest\x1a,.nidaqmx_grpc.SetChanAttributeStringResponse\x12s\n\x16SetChanAttributeUInt32\x12+.nidaqmx_grpc.SetChanAttributeUInt32Request\x1a,.nidaqmx_grpc.SetChanAttributeUInt32Response\x12\x94\x01\n!SetDigitalLogicFamilyPowerUpState\x12\x36.nidaqmx_grpc.SetDigitalLogicFamilyPowerUpStateRequest\x1a\x37.nidaqmx_grpc.SetDigitalLogicFamilyPowerUpStateResponse\x12v\n\x17SetDigitalPowerUpStates\x12,.nidaqmx_grpc.SetDigitalPowerUpStatesRequest\x1a-.nidaqmx_grpc.SetDigitalPowerUpStatesResponse\x12\x8b\x01\n\x1eSetDigitalPullUpPullDownStates\x12\x33.nidaqmx_grpc.SetDigitalPullUpPullDownStatesRequest\x1a\x34.nidaqmx_grpc.SetDigitalPullUpPullDownStatesResponse\x12\x8b\x01\n\x1eSetExportedSignalAttributeBool\x12\x33.nidaqmx_grpc.SetExportedSignalAttributeBoolRequest\x1a\x34.nidaqmx_grpc.SetExportedSignalAttributeBoolResponse\x12\x91\x01\n SetExportedSignalAttributeDouble\x12\x35.nidaqmx_grpc.SetExportedSignalAttributeDoubleRequest\x1a\x36.nidaqmx_grpc.SetExportedSignalAttributeDoubleResponse\x12\x8e\x01\n\x1fSetExportedSignalAttributeInt32\x12\x34.nidaqmx_grpc.SetExportedSignalAttributeInt32Request\x1a\x35.nidaqmx_grpc.SetExportedSignalAttributeInt32Response\x12\x91\x01\n SetExportedSignalAttributeString\x12\x35.nidaqmx_grpc.SetExportedSignalAttributeStringRequest\x1a\x36.nidaqmx_grpc.SetExportedSignalAttributeStringResponse\x12\x91\x01\n SetExportedSignalAttributeUInt32\x12\x35.nidaqmx_grpc.SetExportedSignalAttributeUInt32Request\x1a\x36.nidaqmx_grpc.SetExportedSignalAttributeUInt32Response\x12j\n\x13SetFirstSampClkWhen\x12(.nidaqmx_grpc.SetFirstSampClkWhenRequest\x1a).nidaqmx_grpc.SetFirstSampClkWhenResponse\x12m\n\x14SetReadAttributeBool\x12).nidaqmx_grpc.SetReadAttributeBoolRequest\x1a*.nidaqmx_grpc.SetReadAttributeBoolResponse\x12s\n\x16SetReadAttributeDouble\x12+.nidaqmx_grpc.SetReadAttributeDoubleRequest\x1a,.nidaqmx_grpc.SetReadAttributeDoubleResponse\x12p\n\x15SetReadAttributeInt32\x12*.nidaqmx_grpc.SetReadAttributeInt32Request\x1a+.nidaqmx_grpc.SetReadAttributeInt32Response\x12s\n\x16SetReadAttributeString\x12+.nidaqmx_grpc.SetReadAttributeStringRequest\x1a,.nidaqmx_grpc.SetReadAttributeStringResponse\x12s\n\x16SetReadAttributeUInt32\x12+.nidaqmx_grpc.SetReadAttributeUInt32Request\x1a,.nidaqmx_grpc.SetReadAttributeUInt32Response\x12s\n\x16SetReadAttributeUInt64\x12+.nidaqmx_grpc.SetReadAttributeUInt64Request\x1a,.nidaqmx_grpc.SetReadAttributeUInt64Response\x12y\n\x18SetRealTimeAttributeBool\x12-.nidaqmx_grpc.SetRealTimeAttributeBoolRequest\x1a..nidaqmx_grpc.SetRealTimeAttributeBoolResponse\x12|\n\x19SetRealTimeAttributeInt32\x12..nidaqmx_grpc.SetRealTimeAttributeInt32Request\x1a/.nidaqmx_grpc.SetRealTimeAttributeInt32Response\x12\x7f\n\x1aSetRealTimeAttributeUInt32\x12/.nidaqmx_grpc.SetRealTimeAttributeUInt32Request\x1a\x30.nidaqmx_grpc.SetRealTimeAttributeUInt32Response\x12v\n\x17SetScaleAttributeDouble\x12,.nidaqmx_grpc.SetScaleAttributeDoubleRequest\x1a-.nidaqmx_grpc.SetScaleAttributeDoubleResponse\x12\x85\x01\n\x1cSetScaleAttributeDoubleArray\x12\x31.nidaqmx_grpc.SetScaleAttributeDoubleArrayRequest\x1a\x32.nidaqmx_grpc.SetScaleAttributeDoubleArrayResponse\x12s\n\x16SetScaleAttributeInt32\x12+.nidaqmx_grpc.SetScaleAttributeInt32Request\x1a,.nidaqmx_grpc.SetScaleAttributeInt32Response\x12v\n\x17SetScaleAttributeString\x12,.nidaqmx_grpc.SetScaleAttributeStringRequest\x1a-.nidaqmx_grpc.SetScaleAttributeStringResponse\x12m\n\x14SetStartTrigTrigWhen\x12).nidaqmx_grpc.SetStartTrigTrigWhenRequest\x1a*.nidaqmx_grpc.SetStartTrigTrigWhenResponse\x12m\n\x14SetSyncPulseTimeWhen\x12).nidaqmx_grpc.SetSyncPulseTimeWhenRequest\x1a*.nidaqmx_grpc.SetSyncPulseTimeWhenResponse\x12s\n\x16SetTimingAttributeBool\x12+.nidaqmx_grpc.SetTimingAttributeBoolRequest\x1a,.nidaqmx_grpc.SetTimingAttributeBoolResponse\x12y\n\x18SetTimingAttributeDouble\x12-.nidaqmx_grpc.SetTimingAttributeDoubleRequest\x1a..nidaqmx_grpc.SetTimingAttributeDoubleResponse\x12y\n\x18SetTimingAttributeExBool\x12-.nidaqmx_grpc.SetTimingAttributeExBoolRequest\x1a..nidaqmx_grpc.SetTimingAttributeExBoolResponse\x12\x7f\n\x1aSetTimingAttributeExDouble\x12/.nidaqmx_grpc.SetTimingAttributeExDoubleRequest\x1a\x30.nidaqmx_grpc.SetTimingAttributeExDoubleResponse\x12|\n\x19SetTimingAttributeExInt32\x12..nidaqmx_grpc.SetTimingAttributeExInt32Request\x1a/.nidaqmx_grpc.SetTimingAttributeExInt32Response\x12\x7f\n\x1aSetTimingAttributeExString\x12/.nidaqmx_grpc.SetTimingAttributeExStringRequest\x1a\x30.nidaqmx_grpc.SetTimingAttributeExStringResponse\x12\x88\x01\n\x1dSetTimingAttributeExTimestamp\x12\x32.nidaqmx_grpc.SetTimingAttributeExTimestampRequest\x1a\x33.nidaqmx_grpc.SetTimingAttributeExTimestampResponse\x12\x7f\n\x1aSetTimingAttributeExUInt32\x12/.nidaqmx_grpc.SetTimingAttributeExUInt32Request\x1a\x30.nidaqmx_grpc.SetTimingAttributeExUInt32Response\x12\x7f\n\x1aSetTimingAttributeExUInt64\x12/.nidaqmx_grpc.SetTimingAttributeExUInt64Request\x1a\x30.nidaqmx_grpc.SetTimingAttributeExUInt64Response\x12v\n\x17SetTimingAttributeInt32\x12,.nidaqmx_grpc.SetTimingAttributeInt32Request\x1a-.nidaqmx_grpc.SetTimingAttributeInt32Response\x12y\n\x18SetTimingAttributeString\x12-.nidaqmx_grpc.SetTimingAttributeStringRequest\x1a..nidaqmx_grpc.SetTimingAttributeStringResponse\x12\x82\x01\n\x1bSetTimingAttributeTimestamp\x12\x30.nidaqmx_grpc.SetTimingAttributeTimestampRequest\x1a\x31.nidaqmx_grpc.SetTimingAttributeTimestampResponse\x12y\n\x18SetTimingAttributeUInt32\x12-.nidaqmx_grpc.SetTimingAttributeUInt32Request\x1a..nidaqmx_grpc.SetTimingAttributeUInt32Response\x12y\n\x18SetTimingAttributeUInt64\x12-.nidaqmx_grpc.SetTimingAttributeUInt64Request\x1a..nidaqmx_grpc.SetTimingAttributeUInt64Response\x12m\n\x14SetTrigAttributeBool\x12).nidaqmx_grpc.SetTrigAttributeBoolRequest\x1a*.nidaqmx_grpc.SetTrigAttributeBoolResponse\x12s\n\x16SetTrigAttributeDouble\x12+.nidaqmx_grpc.SetTrigAttributeDoubleRequest\x1a,.nidaqmx_grpc.SetTrigAttributeDoubleResponse\x12\x82\x01\n\x1bSetTrigAttributeDoubleArray\x12\x30.nidaqmx_grpc.SetTrigAttributeDoubleArrayRequest\x1a\x31.nidaqmx_grpc.SetTrigAttributeDoubleArrayResponse\x12p\n\x15SetTrigAttributeInt32\x12*.nidaqmx_grpc.SetTrigAttributeInt32Request\x1a+.nidaqmx_grpc.SetTrigAttributeInt32Response\x12\x7f\n\x1aSetTrigAttributeInt32Array\x12/.nidaqmx_grpc.SetTrigAttributeInt32ArrayRequest\x1a\x30.nidaqmx_grpc.SetTrigAttributeInt32ArrayResponse\x12s\n\x16SetTrigAttributeString\x12+.nidaqmx_grpc.SetTrigAttributeStringRequest\x1a,.nidaqmx_grpc.SetTrigAttributeStringResponse\x12|\n\x19SetTrigAttributeTimestamp\x12..nidaqmx_grpc.SetTrigAttributeTimestampRequest\x1a/.nidaqmx_grpc.SetTrigAttributeTimestampResponse\x12s\n\x16SetTrigAttributeUInt32\x12+.nidaqmx_grpc.SetTrigAttributeUInt32Request\x1a,.nidaqmx_grpc.SetTrigAttributeUInt32Response\x12y\n\x18SetWatchdogAttributeBool\x12-.nidaqmx_grpc.SetWatchdogAttributeBoolRequest\x1a..nidaqmx_grpc.SetWatchdogAttributeBoolResponse\x12\x7f\n\x1aSetWatchdogAttributeDouble\x12/.nidaqmx_grpc.SetWatchdogAttributeDoubleRequest\x1a\x30.nidaqmx_grpc.SetWatchdogAttributeDoubleResponse\x12|\n\x19SetWatchdogAttributeInt32\x12..nidaqmx_grpc.SetWatchdogAttributeInt32Request\x1a/.nidaqmx_grpc.SetWatchdogAttributeInt32Response\x12\x7f\n\x1aSetWatchdogAttributeString\x12/.nidaqmx_grpc.SetWatchdogAttributeStringRequest\x1a\x30.nidaqmx_grpc.SetWatchdogAttributeStringResponse\x12p\n\x15SetWriteAttributeBool\x12*.nidaqmx_grpc.SetWriteAttributeBoolRequest\x1a+.nidaqmx_grpc.SetWriteAttributeBoolResponse\x12v\n\x17SetWriteAttributeDouble\x12,.nidaqmx_grpc.SetWriteAttributeDoubleRequest\x1a-.nidaqmx_grpc.SetWriteAttributeDoubleResponse\x12s\n\x16SetWriteAttributeInt32\x12+.nidaqmx_grpc.SetWriteAttributeInt32Request\x1a,.nidaqmx_grpc.SetWriteAttributeInt32Response\x12v\n\x17SetWriteAttributeString\x12,.nidaqmx_grpc.SetWriteAttributeStringRequest\x1a-.nidaqmx_grpc.SetWriteAttributeStringResponse\x12v\n\x17SetWriteAttributeUInt32\x12,.nidaqmx_grpc.SetWriteAttributeUInt32Request\x1a-.nidaqmx_grpc.SetWriteAttributeUInt32Response\x12v\n\x17SetWriteAttributeUInt64\x12,.nidaqmx_grpc.SetWriteAttributeUInt64Request\x1a-.nidaqmx_grpc.SetWriteAttributeUInt64Response\x12U\n\x0cStartNewFile\x12!.nidaqmx_grpc.StartNewFileRequest\x1a\".nidaqmx_grpc.StartNewFileResponse\x12L\n\tStartTask\x12\x1e.nidaqmx_grpc.StartTaskRequest\x1a\x1f.nidaqmx_grpc.StartTaskResponse\x12I\n\x08StopTask\x12\x1d.nidaqmx_grpc.StopTaskRequest\x1a\x1e.nidaqmx_grpc.StopTaskResponse\x12R\n\x0bTaskControl\x12 .nidaqmx_grpc.TaskControlRequest\x1a!.nidaqmx_grpc.TaskControlResponse\x12g\n\x12TristateOutputTerm\x12\'.nidaqmx_grpc.TristateOutputTermRequest\x1a(.nidaqmx_grpc.TristateOutputTermResponse\x12j\n\x13UnregisterDoneEvent\x12(.nidaqmx_grpc.UnregisterDoneEventRequest\x1a).nidaqmx_grpc.UnregisterDoneEventResponse\x12\x85\x01\n\x1cUnregisterEveryNSamplesEvent\x12\x31.nidaqmx_grpc.UnregisterEveryNSamplesEventRequest\x1a\x32.nidaqmx_grpc.UnregisterEveryNSamplesEventResponse\x12p\n\x15UnregisterSignalEvent\x12*.nidaqmx_grpc.UnregisterSignalEventRequest\x1a+.nidaqmx_grpc.UnregisterSignalEventResponse\x12s\n\x16UnreserveNetworkDevice\x12+.nidaqmx_grpc.UnreserveNetworkDeviceRequest\x1a,.nidaqmx_grpc.UnreserveNetworkDeviceResponse\x12s\n\x16WaitForNextSampleClock\x12+.nidaqmx_grpc.WaitForNextSampleClockRequest\x1a,.nidaqmx_grpc.WaitForNextSampleClockResponse\x12\x82\x01\n\x1b\x42\x65ginWaitForNextSampleClock\x12\x30.nidaqmx_grpc.BeginWaitForNextSampleClockRequest\x1a\x31.nidaqmx_grpc.BeginWaitForNextSampleClockResponse\x12p\n\x15WaitForValidTimestamp\x12*.nidaqmx_grpc.WaitForValidTimestampRequest\x1a+.nidaqmx_grpc.WaitForValidTimestampResponse\x12\x64\n\x11WaitUntilTaskDone\x12&.nidaqmx_grpc.WaitUntilTaskDoneRequest\x1a\'.nidaqmx_grpc.WaitUntilTaskDoneResponse\x12[\n\x0eWriteAnalogF64\x12#.nidaqmx_grpc.WriteAnalogF64Request\x1a$.nidaqmx_grpc.WriteAnalogF64Response\x12j\n\x13\x42\x65ginWriteAnalogF64\x12(.nidaqmx_grpc.BeginWriteAnalogF64Request\x1a).nidaqmx_grpc.BeginWriteAnalogF64Response\x12m\n\x14WriteAnalogScalarF64\x12).nidaqmx_grpc.WriteAnalogScalarF64Request\x1a*.nidaqmx_grpc.WriteAnalogScalarF64Response\x12|\n\x19\x42\x65ginWriteAnalogScalarF64\x12..nidaqmx_grpc.BeginWriteAnalogScalarF64Request\x1a/.nidaqmx_grpc.BeginWriteAnalogScalarF64Response\x12[\n\x0eWriteBinaryI16\x12#.nidaqmx_grpc.WriteBinaryI16Request\x1a$.nidaqmx_grpc.WriteBinaryI16Response\x12j\n\x13\x42\x65ginWriteBinaryI16\x12(.nidaqmx_grpc.BeginWriteBinaryI16Request\x1a).nidaqmx_grpc.BeginWriteBinaryI16Response\x12[\n\x0eWriteBinaryI32\x12#.nidaqmx_grpc.WriteBinaryI32Request\x1a$.nidaqmx_grpc.WriteBinaryI32Response\x12j\n\x13\x42\x65ginWriteBinaryI32\x12(.nidaqmx_grpc.BeginWriteBinaryI32Request\x1a).nidaqmx_grpc.BeginWriteBinaryI32Response\x12[\n\x0eWriteBinaryU16\x12#.nidaqmx_grpc.WriteBinaryU16Request\x1a$.nidaqmx_grpc.WriteBinaryU16Response\x12j\n\x13\x42\x65ginWriteBinaryU16\x12(.nidaqmx_grpc.BeginWriteBinaryU16Request\x1a).nidaqmx_grpc.BeginWriteBinaryU16Response\x12[\n\x0eWriteBinaryU32\x12#.nidaqmx_grpc.WriteBinaryU32Request\x1a$.nidaqmx_grpc.WriteBinaryU32Response\x12j\n\x13\x42\x65ginWriteBinaryU32\x12(.nidaqmx_grpc.BeginWriteBinaryU32Request\x1a).nidaqmx_grpc.BeginWriteBinaryU32Response\x12U\n\x0cWriteCtrFreq\x12!.nidaqmx_grpc.WriteCtrFreqRequest\x1a\".nidaqmx_grpc.WriteCtrFreqResponse\x12\x64\n\x11\x42\x65ginWriteCtrFreq\x12&.nidaqmx_grpc.BeginWriteCtrFreqRequest\x1a\'.nidaqmx_grpc.BeginWriteCtrFreqResponse\x12g\n\x12WriteCtrFreqScalar\x12\'.nidaqmx_grpc.WriteCtrFreqScalarRequest\x1a(.nidaqmx_grpc.WriteCtrFreqScalarResponse\x12v\n\x17\x42\x65ginWriteCtrFreqScalar\x12,.nidaqmx_grpc.BeginWriteCtrFreqScalarRequest\x1a-.nidaqmx_grpc.BeginWriteCtrFreqScalarResponse\x12X\n\rWriteCtrTicks\x12\".nidaqmx_grpc.WriteCtrTicksRequest\x1a#.nidaqmx_grpc.WriteCtrTicksResponse\x12g\n\x12\x42\x65ginWriteCtrTicks\x12\'.nidaqmx_grpc.BeginWriteCtrTicksRequest\x1a(.nidaqmx_grpc.BeginWriteCtrTicksResponse\x12j\n\x13WriteCtrTicksScalar\x12(.nidaqmx_grpc.WriteCtrTicksScalarRequest\x1a).nidaqmx_grpc.WriteCtrTicksScalarResponse\x12y\n\x18\x42\x65ginWriteCtrTicksScalar\x12-.nidaqmx_grpc.BeginWriteCtrTicksScalarRequest\x1a..nidaqmx_grpc.BeginWriteCtrTicksScalarResponse\x12U\n\x0cWriteCtrTime\x12!.nidaqmx_grpc.WriteCtrTimeRequest\x1a\".nidaqmx_grpc.WriteCtrTimeResponse\x12\x64\n\x11\x42\x65ginWriteCtrTime\x12&.nidaqmx_grpc.BeginWriteCtrTimeRequest\x1a\'.nidaqmx_grpc.BeginWriteCtrTimeResponse\x12g\n\x12WriteCtrTimeScalar\x12\'.nidaqmx_grpc.WriteCtrTimeScalarRequest\x1a(.nidaqmx_grpc.WriteCtrTimeScalarResponse\x12v\n\x17\x42\x65ginWriteCtrTimeScalar\x12,.nidaqmx_grpc.BeginWriteCtrTimeScalarRequest\x1a-.nidaqmx_grpc.BeginWriteCtrTimeScalarResponse\x12\x64\n\x11WriteDigitalLines\x12&.nidaqmx_grpc.WriteDigitalLinesRequest\x1a\'.nidaqmx_grpc.WriteDigitalLinesResponse\x12s\n\x16\x42\x65ginWriteDigitalLines\x12+.nidaqmx_grpc.BeginWriteDigitalLinesRequest\x1a,.nidaqmx_grpc.BeginWriteDigitalLinesResponse\x12p\n\x15WriteDigitalScalarU32\x12*.nidaqmx_grpc.WriteDigitalScalarU32Request\x1a+.nidaqmx_grpc.WriteDigitalScalarU32Response\x12\x7f\n\x1a\x42\x65ginWriteDigitalScalarU32\x12/.nidaqmx_grpc.BeginWriteDigitalScalarU32Request\x1a\x30.nidaqmx_grpc.BeginWriteDigitalScalarU32Response\x12^\n\x0fWriteDigitalU16\x12$.nidaqmx_grpc.WriteDigitalU16Request\x1a%.nidaqmx_grpc.WriteDigitalU16Response\x12m\n\x14\x42\x65ginWriteDigitalU16\x12).nidaqmx_grpc.BeginWriteDigitalU16Request\x1a*.nidaqmx_grpc.BeginWriteDigitalU16Response\x12^\n\x0fWriteDigitalU32\x12$.nidaqmx_grpc.WriteDigitalU32Request\x1a%.nidaqmx_grpc.WriteDigitalU32Response\x12m\n\x14\x42\x65ginWriteDigitalU32\x12).nidaqmx_grpc.BeginWriteDigitalU32Request\x1a*.nidaqmx_grpc.BeginWriteDigitalU32Response\x12[\n\x0eWriteDigitalU8\x12#.nidaqmx_grpc.WriteDigitalU8Request\x1a$.nidaqmx_grpc.WriteDigitalU8Response\x12j\n\x13\x42\x65ginWriteDigitalU8\x12(.nidaqmx_grpc.BeginWriteDigitalU8Request\x1a).nidaqmx_grpc.BeginWriteDigitalU8Response\x12\x61\n\x10WriteIDPinMemory\x12%.nidaqmx_grpc.WriteIDPinMemoryRequest\x1a&.nidaqmx_grpc.WriteIDPinMemoryResponse\x12I\n\x08WriteRaw\x12\x1d.nidaqmx_grpc.WriteRawRequest\x1a\x1e.nidaqmx_grpc.WriteRawResponse\x12X\n\rBeginWriteRaw\x12\".nidaqmx_grpc.BeginWriteRawRequest\x1a#.nidaqmx_grpc.BeginWriteRawResponse\x12m\n\x14WriteToTEDSFromArray\x12).nidaqmx_grpc.WriteToTEDSFromArrayRequest\x1a*.nidaqmx_grpc.WriteToTEDSFromArrayResponse\x12j\n\x13WriteToTEDSFromFile\x12(.nidaqmx_grpc.WriteToTEDSFromFileRequest\x1a).nidaqmx_grpc.WriteToTEDSFromFileResponse\x12j\n\x13ReadAnalogWaveforms\x12(.nidaqmx_grpc.ReadAnalogWaveformsRequest\x1a).nidaqmx_grpc.ReadAnalogWaveformsResponse\x12m\n\x14ReadDigitalWaveforms\x12).nidaqmx_grpc.ReadDigitalWaveformsRequest\x1a*.nidaqmx_grpc.ReadDigitalWaveformsResponse\x12m\n\x14WriteAnalogWaveforms\x12).nidaqmx_grpc.WriteAnalogWaveformsRequest\x1a*.nidaqmx_grpc.WriteAnalogWaveformsResponse\x12p\n\x15WriteDigitalWaveforms\x12*.nidaqmx_grpc.WriteDigitalWaveformsRequest\x1a+.nidaqmx_grpc.WriteDigitalWaveformsResponseBF\n\x13\x63om.ni.grpc.nidaqmxB\x07NiDAQmxP\x01\xf8\x01\x01\xaa\x02 NationalInstruments.Grpc.NiDAQmxb\x06proto3') _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, globals()) _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'nidaqmx_pb2', globals()) @@ -38,2306 +39,2324 @@ _TRIGGERINT32ATTRIBUTEVALUES._serialized_options = b'\020\001' _WATCHDOGINT32ATTRIBUTEVALUES._options = None _WATCHDOGINT32ATTRIBUTEVALUES._serialized_options = b'\020\001' - _BUFFERUINT32ATTRIBUTE._serialized_start=139554 - _BUFFERUINT32ATTRIBUTE._serialized_end=139784 - _BUFFERRESETATTRIBUTE._serialized_start=139787 - _BUFFERRESETATTRIBUTE._serialized_end=139989 - _CALIBRATIONINFOBOOLATTRIBUTE._serialized_start=139992 - _CALIBRATIONINFOBOOLATTRIBUTE._serialized_end=140121 - _CALIBRATIONINFOSTRINGATTRIBUTE._serialized_start=140124 - _CALIBRATIONINFOSTRINGATTRIBUTE._serialized_end=140260 - _CALIBRATIONINFODOUBLEATTRIBUTE._serialized_start=140263 - _CALIBRATIONINFODOUBLEATTRIBUTE._serialized_end=140491 - _CALIBRATIONINFOUINT32ATTRIBUTE._serialized_start=140494 - _CALIBRATIONINFOUINT32ATTRIBUTE._serialized_end=140832 - _CHANNELINT32ATTRIBUTE._serialized_start=140835 - _CHANNELINT32ATTRIBUTE._serialized_end=150507 - _CHANNELDOUBLEATTRIBUTE._serialized_start=150510 - _CHANNELDOUBLEATTRIBUTE._serialized_end=159786 - _CHANNELRESETATTRIBUTE._serialized_start=159790 - _CHANNELRESETATTRIBUTE._serialized_end=191361 - _CHANNELBOOLATTRIBUTE._serialized_start=191364 - _CHANNELBOOLATTRIBUTE._serialized_end=196382 - _CHANNELSTRINGATTRIBUTE._serialized_start=196385 - _CHANNELSTRINGATTRIBUTE._serialized_end=199569 - _CHANNELUINT32ATTRIBUTE._serialized_start=199572 - _CHANNELUINT32ATTRIBUTE._serialized_end=201688 - _CHANNELDOUBLEARRAYATTRIBUTE._serialized_start=201691 - _CHANNELDOUBLEARRAYATTRIBUTE._serialized_end=202548 - _DEVICESTRINGATTRIBUTE._serialized_start=202551 - _DEVICESTRINGATTRIBUTE._serialized_end=203513 - _DEVICEUINT32ATTRIBUTE._serialized_start=203516 - _DEVICEUINT32ATTRIBUTE._serialized_end=204536 - _DEVICEBOOLATTRIBUTE._serialized_start=204539 - _DEVICEBOOLATTRIBUTE._serialized_end=205123 - _DEVICEINT32ATTRIBUTE._serialized_start=205126 - _DEVICEINT32ATTRIBUTE._serialized_end=205714 - _DEVICEDOUBLEATTRIBUTE._serialized_start=205717 - _DEVICEDOUBLEATTRIBUTE._serialized_end=206376 - _DEVICEDOUBLEARRAYATTRIBUTE._serialized_start=206379 - _DEVICEDOUBLEARRAYATTRIBUTE._serialized_end=207251 - _DEVICEUINT32ARRAYATTRIBUTE._serialized_start=207254 - _DEVICEUINT32ARRAYATTRIBUTE._serialized_end=207507 - _DEVICEINT32ARRAYATTRIBUTE._serialized_start=207510 - _DEVICEINT32ARRAYATTRIBUTE._serialized_end=208093 - _EXPORTSIGNALDOUBLEATTRIBUTE._serialized_start=208096 - _EXPORTSIGNALDOUBLEATTRIBUTE._serialized_end=209021 - _EXPORTSIGNALSTRINGATTRIBUTE._serialized_start=209024 - _EXPORTSIGNALSTRINGATTRIBUTE._serialized_end=210234 - _EXPORTSIGNALRESETATTRIBUTE._serialized_start=210237 - _EXPORTSIGNALRESETATTRIBUTE._serialized_end=214280 - _EXPORTSIGNALINT32ATTRIBUTE._serialized_start=214283 - _EXPORTSIGNALINT32ATTRIBUTE._serialized_end=216581 - _EXPORTSIGNALBOOLATTRIBUTE._serialized_start=216584 - _EXPORTSIGNALBOOLATTRIBUTE._serialized_end=216776 - _EXPORTSIGNALUINT32ATTRIBUTE._serialized_start=216779 - _EXPORTSIGNALUINT32ATTRIBUTE._serialized_end=216996 - _PERSISTEDCHANNELSTRINGATTRIBUTE._serialized_start=216999 - _PERSISTEDCHANNELSTRINGATTRIBUTE._serialized_end=217168 - _PERSISTEDCHANNELBOOLATTRIBUTE._serialized_start=217171 - _PERSISTEDCHANNELBOOLATTRIBUTE._serialized_end=217370 - _PERSISTEDSCALESTRINGATTRIBUTE._serialized_start=217373 - _PERSISTEDSCALESTRINGATTRIBUTE._serialized_end=217535 - _PERSISTEDSCALEBOOLATTRIBUTE._serialized_start=217538 - _PERSISTEDSCALEBOOLATTRIBUTE._serialized_end=217729 - _PERSISTEDTASKSTRINGATTRIBUTE._serialized_start=217732 - _PERSISTEDTASKSTRINGATTRIBUTE._serialized_end=217889 - _PERSISTEDTASKBOOLATTRIBUTE._serialized_start=217892 - _PERSISTEDTASKBOOLATTRIBUTE._serialized_end=218079 - _PHYSICALCHANNELUINT32ATTRIBUTE._serialized_start=218082 - _PHYSICALCHANNELUINT32ATTRIBUTE._serialized_end=218528 - _PHYSICALCHANNELSTRINGATTRIBUTE._serialized_start=218531 - _PHYSICALCHANNELSTRINGATTRIBUTE._serialized_end=218739 - _PHYSICALCHANNELBYTESATTRIBUTE._serialized_start=218742 - _PHYSICALCHANNELBYTESATTRIBUTE._serialized_end=218884 - _PHYSICALCHANNELUINT32ARRAYATTRIBUTE._serialized_start=218887 - _PHYSICALCHANNELUINT32ARRAYATTRIBUTE._serialized_end=219045 - _PHYSICALCHANNELINT32ATTRIBUTE._serialized_start=219048 - _PHYSICALCHANNELINT32ATTRIBUTE._serialized_end=219382 - _PHYSICALCHANNELBOOLATTRIBUTE._serialized_start=219385 - _PHYSICALCHANNELBOOLATTRIBUTE._serialized_end=220155 - _PHYSICALCHANNELRESETATTRIBUTE._serialized_start=220158 - _PHYSICALCHANNELRESETATTRIBUTE._serialized_end=220682 - _PHYSICALCHANNELDOUBLEATTRIBUTE._serialized_start=220685 - _PHYSICALCHANNELDOUBLEATTRIBUTE._serialized_end=221083 - _PHYSICALCHANNELINT32ARRAYATTRIBUTE._serialized_start=221086 - _PHYSICALCHANNELINT32ARRAYATTRIBUTE._serialized_end=221801 - _PHYSICALCHANNELDOUBLEARRAYATTRIBUTE._serialized_start=221804 - _PHYSICALCHANNELDOUBLEARRAYATTRIBUTE._serialized_end=222037 - _READINT32ATTRIBUTE._serialized_start=222040 - _READINT32ATTRIBUTE._serialized_end=222299 - _READRESETATTRIBUTE._serialized_start=222302 - _READRESETATTRIBUTE._serialized_end=223061 - _READBOOLATTRIBUTE._serialized_start=223064 - _READBOOLATTRIBUTE._serialized_end=224101 - _READUINT64ATTRIBUTE._serialized_start=224104 - _READUINT64ATTRIBUTE._serialized_end=224346 - _READUINT32ATTRIBUTE._serialized_start=224349 - _READUINT32ATTRIBUTE._serialized_end=224612 - _READSTRINGATTRIBUTE._serialized_start=224615 - _READSTRINGATTRIBUTE._serialized_end=225538 - _READDOUBLEATTRIBUTE._serialized_start=225540 - _READDOUBLEATTRIBUTE._serialized_end=225632 - _REALTIMEUINT32ATTRIBUTE._serialized_start=225634 - _REALTIMEUINT32ATTRIBUTE._serialized_end=225747 - _REALTIMERESETATTRIBUTE._serialized_start=225750 - _REALTIMERESETATTRIBUTE._serialized_end=226092 - _REALTIMEBOOLATTRIBUTE._serialized_start=226095 - _REALTIMEBOOLATTRIBUTE._serialized_end=226257 - _REALTIMEINT32ATTRIBUTE._serialized_start=226260 - _REALTIMEINT32ATTRIBUTE._serialized_end=226429 - _SCALESTRINGATTRIBUTE._serialized_start=226431 - _SCALESTRINGATTRIBUTE._serialized_end=226556 - _SCALEDOUBLEATTRIBUTE._serialized_start=226559 - _SCALEDOUBLEATTRIBUTE._serialized_end=226847 - _SCALEDOUBLEARRAYATTRIBUTE._serialized_start=226850 - _SCALEDOUBLEARRAYATTRIBUTE._serialized_end=227089 - _SCALEINT32ATTRIBUTE._serialized_start=227091 - _SCALEINT32ATTRIBUTE._serialized_end=227217 - _SYSTEMSTRINGATTRIBUTE._serialized_start=227220 - _SYSTEMSTRINGATTRIBUTE._serialized_end=227412 - _SYSTEMUINT32ATTRIBUTE._serialized_start=227415 - _SYSTEMUINT32ATTRIBUTE._serialized_end=227609 - _TASKSTRINGATTRIBUTE._serialized_start=227612 - _TASKSTRINGATTRIBUTE._serialized_end=227757 - _TASKBOOLATTRIBUTE._serialized_start=227759 - _TASKBOOLATTRIBUTE._serialized_end=227845 - _TASKUINT32ATTRIBUTE._serialized_start=227847 - _TASKUINT32ATTRIBUTE._serialized_end=227971 - _TIMINGINT32ATTRIBUTE._serialized_start=227974 - _TIMINGINT32ATTRIBUTE._serialized_end=228790 - _TIMINGRESETATTRIBUTE._serialized_start=228793 - _TIMINGRESETATTRIBUTE._serialized_end=231906 - _TIMINGDOUBLEATTRIBUTE._serialized_start=231909 - _TIMINGDOUBLEATTRIBUTE._serialized_end=232802 - _TIMINGUINT32ATTRIBUTE._serialized_start=232805 - _TIMINGUINT32ATTRIBUTE._serialized_end=233102 - _TIMINGSTRINGATTRIBUTE._serialized_start=233105 - _TIMINGSTRINGATTRIBUTE._serialized_end=233765 - _TIMINGUINT64ATTRIBUTE._serialized_start=233767 - _TIMINGUINT64ATTRIBUTE._serialized_end=233879 - _TIMINGBOOLATTRIBUTE._serialized_start=233882 - _TIMINGBOOLATTRIBUTE._serialized_end=234396 - _TIMINGTIMESTAMPATTRIBUTE._serialized_start=234399 - _TIMINGTIMESTAMPATTRIBUTE._serialized_end=234604 - _TRIGGERINT32ATTRIBUTE._serialized_start=234607 - _TRIGGERINT32ATTRIBUTE._serialized_end=236327 - _TRIGGERRESETATTRIBUTE._serialized_start=236330 - _TRIGGERRESETATTRIBUTE._serialized_end=245080 - _TRIGGERSTRINGATTRIBUTE._serialized_start=245083 - _TRIGGERSTRINGATTRIBUTE._serialized_end=247008 - _TRIGGERDOUBLEATTRIBUTE._serialized_start=247011 - _TRIGGERDOUBLEATTRIBUTE._serialized_end=249272 - _TRIGGERUINT32ATTRIBUTE._serialized_start=249275 - _TRIGGERUINT32ATTRIBUTE._serialized_end=249506 - _TRIGGERBOOLATTRIBUTE._serialized_start=249509 - _TRIGGERBOOLATTRIBUTE._serialized_end=251179 - _TRIGGERTIMESTAMPATTRIBUTE._serialized_start=251182 - _TRIGGERTIMESTAMPATTRIBUTE._serialized_end=251497 - _TRIGGERINT32ARRAYATTRIBUTE._serialized_start=251500 - _TRIGGERINT32ARRAYATTRIBUTE._serialized_end=251809 - _TRIGGERDOUBLEARRAYATTRIBUTE._serialized_start=251812 - _TRIGGERDOUBLEARRAYATTRIBUTE._serialized_end=252111 - _WATCHDOGINT32ATTRIBUTE._serialized_start=252114 - _WATCHDOGINT32ATTRIBUTE._serialized_end=252400 - _WATCHDOGRESETATTRIBUTE._serialized_start=252403 - _WATCHDOGRESETATTRIBUTE._serialized_end=252936 - _WATCHDOGSTRINGATTRIBUTE._serialized_start=252938 - _WATCHDOGSTRINGATTRIBUTE._serialized_end=253064 - _WATCHDOGBOOLATTRIBUTE._serialized_start=253067 - _WATCHDOGBOOLATTRIBUTE._serialized_end=253230 - _WATCHDOGDOUBLEATTRIBUTE._serialized_start=253233 - _WATCHDOGDOUBLEATTRIBUTE._serialized_end=253374 - _WRITEINT32ATTRIBUTE._serialized_start=253377 - _WRITEINT32ATTRIBUTE._serialized_end=253565 - _WRITERESETATTRIBUTE._serialized_start=253568 - _WRITERESETATTRIBUTE._serialized_end=253866 - _WRITEUINT64ATTRIBUTE._serialized_start=253869 - _WRITEUINT64ATTRIBUTE._serialized_end=254020 - _WRITEUINT32ATTRIBUTE._serialized_start=254023 - _WRITEUINT32ATTRIBUTE._serialized_end=254239 - _WRITEDOUBLEATTRIBUTE._serialized_start=254241 - _WRITEDOUBLEATTRIBUTE._serialized_end=254336 - _WRITEBOOLATTRIBUTE._serialized_start=254339 - _WRITEBOOLATTRIBUTE._serialized_end=254849 - _WRITESTRINGATTRIBUTE._serialized_start=254852 - _WRITESTRINGATTRIBUTE._serialized_end=255285 - _ACEXCITWIREMODE._serialized_start=255288 - _ACEXCITWIREMODE._serialized_end=255434 - _ACCELCHARGESENSITIVITYUNITS._serialized_start=255437 - _ACCELCHARGESENSITIVITYUNITS._serialized_end=255733 - _ACCELSENSITIVITYUNITS1._serialized_start=255736 - _ACCELSENSITIVITYUNITS1._serialized_end=255890 - _ACCELUNITS2._serialized_start=255893 - _ACCELUNITS2._serialized_end=256095 - _ACQUISITIONTYPE._serialized_start=256098 - _ACQUISITIONTYPE._serialized_end=256264 - _ANGLEUNITS1._serialized_start=256267 - _ANGLEUNITS1._serialized_end=256401 - _ANGLEUNITS2._serialized_start=256404 - _ANGLEUNITS2._serialized_end=256563 - _ANGULARVELOCITYUNITS._serialized_start=256566 - _ANGULARVELOCITYUNITS._serialized_end=256804 - _BRIDGECONFIGURATION1._serialized_start=256807 - _BRIDGECONFIGURATION1._serialized_end=257029 - _BRIDGEELECTRICALUNITS._serialized_start=257032 - _BRIDGEELECTRICALUNITS._serialized_end=257188 - _BRIDGEPHYSICALUNITS._serialized_start=257191 - _BRIDGEPHYSICALUNITS._serialized_end=257646 - _BRIDGEUNITS._serialized_start=257649 - _BRIDGEUNITS._serialized_end=257828 - _CJCSOURCE1._serialized_start=257830 - _CJCSOURCE1._serialized_end=257949 - _CHARGEUNITS._serialized_start=257952 - _CHARGEUNITS._serialized_end=258093 - _COUNTDIRECTION1._serialized_start=258096 - _COUNTDIRECTION1._serialized_end=258251 - _COUNTERFREQUENCYMETHOD._serialized_start=258254 - _COUNTERFREQUENCYMETHOD._serialized_end=258499 - _CURRENTSHUNTRESISTORLOCATIONWITHDEFAULT._serialized_start=258502 - _CURRENTSHUNTRESISTORLOCATIONWITHDEFAULT._serialized_end=258792 - _CURRENTUNITS2._serialized_start=258794 - _CURRENTUNITS2._serialized_end=258906 - _DIGITALLINESTATE._serialized_start=258909 - _DIGITALLINESTATE._serialized_end=259091 - _DIGITALPATTERNCONDITION1._serialized_start=259094 - _DIGITALPATTERNCONDITION1._serialized_end=259269 - _DIGITALWIDTHUNITS3._serialized_start=259271 - _DIGITALWIDTHUNITS3._serialized_end=259364 - _EDDYCURRENTPROXPROBESENSITIVITYUNITS._serialized_start=259367 - _EDDYCURRENTPROXPROBESENSITIVITYUNITS._serialized_end=259797 - _EDGE1._serialized_start=259799 - _EDGE1._serialized_end=259868 - _ENCODERTYPE2._serialized_start=259871 - _ENCODERTYPE2._serialized_end=260024 - _ENCODERZINDEXPHASE1._serialized_start=260027 - _ENCODERZINDEXPHASE1._serialized_end=260256 - _EVERYNSAMPLESEVENTTYPE._serialized_start=260259 - _EVERYNSAMPLESEVENTTYPE._serialized_end=260436 - _EXCITATIONSOURCE._serialized_start=260439 - _EXCITATIONSOURCE._serialized_end=260587 - _FORCEIEPESENSORSENSITIVITYUNITS._serialized_start=260590 - _FORCEIEPESENSORSENSITIVITYUNITS._serialized_end=260797 - _FORCEIEPEUNITS._serialized_start=260800 - _FORCEIEPEUNITS._serialized_end=260952 - _FORCEUNITS._serialized_start=260955 - _FORCEUNITS._serialized_end=261116 - _FREQUENCYUNITS._serialized_start=261118 - _FREQUENCYUNITS._serialized_end=261232 - _FREQUENCYUNITS2._serialized_start=261234 - _FREQUENCYUNITS2._serialized_end=261311 - _FREQUENCYUNITS3._serialized_start=261314 - _FREQUENCYUNITS3._serialized_end=261461 - _FUNCGENTYPE._serialized_start=261464 - _FUNCGENTYPE._serialized_end=261618 - _GPSSIGNALTYPE1._serialized_start=261621 - _GPSSIGNALTYPE1._serialized_end=261755 - _GROUPBY._serialized_start=261757 - _GROUPBY._serialized_end=261832 - _INPUTTERMCFGWITHDEFAULT._serialized_start=261835 - _INPUTTERMCFGWITHDEFAULT._serialized_end=262121 - _INVERTPOLARITY._serialized_start=262123 - _INVERTPOLARITY._serialized_end=262220 - _LVDTSENSITIVITYUNITS1._serialized_start=262223 - _LVDTSENSITIVITYUNITS1._serialized_end=262411 - _LENGTHUNITS2._serialized_start=262414 - _LENGTHUNITS2._serialized_end=262551 - _LENGTHUNITS3._serialized_start=262554 - _LENGTHUNITS3._serialized_end=262717 - _LEVEL1._serialized_start=262719 - _LEVEL1._serialized_end=262786 - _LINEGROUPING._serialized_start=262788 - _LINEGROUPING._serialized_end=262873 - _LOGGINGMODE._serialized_start=262875 - _LOGGINGMODE._serialized_end=262996 - _LOGGINGOPERATION._serialized_start=262999 - _LOGGINGOPERATION._serialized_end=263193 - _LOGICFAMILY._serialized_start=263196 - _LOGICFAMILY._serialized_end=263352 - _POLARITY2._serialized_start=263354 - _POLARITY2._serialized_end=263447 - _POWERUPCHANNELTYPE._serialized_start=263450 - _POWERUPCHANNELTYPE._serialized_end=263606 - _POWERUPSTATES._serialized_start=263609 - _POWERUPSTATES._serialized_end=263741 - _PRESSUREUNITS._serialized_start=263744 - _PRESSUREUNITS._serialized_end=263928 - _RTDTYPE1._serialized_start=263931 - _RTDTYPE1._serialized_end=264135 - _RVDTSENSITIVITYUNITS1._serialized_start=264138 - _RVDTSENSITIVITYUNITS1._serialized_end=264318 - _RESISTANCECONFIGURATION._serialized_start=264321 - _RESISTANCECONFIGURATION._serialized_end=264499 - _RESISTANCEUNITS2._serialized_start=264501 - _RESISTANCEUNITS2._serialized_end=264625 - _RESISTORSTATE._serialized_start=264627 - _RESISTORSTATE._serialized_end=264734 - _SAVEOPTIONS._serialized_start=264737 - _SAVEOPTIONS._serialized_end=264897 - _SHUNTCALSELECT._serialized_start=264900 - _SHUNTCALSELECT._serialized_end=265031 - _SHUNTCALSOURCE._serialized_start=265034 - _SHUNTCALSOURCE._serialized_end=265192 - _SHUNTELEMENTLOCATION._serialized_start=265195 - _SHUNTELEMENTLOCATION._serialized_end=265419 - _SIGNAL._serialized_start=265422 - _SIGNAL._serialized_end=265825 - _SIGNAL2._serialized_start=265828 - _SIGNAL2._serialized_end=265997 - _SLOPE1._serialized_start=265999 - _SLOPE1._serialized_end=266084 - _SOUNDPRESSUREUNITS1._serialized_start=266087 - _SOUNDPRESSUREUNITS1._serialized_end=266229 - _STRAINGAGEBRIDGETYPE1._serialized_start=266232 - _STRAINGAGEBRIDGETYPE1._serialized_end=266623 - _STRAINGAGEROSETTEMEASUREMENTTYPE._serialized_start=266626 - _STRAINGAGEROSETTEMEASUREMENTTYPE._serialized_end=267223 - _STRAINGAGEROSETTETYPE._serialized_start=267226 - _STRAINGAGEROSETTETYPE._serialized_end=267430 - _STRAINUNITS1._serialized_start=267432 - _STRAINUNITS1._serialized_end=267542 - _TEDSUNITS._serialized_start=267544 - _TEDSUNITS._serialized_end=267645 - _TASKCONTROLACTION._serialized_start=267648 - _TASKCONTROLACTION._serialized_end=267926 - _TEMPERATUREUNITS._serialized_start=267929 - _TEMPERATUREUNITS._serialized_end=268104 - _THERMOCOUPLETYPE1._serialized_start=268107 - _THERMOCOUPLETYPE1._serialized_end=268442 - _TIMEUNITS._serialized_start=268444 - _TIMEUNITS._serialized_end=268543 - _TIMEUNITS3._serialized_start=268545 - _TIMEUNITS3._serialized_end=268672 - _TIMESCALE2._serialized_start=268674 - _TIMESCALE2._serialized_end=268773 - _TIMESTAMPEVENT._serialized_start=268776 - _TIMESTAMPEVENT._serialized_end=268986 - _TORQUEUNITS._serialized_start=268989 - _TORQUEUNITS._serialized_end=269195 - _UNITSPRESCALED._serialized_start=269198 - _UNITSPRESCALED._serialized_end=270530 - _VELOCITYIEPESENSORSENSITIVITYUNITS._serialized_start=270533 - _VELOCITYIEPESENSORSENSITIVITYUNITS._serialized_end=270784 - _VELOCITYUNITS._serialized_start=270787 - _VELOCITYUNITS._serialized_end=270951 - _VOLTAGEUNITS2._serialized_start=270953 - _VOLTAGEUNITS2._serialized_end=271066 - _WATCHDOGAOOUTPUTTYPE._serialized_start=271069 - _WATCHDOGAOOUTPUTTYPE._serialized_end=271248 - _WATCHDOGCOEXPIRSTATE._serialized_start=271251 - _WATCHDOGCOEXPIRSTATE._serialized_end=271423 - _WATCHDOGCONTROLACTION._serialized_start=271425 - _WATCHDOGCONTROLACTION._serialized_end=271535 - _WINDOWTRIGGERCONDITION1._serialized_start=271538 - _WINDOWTRIGGERCONDITION1._serialized_end=271695 - _WRITEBASICTEDSOPTIONS._serialized_start=271698 - _WRITEBASICTEDSOPTIONS._serialized_end=271899 - _CHANNELINT32ATTRIBUTEVALUES._serialized_start=271903 - _CHANNELINT32ATTRIBUTEVALUES._serialized_end=291552 - _DEVICEINT32ATTRIBUTEVALUES._serialized_start=291555 - _DEVICEINT32ATTRIBUTEVALUES._serialized_end=298012 - _EXPORTSIGNALINT32ATTRIBUTEVALUES._serialized_start=298015 - _EXPORTSIGNALINT32ATTRIBUTEVALUES._serialized_end=299106 - _PHYSICALCHANNELINT32ATTRIBUTEVALUES._serialized_start=299109 - _PHYSICALCHANNELINT32ATTRIBUTEVALUES._serialized_end=303690 - _READINT32ATTRIBUTEVALUES._serialized_start=303693 - _READINT32ATTRIBUTEVALUES._serialized_end=304548 - _REALTIMEINT32ATTRIBUTEVALUES._serialized_start=304551 - _REALTIMEINT32ATTRIBUTEVALUES._serialized_end=304793 - _SCALEINT32ATTRIBUTEVALUES._serialized_start=304796 - _SCALEINT32ATTRIBUTEVALUES._serialized_end=306741 - _TIMINGINT32ATTRIBUTEVALUES._serialized_start=306744 - _TIMINGINT32ATTRIBUTEVALUES._serialized_end=308621 - _TRIGGERINT32ATTRIBUTEVALUES._serialized_start=308624 - _TRIGGERINT32ATTRIBUTEVALUES._serialized_end=310924 - _WATCHDOGINT32ATTRIBUTEVALUES._serialized_start=310927 - _WATCHDOGINT32ATTRIBUTEVALUES._serialized_end=311689 - _WRITEINT32ATTRIBUTEVALUES._serialized_start=311692 - _WRITEINT32ATTRIBUTEVALUES._serialized_end=312057 - _ANALOGPOWERUPCHANNELSANDSTATE._serialized_start=99 - _ANALOGPOWERUPCHANNELSANDSTATE._serialized_end=224 - _WATCHDOGEXPCHANNELSANDSTATE._serialized_start=226 - _WATCHDOGEXPCHANNELSANDSTATE._serialized_end=321 - _DIGITALPOWERUPTYPEANDCHANNEL._serialized_start=323 - _DIGITALPOWERUPTYPEANDCHANNEL._serialized_end=419 - _DIGITALPOWERUPCHANNELSANDSTATE._serialized_start=421 - _DIGITALPOWERUPCHANNELSANDSTATE._serialized_end=520 - _DIGITALPULLUPPULLDOWNCHANNELSANDSTATE._serialized_start=522 - _DIGITALPULLUPPULLDOWNCHANNELSANDSTATE._serialized_end=628 - _ANALOGPOWERUPCHANNELANDTYPE._serialized_start=630 - _ANALOGPOWERUPCHANNELANDTYPE._serialized_end=737 - _ADDCDAQSYNCCONNECTIONREQUEST._serialized_start=739 - _ADDCDAQSYNCCONNECTIONREQUEST._serialized_end=788 - _ADDCDAQSYNCCONNECTIONRESPONSE._serialized_start=790 - _ADDCDAQSYNCCONNECTIONRESPONSE._serialized_end=837 - _ADDGLOBALCHANSTOTASKREQUEST._serialized_start=839 - _ADDGLOBALCHANSTOTASKREQUEST._serialized_end=929 - _ADDGLOBALCHANSTOTASKRESPONSE._serialized_start=931 - _ADDGLOBALCHANSTOTASKRESPONSE._serialized_end=977 - _ADDNETWORKDEVICEREQUEST._serialized_start=979 - _ADDNETWORKDEVICEREQUEST._serialized_end=1091 - _ADDNETWORKDEVICERESPONSE._serialized_start=1093 - _ADDNETWORKDEVICERESPONSE._serialized_end=1160 - _ARECONFIGUREDCDAQSYNCPORTSDISCONNECTEDREQUEST._serialized_start=1162 - _ARECONFIGUREDCDAQSYNCPORTSDISCONNECTEDREQUEST._serialized_end=1257 - _ARECONFIGUREDCDAQSYNCPORTSDISCONNECTEDRESPONSE._serialized_start=1259 - _ARECONFIGUREDCDAQSYNCPORTSDISCONNECTEDRESPONSE._serialized_end=1357 - _AUTOCONFIGURECDAQSYNCCONNECTIONSREQUEST._serialized_start=1359 - _AUTOCONFIGURECDAQSYNCCONNECTIONSREQUEST._serialized_end=1448 - _AUTOCONFIGURECDAQSYNCCONNECTIONSRESPONSE._serialized_start=1450 - _AUTOCONFIGURECDAQSYNCCONNECTIONSRESPONSE._serialized_end=1508 - _CALCULATEREVERSEPOLYCOEFFREQUEST._serialized_start=1511 - _CALCULATEREVERSEPOLYCOEFFREQUEST._serialized_end=1666 - _CALCULATEREVERSEPOLYCOEFFRESPONSE._serialized_start=1668 - _CALCULATEREVERSEPOLYCOEFFRESPONSE._serialized_end=1743 - _CFGANLGEDGEREFTRIGREQUEST._serialized_start=1746 - _CFGANLGEDGEREFTRIGREQUEST._serialized_end=1984 - _CFGANLGEDGEREFTRIGRESPONSE._serialized_start=1986 - _CFGANLGEDGEREFTRIGRESPONSE._serialized_end=2030 - _CFGANLGEDGESTARTTRIGREQUEST._serialized_start=2033 - _CFGANLGEDGESTARTTRIGREQUEST._serialized_end=2245 - _CFGANLGEDGESTARTTRIGRESPONSE._serialized_start=2247 - _CFGANLGEDGESTARTTRIGRESPONSE._serialized_end=2293 - _CFGANLGMULTIEDGEREFTRIGREQUEST._serialized_start=2296 - _CFGANLGMULTIEDGEREFTRIGREQUEST._serialized_end=2499 - _CFGANLGMULTIEDGEREFTRIGRESPONSE._serialized_start=2501 - _CFGANLGMULTIEDGEREFTRIGRESPONSE._serialized_end=2550 - _CFGANLGMULTIEDGESTARTTRIGREQUEST._serialized_start=2553 - _CFGANLGMULTIEDGESTARTTRIGREQUEST._serialized_end=2730 - _CFGANLGMULTIEDGESTARTTRIGRESPONSE._serialized_start=2732 - _CFGANLGMULTIEDGESTARTTRIGRESPONSE._serialized_end=2783 - _CFGANLGWINDOWREFTRIGREQUEST._serialized_start=2786 - _CFGANLGWINDOWREFTRIGREQUEST._serialized_end=3060 - _CFGANLGWINDOWREFTRIGRESPONSE._serialized_start=3062 - _CFGANLGWINDOWREFTRIGRESPONSE._serialized_end=3108 - _CFGANLGWINDOWSTARTTRIGREQUEST._serialized_start=3111 - _CFGANLGWINDOWSTARTTRIGREQUEST._serialized_end=3359 - _CFGANLGWINDOWSTARTTRIGRESPONSE._serialized_start=3361 - _CFGANLGWINDOWSTARTTRIGRESPONSE._serialized_end=3409 - _CFGBURSTHANDSHAKINGTIMINGEXPORTCLOCKREQUEST._serialized_start=3412 - _CFGBURSTHANDSHAKINGTIMINGEXPORTCLOCKREQUEST._serialized_end=4035 - _CFGBURSTHANDSHAKINGTIMINGEXPORTCLOCKRESPONSE._serialized_start=4037 - _CFGBURSTHANDSHAKINGTIMINGEXPORTCLOCKRESPONSE._serialized_end=4099 - _CFGBURSTHANDSHAKINGTIMINGIMPORTCLOCKREQUEST._serialized_start=4102 - _CFGBURSTHANDSHAKINGTIMINGIMPORTCLOCKREQUEST._serialized_end=4706 - _CFGBURSTHANDSHAKINGTIMINGIMPORTCLOCKRESPONSE._serialized_start=4708 - _CFGBURSTHANDSHAKINGTIMINGIMPORTCLOCKRESPONSE._serialized_end=4770 - _CFGCHANGEDETECTIONTIMINGREQUEST._serialized_start=4773 - _CFGCHANGEDETECTIONTIMINGREQUEST._serialized_end=5022 - _CFGCHANGEDETECTIONTIMINGRESPONSE._serialized_start=5024 - _CFGCHANGEDETECTIONTIMINGRESPONSE._serialized_end=5074 - _CFGDIGEDGEREFTRIGREQUEST._serialized_start=5077 - _CFGDIGEDGEREFTRIGREQUEST._serialized_end=5287 - _CFGDIGEDGEREFTRIGRESPONSE._serialized_start=5289 - _CFGDIGEDGEREFTRIGRESPONSE._serialized_end=5332 - _CFGDIGEDGESTARTTRIGREQUEST._serialized_start=5335 - _CFGDIGEDGESTARTTRIGREQUEST._serialized_end=5519 - _CFGDIGEDGESTARTTRIGRESPONSE._serialized_start=5521 - _CFGDIGEDGESTARTTRIGRESPONSE._serialized_end=5566 - _CFGDIGPATTERNREFTRIGREQUEST._serialized_start=5569 - _CFGDIGPATTERNREFTRIGREQUEST._serialized_end=5826 - _CFGDIGPATTERNREFTRIGRESPONSE._serialized_start=5828 - _CFGDIGPATTERNREFTRIGRESPONSE._serialized_end=5874 - _CFGDIGPATTERNSTARTTRIGREQUEST._serialized_start=5877 - _CFGDIGPATTERNSTARTTRIGREQUEST._serialized_end=6108 - _CFGDIGPATTERNSTARTTRIGRESPONSE._serialized_start=6110 - _CFGDIGPATTERNSTARTTRIGRESPONSE._serialized_end=6158 - _CFGHANDSHAKINGTIMINGREQUEST._serialized_start=6161 - _CFGHANDSHAKINGTIMINGREQUEST._serialized_end=6353 - _CFGHANDSHAKINGTIMINGRESPONSE._serialized_start=6355 - _CFGHANDSHAKINGTIMINGRESPONSE._serialized_end=6401 - _CFGIMPLICITTIMINGREQUEST._serialized_start=6404 - _CFGIMPLICITTIMINGREQUEST._serialized_end=6593 - _CFGIMPLICITTIMINGRESPONSE._serialized_start=6595 - _CFGIMPLICITTIMINGRESPONSE._serialized_end=6638 - _CFGINPUTBUFFERREQUEST._serialized_start=6640 - _CFGINPUTBUFFERREQUEST._serialized_end=6729 - _CFGINPUTBUFFERRESPONSE._serialized_start=6731 - _CFGINPUTBUFFERRESPONSE._serialized_end=6771 - _CFGOUTPUTBUFFERREQUEST._serialized_start=6773 - _CFGOUTPUTBUFFERREQUEST._serialized_end=6863 - _CFGOUTPUTBUFFERRESPONSE._serialized_start=6865 - _CFGOUTPUTBUFFERRESPONSE._serialized_end=6906 - _CFGPIPELINEDSAMPCLKTIMINGREQUEST._serialized_start=6909 - _CFGPIPELINEDSAMPCLKTIMINGREQUEST._serialized_end=7227 - _CFGPIPELINEDSAMPCLKTIMINGRESPONSE._serialized_start=7229 - _CFGPIPELINEDSAMPCLKTIMINGRESPONSE._serialized_end=7280 - _CFGSAMPCLKTIMINGREQUEST._serialized_start=7283 - _CFGSAMPCLKTIMINGREQUEST._serialized_end=7592 - _CFGSAMPCLKTIMINGRESPONSE._serialized_start=7594 - _CFGSAMPCLKTIMINGRESPONSE._serialized_end=7636 - _CFGTIMESTARTTRIGREQUEST._serialized_start=7639 - _CFGTIMESTARTTRIGREQUEST._serialized_end=7834 - _CFGTIMESTARTTRIGRESPONSE._serialized_start=7836 - _CFGTIMESTARTTRIGRESPONSE._serialized_end=7878 - _CFGWATCHDOGAOEXPIRSTATESREQUEST._serialized_start=7881 - _CFGWATCHDOGAOEXPIRSTATESREQUEST._serialized_end=8065 - _CFGWATCHDOGAOEXPIRSTATESRESPONSE._serialized_start=8067 - _CFGWATCHDOGAOEXPIRSTATESRESPONSE._serialized_end=8117 - _CFGWATCHDOGCOEXPIRSTATESREQUEST._serialized_start=8120 - _CFGWATCHDOGCOEXPIRSTATESREQUEST._serialized_end=8277 - _CFGWATCHDOGCOEXPIRSTATESRESPONSE._serialized_start=8279 - _CFGWATCHDOGCOEXPIRSTATESRESPONSE._serialized_end=8329 - _CFGWATCHDOGDOEXPIRSTATESREQUEST._serialized_start=8332 - _CFGWATCHDOGDOEXPIRSTATESREQUEST._serialized_end=8485 - _CFGWATCHDOGDOEXPIRSTATESRESPONSE._serialized_start=8487 - _CFGWATCHDOGDOEXPIRSTATESRESPONSE._serialized_end=8537 - _CLEARTEDSREQUEST._serialized_start=8539 - _CLEARTEDSREQUEST._serialized_end=8583 - _CLEARTEDSRESPONSE._serialized_start=8585 - _CLEARTEDSRESPONSE._serialized_end=8620 - _CLEARTASKREQUEST._serialized_start=8622 - _CLEARTASKREQUEST._serialized_end=8678 - _CLEARTASKRESPONSE._serialized_start=8680 - _CLEARTASKRESPONSE._serialized_end=8715 - _CONFIGURELOGGINGREQUEST._serialized_start=8718 - _CONFIGURELOGGINGREQUEST._serialized_end=9016 - _CONFIGURELOGGINGRESPONSE._serialized_start=9018 - _CONFIGURELOGGINGRESPONSE._serialized_end=9060 - _CONFIGURETEDSREQUEST._serialized_start=9062 - _CONFIGURETEDSREQUEST._serialized_end=9129 - _CONFIGURETEDSRESPONSE._serialized_start=9131 - _CONFIGURETEDSRESPONSE._serialized_end=9170 - _CONNECTTERMSREQUEST._serialized_start=9173 - _CONNECTTERMSREQUEST._serialized_end=9364 - _CONNECTTERMSRESPONSE._serialized_start=9366 - _CONNECTTERMSRESPONSE._serialized_end=9404 - _CONTROLWATCHDOGTASKREQUEST._serialized_start=9407 - _CONTROLWATCHDOGTASKREQUEST._serialized_end=9565 - _CONTROLWATCHDOGTASKRESPONSE._serialized_start=9567 - _CONTROLWATCHDOGTASKRESPONSE._serialized_end=9612 - _CREATEAIACCEL4WIREDCVOLTAGECHANREQUEST._serialized_start=9615 - _CREATEAIACCEL4WIREDCVOLTAGECHANREQUEST._serialized_end=10349 - _CREATEAIACCEL4WIREDCVOLTAGECHANRESPONSE._serialized_start=10351 - _CREATEAIACCEL4WIREDCVOLTAGECHANRESPONSE._serialized_end=10408 - _CREATEAIACCELCHANREQUEST._serialized_start=10411 - _CREATEAIACCELCHANREQUEST._serialized_end=11100 - _CREATEAIACCELCHANRESPONSE._serialized_start=11102 - _CREATEAIACCELCHANRESPONSE._serialized_end=11145 - _CREATEAIACCELCHARGECHANREQUEST._serialized_start=11148 - _CREATEAIACCELCHARGECHANREQUEST._serialized_end=11692 - _CREATEAIACCELCHARGECHANRESPONSE._serialized_start=11694 - _CREATEAIACCELCHARGECHANRESPONSE._serialized_end=11743 - _CREATEAIBRIDGECHANREQUEST._serialized_start=11746 - _CREATEAIBRIDGECHANREQUEST._serialized_end=12315 - _CREATEAIBRIDGECHANRESPONSE._serialized_start=12317 - _CREATEAIBRIDGECHANRESPONSE._serialized_end=12361 - _CREATEAICHARGECHANREQUEST._serialized_start=12364 - _CREATEAICHARGECHANREQUEST._serialized_end=12751 - _CREATEAICHARGECHANRESPONSE._serialized_start=12753 - _CREATEAICHARGECHANRESPONSE._serialized_end=12797 - _CREATEAICURRENTCHANREQUEST._serialized_start=12800 - _CREATEAICURRENTCHANREQUEST._serialized_end=13368 - _CREATEAICURRENTCHANRESPONSE._serialized_start=13370 - _CREATEAICURRENTCHANRESPONSE._serialized_end=13415 - _CREATEAICURRENTRMSCHANREQUEST._serialized_start=13418 - _CREATEAICURRENTRMSCHANREQUEST._serialized_end=13989 - _CREATEAICURRENTRMSCHANRESPONSE._serialized_start=13991 - _CREATEAICURRENTRMSCHANRESPONSE._serialized_end=14039 - _CREATEAIFORCEBRIDGEPOLYNOMIALCHANREQUEST._serialized_start=14042 - _CREATEAIFORCEBRIDGEPOLYNOMIALCHANREQUEST._serialized_end=14909 - _CREATEAIFORCEBRIDGEPOLYNOMIALCHANRESPONSE._serialized_start=14911 - _CREATEAIFORCEBRIDGEPOLYNOMIALCHANRESPONSE._serialized_end=14970 - _CREATEAIFORCEBRIDGETABLECHANREQUEST._serialized_start=14973 - _CREATEAIFORCEBRIDGETABLECHANREQUEST._serialized_end=15835 - _CREATEAIFORCEBRIDGETABLECHANRESPONSE._serialized_start=15837 - _CREATEAIFORCEBRIDGETABLECHANRESPONSE._serialized_end=15891 - _CREATEAIFORCEBRIDGETWOPOINTLINCHANREQUEST._serialized_start=15894 - _CREATEAIFORCEBRIDGETWOPOINTLINCHANREQUEST._serialized_end=16832 - _CREATEAIFORCEBRIDGETWOPOINTLINCHANRESPONSE._serialized_start=16834 - _CREATEAIFORCEBRIDGETWOPOINTLINCHANRESPONSE._serialized_end=16894 - _CREATEAIFORCEIEPECHANREQUEST._serialized_start=16897 - _CREATEAIFORCEIEPECHANREQUEST._serialized_end=17602 - _CREATEAIFORCEIEPECHANRESPONSE._serialized_start=17604 - _CREATEAIFORCEIEPECHANRESPONSE._serialized_end=17651 - _CREATEAIFREQVOLTAGECHANREQUEST._serialized_start=17654 - _CREATEAIFREQVOLTAGECHANREQUEST._serialized_end=17973 - _CREATEAIFREQVOLTAGECHANRESPONSE._serialized_start=17975 - _CREATEAIFREQVOLTAGECHANRESPONSE._serialized_end=18024 - _CREATEAIMICROPHONECHANREQUEST._serialized_start=18027 - _CREATEAIMICROPHONECHANREQUEST._serialized_end=18602 - _CREATEAIMICROPHONECHANRESPONSE._serialized_start=18604 - _CREATEAIMICROPHONECHANRESPONSE._serialized_end=18652 - _CREATEAIPOSEDDYCURRPROXPROBECHANREQUEST._serialized_start=18655 - _CREATEAIPOSEDDYCURRPROXPROBECHANREQUEST._serialized_end=19097 - _CREATEAIPOSEDDYCURRPROXPROBECHANRESPONSE._serialized_start=19099 - _CREATEAIPOSEDDYCURRPROXPROBECHANRESPONSE._serialized_end=19157 - _CREATEAIPOSLVDTCHANREQUEST._serialized_start=19160 - _CREATEAIPOSLVDTCHANREQUEST._serialized_end=19880 - _CREATEAIPOSLVDTCHANRESPONSE._serialized_start=19882 - _CREATEAIPOSLVDTCHANRESPONSE._serialized_end=19927 - _CREATEAIPOSRVDTCHANREQUEST._serialized_start=19930 - _CREATEAIPOSRVDTCHANREQUEST._serialized_end=20649 - _CREATEAIPOSRVDTCHANRESPONSE._serialized_start=20651 - _CREATEAIPOSRVDTCHANRESPONSE._serialized_end=20696 - _CREATEAIPOWERCHANREQUEST._serialized_start=20699 - _CREATEAIPOWERCHANREQUEST._serialized_end=20899 - _CREATEAIPOWERCHANRESPONSE._serialized_start=20901 - _CREATEAIPOWERCHANRESPONSE._serialized_end=20944 - _CREATEAIPRESSUREBRIDGEPOLYNOMIALCHANREQUEST._serialized_start=20947 - _CREATEAIPRESSUREBRIDGEPOLYNOMIALCHANREQUEST._serialized_end=21820 - _CREATEAIPRESSUREBRIDGEPOLYNOMIALCHANRESPONSE._serialized_start=21822 - _CREATEAIPRESSUREBRIDGEPOLYNOMIALCHANRESPONSE._serialized_end=21884 - _CREATEAIPRESSUREBRIDGETABLECHANREQUEST._serialized_start=21887 - _CREATEAIPRESSUREBRIDGETABLECHANREQUEST._serialized_end=22755 - _CREATEAIPRESSUREBRIDGETABLECHANRESPONSE._serialized_start=22757 - _CREATEAIPRESSUREBRIDGETABLECHANRESPONSE._serialized_end=22814 - _CREATEAIPRESSUREBRIDGETWOPOINTLINCHANREQUEST._serialized_start=22817 - _CREATEAIPRESSUREBRIDGETWOPOINTLINCHANREQUEST._serialized_end=23761 - _CREATEAIPRESSUREBRIDGETWOPOINTLINCHANRESPONSE._serialized_start=23763 - _CREATEAIPRESSUREBRIDGETWOPOINTLINCHANRESPONSE._serialized_end=23826 - _CREATEAIRTDCHANREQUEST._serialized_start=23829 - _CREATEAIRTDCHANREQUEST._serialized_end=24450 - _CREATEAIRTDCHANRESPONSE._serialized_start=24452 - _CREATEAIRTDCHANRESPONSE._serialized_end=24493 - _CREATEAIRESISTANCECHANREQUEST._serialized_start=24496 - _CREATEAIRESISTANCECHANREQUEST._serialized_end=25054 - _CREATEAIRESISTANCECHANRESPONSE._serialized_start=25056 - _CREATEAIRESISTANCECHANRESPONSE._serialized_end=25104 - _CREATEAIROSETTESTRAINGAGECHANREQUEST._serialized_start=25107 - _CREATEAIROSETTESTRAINGAGECHANREQUEST._serialized_end=25866 - _CREATEAIROSETTESTRAINGAGECHANRESPONSE._serialized_start=25868 - _CREATEAIROSETTESTRAINGAGECHANRESPONSE._serialized_end=25923 - _CREATEAISTRAINGAGECHANREQUEST._serialized_start=25926 - _CREATEAISTRAINGAGECHANREQUEST._serialized_end=26605 - _CREATEAISTRAINGAGECHANRESPONSE._serialized_start=26607 - _CREATEAISTRAINGAGECHANRESPONSE._serialized_end=26655 - _CREATEAITEMPBUILTINSENSORCHANREQUEST._serialized_start=26658 - _CREATEAITEMPBUILTINSENSORCHANREQUEST._serialized_end=26879 - _CREATEAITEMPBUILTINSENSORCHANRESPONSE._serialized_start=26881 - _CREATEAITEMPBUILTINSENSORCHANRESPONSE._serialized_end=26936 - _CREATEAITHRMCPLCHANREQUEST._serialized_start=26939 - _CREATEAITHRMCPLCHANREQUEST._serialized_end=27436 - _CREATEAITHRMCPLCHANRESPONSE._serialized_start=27438 - _CREATEAITHRMCPLCHANRESPONSE._serialized_end=27483 - _CREATEAITHRMSTRCHANIEXREQUEST._serialized_start=27486 - _CREATEAITHRMSTRCHANIEXREQUEST._serialized_end=28050 - _CREATEAITHRMSTRCHANIEXRESPONSE._serialized_start=28052 - _CREATEAITHRMSTRCHANIEXRESPONSE._serialized_end=28100 - _CREATEAITHRMSTRCHANVEXREQUEST._serialized_start=28103 - _CREATEAITHRMSTRCHANVEXREQUEST._serialized_end=28679 - _CREATEAITHRMSTRCHANVEXRESPONSE._serialized_start=28681 - _CREATEAITHRMSTRCHANVEXRESPONSE._serialized_end=28729 - _CREATEAITORQUEBRIDGEPOLYNOMIALCHANREQUEST._serialized_start=28732 - _CREATEAITORQUEBRIDGEPOLYNOMIALCHANREQUEST._serialized_end=29601 - _CREATEAITORQUEBRIDGEPOLYNOMIALCHANRESPONSE._serialized_start=29603 - _CREATEAITORQUEBRIDGEPOLYNOMIALCHANRESPONSE._serialized_end=29663 - _CREATEAITORQUEBRIDGETABLECHANREQUEST._serialized_start=29666 - _CREATEAITORQUEBRIDGETABLECHANREQUEST._serialized_end=30530 - _CREATEAITORQUEBRIDGETABLECHANRESPONSE._serialized_start=30532 - _CREATEAITORQUEBRIDGETABLECHANRESPONSE._serialized_end=30587 - _CREATEAITORQUEBRIDGETWOPOINTLINCHANREQUEST._serialized_start=30590 - _CREATEAITORQUEBRIDGETWOPOINTLINCHANREQUEST._serialized_end=31530 - _CREATEAITORQUEBRIDGETWOPOINTLINCHANRESPONSE._serialized_start=31532 - _CREATEAITORQUEBRIDGETWOPOINTLINCHANRESPONSE._serialized_end=31593 - _CREATEAIVELOCITYIEPECHANREQUEST._serialized_start=31596 - _CREATEAIVELOCITYIEPECHANREQUEST._serialized_end=32306 - _CREATEAIVELOCITYIEPECHANRESPONSE._serialized_start=32308 - _CREATEAIVELOCITYIEPECHANRESPONSE._serialized_end=32358 - _CREATEAIVOLTAGECHANREQUEST._serialized_start=32361 - _CREATEAIVOLTAGECHANREQUEST._serialized_end=32751 - _CREATEAIVOLTAGECHANRESPONSE._serialized_start=32753 - _CREATEAIVOLTAGECHANRESPONSE._serialized_end=32798 - _CREATEAIVOLTAGECHANWITHEXCITREQUEST._serialized_start=32801 - _CREATEAIVOLTAGECHANWITHEXCITREQUEST._serialized_end=33499 - _CREATEAIVOLTAGECHANWITHEXCITRESPONSE._serialized_start=33501 - _CREATEAIVOLTAGECHANWITHEXCITRESPONSE._serialized_end=33555 - _CREATEAIVOLTAGERMSCHANREQUEST._serialized_start=33558 - _CREATEAIVOLTAGERMSCHANREQUEST._serialized_end=33951 - _CREATEAIVOLTAGERMSCHANRESPONSE._serialized_start=33953 - _CREATEAIVOLTAGERMSCHANRESPONSE._serialized_end=34001 - _CREATEAOCURRENTCHANREQUEST._serialized_start=34004 - _CREATEAOCURRENTCHANREQUEST._serialized_end=34273 - _CREATEAOCURRENTCHANRESPONSE._serialized_start=34275 - _CREATEAOCURRENTCHANRESPONSE._serialized_end=34320 - _CREATEAOFUNCGENCHANREQUEST._serialized_start=34323 - _CREATEAOFUNCGENCHANREQUEST._serialized_end=34575 - _CREATEAOFUNCGENCHANRESPONSE._serialized_start=34577 - _CREATEAOFUNCGENCHANRESPONSE._serialized_end=34622 - _CREATEAOVOLTAGECHANREQUEST._serialized_start=34625 - _CREATEAOVOLTAGECHANREQUEST._serialized_end=34894 - _CREATEAOVOLTAGECHANRESPONSE._serialized_start=34896 - _CREATEAOVOLTAGECHANRESPONSE._serialized_end=34941 - _CREATECIANGENCODERCHANREQUEST._serialized_start=34944 - _CREATECIANGENCODERCHANREQUEST._serialized_end=35463 - _CREATECIANGENCODERCHANRESPONSE._serialized_start=35465 - _CREATECIANGENCODERCHANRESPONSE._serialized_end=35513 - _CREATECIANGVELOCITYCHANREQUEST._serialized_start=35516 - _CREATECIANGVELOCITYCHANREQUEST._serialized_end=35915 - _CREATECIANGVELOCITYCHANRESPONSE._serialized_start=35917 - _CREATECIANGVELOCITYCHANRESPONSE._serialized_end=35966 - _CREATECICOUNTEDGESCHANREQUEST._serialized_start=35969 - _CREATECICOUNTEDGESCHANREQUEST._serialized_end=36296 - _CREATECICOUNTEDGESCHANRESPONSE._serialized_start=36298 - _CREATECICOUNTEDGESCHANRESPONSE._serialized_end=36346 - _CREATECIDUTYCYCLECHANREQUEST._serialized_start=36349 - _CREATECIDUTYCYCLECHANREQUEST._serialized_end=36602 - _CREATECIDUTYCYCLECHANRESPONSE._serialized_start=36604 - _CREATECIDUTYCYCLECHANRESPONSE._serialized_end=36651 - _CREATECIFREQCHANREQUEST._serialized_start=36654 - _CREATECIFREQCHANREQUEST._serialized_end=37127 - _CREATECIFREQCHANRESPONSE._serialized_start=37129 - _CREATECIFREQCHANRESPONSE._serialized_end=37171 - _CREATECIGPSTIMESTAMPCHANREQUEST._serialized_start=37174 - _CREATECIGPSTIMESTAMPCHANREQUEST._serialized_end=37501 - _CREATECIGPSTIMESTAMPCHANRESPONSE._serialized_start=37503 - _CREATECIGPSTIMESTAMPCHANRESPONSE._serialized_end=37553 - _CREATECILINENCODERCHANREQUEST._serialized_start=37556 - _CREATECILINENCODERCHANREQUEST._serialized_end=38074 - _CREATECILINENCODERCHANRESPONSE._serialized_start=38076 - _CREATECILINENCODERCHANRESPONSE._serialized_end=38124 - _CREATECILINVELOCITYCHANREQUEST._serialized_start=38127 - _CREATECILINVELOCITYCHANREQUEST._serialized_end=38519 - _CREATECILINVELOCITYCHANRESPONSE._serialized_start=38521 - _CREATECILINVELOCITYCHANRESPONSE._serialized_end=38570 - _CREATECIPERIODCHANREQUEST._serialized_start=38573 - _CREATECIPERIODCHANREQUEST._serialized_end=39043 - _CREATECIPERIODCHANRESPONSE._serialized_start=39045 - _CREATECIPERIODCHANRESPONSE._serialized_end=39089 - _CREATECIPULSECHANFREQREQUEST._serialized_start=39092 - _CREATECIPULSECHANFREQREQUEST._serialized_end=39329 - _CREATECIPULSECHANFREQRESPONSE._serialized_start=39331 - _CREATECIPULSECHANFREQRESPONSE._serialized_end=39378 - _CREATECIPULSECHANTICKSREQUEST._serialized_start=39381 - _CREATECIPULSECHANTICKSREQUEST._serialized_end=39561 - _CREATECIPULSECHANTICKSRESPONSE._serialized_start=39563 - _CREATECIPULSECHANTICKSRESPONSE._serialized_end=39611 - _CREATECIPULSECHANTIMEREQUEST._serialized_start=39614 - _CREATECIPULSECHANTIMEREQUEST._serialized_end=39854 - _CREATECIPULSECHANTIMERESPONSE._serialized_start=39856 - _CREATECIPULSECHANTIMERESPONSE._serialized_end=39903 - _CREATECIPULSEWIDTHCHANREQUEST._serialized_start=39906 - _CREATECIPULSEWIDTHCHANREQUEST._serialized_end=40263 - _CREATECIPULSEWIDTHCHANRESPONSE._serialized_start=40265 - _CREATECIPULSEWIDTHCHANRESPONSE._serialized_end=40313 - _CREATECISEMIPERIODCHANREQUEST._serialized_start=40316 - _CREATECISEMIPERIODCHANREQUEST._serialized_end=40576 - _CREATECISEMIPERIODCHANRESPONSE._serialized_start=40578 - _CREATECISEMIPERIODCHANRESPONSE._serialized_end=40626 - _CREATECITWOEDGESEPCHANREQUEST._serialized_start=40629 - _CREATECITWOEDGESEPCHANREQUEST._serialized_end=41068 - _CREATECITWOEDGESEPCHANRESPONSE._serialized_start=41070 - _CREATECITWOEDGESEPCHANRESPONSE._serialized_end=41118 - _CREATECOPULSECHANFREQREQUEST._serialized_start=41121 - _CREATECOPULSECHANFREQREQUEST._serialized_end=41470 - _CREATECOPULSECHANFREQRESPONSE._serialized_start=41472 - _CREATECOPULSECHANFREQRESPONSE._serialized_end=41519 - _CREATECOPULSECHANTICKSREQUEST._serialized_start=41522 - _CREATECOPULSECHANTICKSREQUEST._serialized_end=41819 - _CREATECOPULSECHANTICKSRESPONSE._serialized_start=41821 - _CREATECOPULSECHANTICKSRESPONSE._serialized_end=41869 - _CREATECOPULSECHANTIMEREQUEST._serialized_start=41872 - _CREATECOPULSECHANTIMEREQUEST._serialized_end=42227 - _CREATECOPULSECHANTIMERESPONSE._serialized_start=42229 - _CREATECOPULSECHANTIMERESPONSE._serialized_end=42276 - _CREATEDICHANREQUEST._serialized_start=42279 - _CREATEDICHANREQUEST._serialized_end=42490 - _CREATEDICHANRESPONSE._serialized_start=42492 - _CREATEDICHANRESPONSE._serialized_end=42530 - _CREATEDOCHANREQUEST._serialized_start=42533 - _CREATEDOCHANREQUEST._serialized_end=42744 - _CREATEDOCHANRESPONSE._serialized_start=42746 - _CREATEDOCHANRESPONSE._serialized_end=42784 - _CREATELINSCALEREQUEST._serialized_start=42787 - _CREATELINSCALEREQUEST._serialized_end=42997 - _CREATELINSCALERESPONSE._serialized_start=42999 - _CREATELINSCALERESPONSE._serialized_end=43039 - _CREATEMAPSCALEREQUEST._serialized_start=43042 - _CREATEMAPSCALEREQUEST._serialized_end=43302 - _CREATEMAPSCALERESPONSE._serialized_start=43304 - _CREATEMAPSCALERESPONSE._serialized_end=43344 - _CREATEPOLYNOMIALSCALEREQUEST._serialized_start=43347 - _CREATEPOLYNOMIALSCALEREQUEST._serialized_end=43576 - _CREATEPOLYNOMIALSCALERESPONSE._serialized_start=43578 - _CREATEPOLYNOMIALSCALERESPONSE._serialized_end=43625 - _CREATETEDSAIACCELCHANREQUEST._serialized_start=43628 - _CREATETEDSAIACCELCHANREQUEST._serialized_end=44174 - _CREATETEDSAIACCELCHANRESPONSE._serialized_start=44176 - _CREATETEDSAIACCELCHANRESPONSE._serialized_end=44223 - _CREATETEDSAIBRIDGECHANREQUEST._serialized_start=44226 - _CREATETEDSAIBRIDGECHANREQUEST._serialized_end=44650 - _CREATETEDSAIBRIDGECHANRESPONSE._serialized_start=44652 - _CREATETEDSAIBRIDGECHANRESPONSE._serialized_end=44700 - _CREATETEDSAICURRENTCHANREQUEST._serialized_start=44703 - _CREATETEDSAICURRENTCHANREQUEST._serialized_end=45271 - _CREATETEDSAICURRENTCHANRESPONSE._serialized_start=45273 - _CREATETEDSAICURRENTCHANRESPONSE._serialized_end=45322 - _CREATETEDSAIFORCEBRIDGECHANREQUEST._serialized_start=45325 - _CREATETEDSAIFORCEBRIDGECHANREQUEST._serialized_end=45755 - _CREATETEDSAIFORCEBRIDGECHANRESPONSE._serialized_start=45757 - _CREATETEDSAIFORCEBRIDGECHANRESPONSE._serialized_end=45810 - _CREATETEDSAIFORCEIEPECHANREQUEST._serialized_start=45813 - _CREATETEDSAIFORCEIEPECHANREQUEST._serialized_end=46366 - _CREATETEDSAIFORCEIEPECHANRESPONSE._serialized_start=46368 - _CREATETEDSAIFORCEIEPECHANRESPONSE._serialized_end=46419 - _CREATETEDSAIMICROPHONECHANREQUEST._serialized_start=46422 - _CREATETEDSAIMICROPHONECHANREQUEST._serialized_end=46976 - _CREATETEDSAIMICROPHONECHANRESPONSE._serialized_start=46978 - _CREATETEDSAIMICROPHONECHANRESPONSE._serialized_end=47030 - _CREATETEDSAIPOSLVDTCHANREQUEST._serialized_start=47033 - _CREATETEDSAIPOSLVDTCHANREQUEST._serialized_end=47611 - _CREATETEDSAIPOSLVDTCHANRESPONSE._serialized_start=47613 - _CREATETEDSAIPOSLVDTCHANRESPONSE._serialized_end=47662 - _CREATETEDSAIPOSRVDTCHANREQUEST._serialized_start=47665 - _CREATETEDSAIPOSRVDTCHANREQUEST._serialized_end=48242 - _CREATETEDSAIPOSRVDTCHANRESPONSE._serialized_start=48244 - _CREATETEDSAIPOSRVDTCHANRESPONSE._serialized_end=48293 - _CREATETEDSAIPRESSUREBRIDGECHANREQUEST._serialized_start=48296 - _CREATETEDSAIPRESSUREBRIDGECHANREQUEST._serialized_end=48732 - _CREATETEDSAIPRESSUREBRIDGECHANRESPONSE._serialized_start=48734 - _CREATETEDSAIPRESSUREBRIDGECHANRESPONSE._serialized_end=48790 - _CREATETEDSAIRTDCHANREQUEST._serialized_start=48793 - _CREATETEDSAIRTDCHANREQUEST._serialized_end=49321 - _CREATETEDSAIRTDCHANRESPONSE._serialized_start=49323 - _CREATETEDSAIRTDCHANRESPONSE._serialized_end=49368 - _CREATETEDSAIRESISTANCECHANREQUEST._serialized_start=49371 - _CREATETEDSAIRESISTANCECHANREQUEST._serialized_end=49926 - _CREATETEDSAIRESISTANCECHANRESPONSE._serialized_start=49928 - _CREATETEDSAIRESISTANCECHANRESPONSE._serialized_end=49980 - _CREATETEDSAISTRAINGAGECHANREQUEST._serialized_start=49983 - _CREATETEDSAISTRAINGAGECHANREQUEST._serialized_end=50476 - _CREATETEDSAISTRAINGAGECHANRESPONSE._serialized_start=50478 - _CREATETEDSAISTRAINGAGECHANRESPONSE._serialized_end=50530 - _CREATETEDSAITHRMCPLCHANREQUEST._serialized_start=50533 - _CREATETEDSAITHRMCPLCHANREQUEST._serialized_end=50913 - _CREATETEDSAITHRMCPLCHANRESPONSE._serialized_start=50915 - _CREATETEDSAITHRMCPLCHANRESPONSE._serialized_end=50964 - _CREATETEDSAITHRMSTRCHANIEXREQUEST._serialized_start=50967 - _CREATETEDSAITHRMSTRCHANIEXREQUEST._serialized_end=51502 - _CREATETEDSAITHRMSTRCHANIEXRESPONSE._serialized_start=51504 - _CREATETEDSAITHRMSTRCHANIEXRESPONSE._serialized_end=51556 - _CREATETEDSAITHRMSTRCHANVEXREQUEST._serialized_start=51559 - _CREATETEDSAITHRMSTRCHANVEXREQUEST._serialized_end=52106 - _CREATETEDSAITHRMSTRCHANVEXRESPONSE._serialized_start=52108 - _CREATETEDSAITHRMSTRCHANVEXRESPONSE._serialized_end=52160 - _CREATETEDSAITORQUEBRIDGECHANREQUEST._serialized_start=52163 - _CREATETEDSAITORQUEBRIDGECHANREQUEST._serialized_end=52595 - _CREATETEDSAITORQUEBRIDGECHANRESPONSE._serialized_start=52597 - _CREATETEDSAITORQUEBRIDGECHANRESPONSE._serialized_end=52651 - _CREATETEDSAIVOLTAGECHANREQUEST._serialized_start=52654 - _CREATETEDSAIVOLTAGECHANREQUEST._serialized_end=53044 - _CREATETEDSAIVOLTAGECHANRESPONSE._serialized_start=53046 - _CREATETEDSAIVOLTAGECHANRESPONSE._serialized_end=53095 - _CREATETEDSAIVOLTAGECHANWITHEXCITREQUEST._serialized_start=53098 - _CREATETEDSAIVOLTAGECHANWITHEXCITREQUEST._serialized_end=53653 - _CREATETEDSAIVOLTAGECHANWITHEXCITRESPONSE._serialized_start=53655 - _CREATETEDSAIVOLTAGECHANWITHEXCITRESPONSE._serialized_end=53713 - _CREATETABLESCALEREQUEST._serialized_start=53716 - _CREATETABLESCALEREQUEST._serialized_end=53937 - _CREATETABLESCALERESPONSE._serialized_start=53939 - _CREATETABLESCALERESPONSE._serialized_end=53981 - _CREATETASKREQUEST._serialized_start=53983 - _CREATETASKREQUEST._serialized_end=54103 - _CREATETASKRESPONSE._serialized_start=54105 - _CREATETASKRESPONSE._serialized_end=54212 - _CREATEWATCHDOGTIMERTASKREQUEST._serialized_start=54215 - _CREATEWATCHDOGTIMERTASKREQUEST._serialized_end=54449 - _CREATEWATCHDOGTIMERTASKRESPONSE._serialized_start=54451 - _CREATEWATCHDOGTIMERTASKRESPONSE._serialized_end=54571 - _CREATEWATCHDOGTIMERTASKEXREQUEST._serialized_start=54574 - _CREATEWATCHDOGTIMERTASKEXREQUEST._serialized_end=54747 - _CREATEWATCHDOGTIMERTASKEXRESPONSE._serialized_start=54749 - _CREATEWATCHDOGTIMERTASKEXRESPONSE._serialized_end=54871 - _DELETENETWORKDEVICEREQUEST._serialized_start=54873 - _DELETENETWORKDEVICEREQUEST._serialized_end=54922 - _DELETENETWORKDEVICERESPONSE._serialized_start=54924 - _DELETENETWORKDEVICERESPONSE._serialized_end=54969 - _DELETESAVEDGLOBALCHANREQUEST._serialized_start=54971 - _DELETESAVEDGLOBALCHANREQUEST._serialized_end=55023 - _DELETESAVEDGLOBALCHANRESPONSE._serialized_start=55025 - _DELETESAVEDGLOBALCHANRESPONSE._serialized_end=55072 - _DELETESAVEDSCALEREQUEST._serialized_start=55074 - _DELETESAVEDSCALEREQUEST._serialized_end=55119 - _DELETESAVEDSCALERESPONSE._serialized_start=55121 - _DELETESAVEDSCALERESPONSE._serialized_end=55163 - _DELETESAVEDTASKREQUEST._serialized_start=55165 - _DELETESAVEDTASKREQUEST._serialized_end=55208 - _DELETESAVEDTASKRESPONSE._serialized_start=55210 - _DELETESAVEDTASKRESPONSE._serialized_end=55251 - _DEVICESUPPORTSCALREQUEST._serialized_start=55253 - _DEVICESUPPORTSCALREQUEST._serialized_end=55300 - _DEVICESUPPORTSCALRESPONSE._serialized_start=55302 - _DEVICESUPPORTSCALRESPONSE._serialized_end=55368 - _DISABLEREFTRIGREQUEST._serialized_start=55370 - _DISABLEREFTRIGREQUEST._serialized_end=55431 - _DISABLEREFTRIGRESPONSE._serialized_start=55433 - _DISABLEREFTRIGRESPONSE._serialized_end=55473 - _DISABLESTARTTRIGREQUEST._serialized_start=55475 - _DISABLESTARTTRIGREQUEST._serialized_end=55538 - _DISABLESTARTTRIGRESPONSE._serialized_start=55540 - _DISABLESTARTTRIGRESPONSE._serialized_end=55582 - _DISCONNECTTERMSREQUEST._serialized_start=55584 - _DISCONNECTTERMSREQUEST._serialized_end=55663 - _DISCONNECTTERMSRESPONSE._serialized_start=55665 - _DISCONNECTTERMSRESPONSE._serialized_end=55706 - _EXPORTSIGNALREQUEST._serialized_start=55709 - _EXPORTSIGNALREQUEST._serialized_end=55879 - _EXPORTSIGNALRESPONSE._serialized_start=55881 - _EXPORTSIGNALRESPONSE._serialized_end=55919 - _GETAICHANCALCALDATEREQUEST._serialized_start=55921 - _GETAICHANCALCALDATEREQUEST._serialized_end=56009 - _GETAICHANCALCALDATERESPONSE._serialized_start=56011 - _GETAICHANCALCALDATERESPONSE._serialized_end=56128 - _GETAICHANCALEXPDATEREQUEST._serialized_start=56130 - _GETAICHANCALEXPDATEREQUEST._serialized_end=56218 - _GETAICHANCALEXPDATERESPONSE._serialized_start=56220 - _GETAICHANCALEXPDATERESPONSE._serialized_end=56337 - _GETANALOGPOWERUPSTATESREQUEST._serialized_start=56339 - _GETANALOGPOWERUPSTATESREQUEST._serialized_end=56452 - _GETANALOGPOWERUPSTATESRESPONSE._serialized_start=56454 - _GETANALOGPOWERUPSTATESRESPONSE._serialized_end=56527 - _GETANALOGPOWERUPSTATESWITHOUTPUTTYPEREQUEST._serialized_start=56529 - _GETANALOGPOWERUPSTATESWITHOUTPUTTYPEREQUEST._serialized_end=56617 - _GETANALOGPOWERUPSTATESWITHOUTPUTTYPERESPONSE._serialized_start=56620 - _GETANALOGPOWERUPSTATESWITHOUTPUTTYPERESPONSE._serialized_end=56797 - _GETARMSTARTTRIGTIMESTAMPVALREQUEST._serialized_start=56799 - _GETARMSTARTTRIGTIMESTAMPVALREQUEST._serialized_end=56873 - _GETARMSTARTTRIGTIMESTAMPVALRESPONSE._serialized_start=56875 - _GETARMSTARTTRIGTIMESTAMPVALRESPONSE._serialized_end=56970 - _GETARMSTARTTRIGTRIGWHENREQUEST._serialized_start=56972 - _GETARMSTARTTRIGTRIGWHENREQUEST._serialized_end=57042 - _GETARMSTARTTRIGTRIGWHENRESPONSE._serialized_start=57044 - _GETARMSTARTTRIGTRIGWHENRESPONSE._serialized_end=57135 - _GETAUTOCONFIGUREDCDAQSYNCCONNECTIONSREQUEST._serialized_start=57137 - _GETAUTOCONFIGUREDCDAQSYNCCONNECTIONSREQUEST._serialized_end=57182 - _GETAUTOCONFIGUREDCDAQSYNCCONNECTIONSRESPONSE._serialized_start=57184 - _GETAUTOCONFIGUREDCDAQSYNCCONNECTIONSRESPONSE._serialized_end=57265 - _GETBUFFERATTRIBUTEUINT32REQUEST._serialized_start=57268 - _GETBUFFERATTRIBUTEUINT32REQUEST._serialized_end=57440 - _GETBUFFERATTRIBUTEUINT32RESPONSE._serialized_start=57442 - _GETBUFFERATTRIBUTEUINT32RESPONSE._serialized_end=57507 - _GETCALINFOATTRIBUTEBOOLREQUEST._serialized_start=57510 - _GETCALINFOATTRIBUTEBOOLREQUEST._serialized_end=57671 - _GETCALINFOATTRIBUTEBOOLRESPONSE._serialized_start=57673 - _GETCALINFOATTRIBUTEBOOLRESPONSE._serialized_end=57737 - _GETCALINFOATTRIBUTEDOUBLEREQUEST._serialized_start=57740 - _GETCALINFOATTRIBUTEDOUBLEREQUEST._serialized_end=57905 - _GETCALINFOATTRIBUTEDOUBLERESPONSE._serialized_start=57907 - _GETCALINFOATTRIBUTEDOUBLERESPONSE._serialized_end=57973 - _GETCALINFOATTRIBUTESTRINGREQUEST._serialized_start=57976 - _GETCALINFOATTRIBUTESTRINGREQUEST._serialized_end=58141 - _GETCALINFOATTRIBUTESTRINGRESPONSE._serialized_start=58143 - _GETCALINFOATTRIBUTESTRINGRESPONSE._serialized_end=58209 - _GETCALINFOATTRIBUTEUINT32REQUEST._serialized_start=58212 - _GETCALINFOATTRIBUTEUINT32REQUEST._serialized_end=58377 - _GETCALINFOATTRIBUTEUINT32RESPONSE._serialized_start=58379 - _GETCALINFOATTRIBUTEUINT32RESPONSE._serialized_end=58445 - _GETCHANATTRIBUTEBOOLREQUEST._serialized_start=58448 - _GETCHANATTRIBUTEBOOLREQUEST._serialized_end=58632 - _GETCHANATTRIBUTEBOOLRESPONSE._serialized_start=58634 - _GETCHANATTRIBUTEBOOLRESPONSE._serialized_end=58695 - _GETCHANATTRIBUTEDOUBLEREQUEST._serialized_start=58698 - _GETCHANATTRIBUTEDOUBLEREQUEST._serialized_end=58886 - _GETCHANATTRIBUTEDOUBLERESPONSE._serialized_start=58888 - _GETCHANATTRIBUTEDOUBLERESPONSE._serialized_end=58951 - _GETCHANATTRIBUTEDOUBLEARRAYREQUEST._serialized_start=58954 - _GETCHANATTRIBUTEDOUBLEARRAYREQUEST._serialized_end=59152 - _GETCHANATTRIBUTEDOUBLEARRAYRESPONSE._serialized_start=59154 - _GETCHANATTRIBUTEDOUBLEARRAYRESPONSE._serialized_end=59222 - _GETCHANATTRIBUTEINT32REQUEST._serialized_start=59225 - _GETCHANATTRIBUTEINT32REQUEST._serialized_end=59411 - _GETCHANATTRIBUTEINT32RESPONSE._serialized_start=59413 - _GETCHANATTRIBUTEINT32RESPONSE._serialized_end=59537 - _GETCHANATTRIBUTESTRINGREQUEST._serialized_start=59540 - _GETCHANATTRIBUTESTRINGREQUEST._serialized_end=59728 - _GETCHANATTRIBUTESTRINGRESPONSE._serialized_start=59730 - _GETCHANATTRIBUTESTRINGRESPONSE._serialized_end=59793 - _GETCHANATTRIBUTEUINT32REQUEST._serialized_start=59796 - _GETCHANATTRIBUTEUINT32REQUEST._serialized_end=59984 - _GETCHANATTRIBUTEUINT32RESPONSE._serialized_start=59986 - _GETCHANATTRIBUTEUINT32RESPONSE._serialized_end=60049 - _GETDEVICEATTRIBUTEBOOLREQUEST._serialized_start=60052 - _GETDEVICEATTRIBUTEBOOLREQUEST._serialized_end=60203 - _GETDEVICEATTRIBUTEBOOLRESPONSE._serialized_start=60205 - _GETDEVICEATTRIBUTEBOOLRESPONSE._serialized_end=60268 - _GETDEVICEATTRIBUTEDOUBLEREQUEST._serialized_start=60271 - _GETDEVICEATTRIBUTEDOUBLEREQUEST._serialized_end=60426 - _GETDEVICEATTRIBUTEDOUBLERESPONSE._serialized_start=60428 - _GETDEVICEATTRIBUTEDOUBLERESPONSE._serialized_end=60493 - _GETDEVICEATTRIBUTEDOUBLEARRAYREQUEST._serialized_start=60496 - _GETDEVICEATTRIBUTEDOUBLEARRAYREQUEST._serialized_end=60661 - _GETDEVICEATTRIBUTEDOUBLEARRAYRESPONSE._serialized_start=60663 - _GETDEVICEATTRIBUTEDOUBLEARRAYRESPONSE._serialized_end=60733 - _GETDEVICEATTRIBUTEINT32REQUEST._serialized_start=60736 - _GETDEVICEATTRIBUTEINT32REQUEST._serialized_end=60889 - _GETDEVICEATTRIBUTEINT32RESPONSE._serialized_start=60891 - _GETDEVICEATTRIBUTEINT32RESPONSE._serialized_end=61016 - _GETDEVICEATTRIBUTEINT32ARRAYREQUEST._serialized_start=61019 - _GETDEVICEATTRIBUTEINT32ARRAYREQUEST._serialized_end=61182 - _GETDEVICEATTRIBUTEINT32ARRAYRESPONSE._serialized_start=61185 - _GETDEVICEATTRIBUTEINT32ARRAYRESPONSE._serialized_end=61315 - _GETDEVICEATTRIBUTESTRINGREQUEST._serialized_start=61318 - _GETDEVICEATTRIBUTESTRINGREQUEST._serialized_end=61473 - _GETDEVICEATTRIBUTESTRINGRESPONSE._serialized_start=61475 - _GETDEVICEATTRIBUTESTRINGRESPONSE._serialized_end=61540 - _GETDEVICEATTRIBUTEUINT32REQUEST._serialized_start=61543 - _GETDEVICEATTRIBUTEUINT32REQUEST._serialized_end=61698 - _GETDEVICEATTRIBUTEUINT32RESPONSE._serialized_start=61700 - _GETDEVICEATTRIBUTEUINT32RESPONSE._serialized_end=61765 - _GETDEVICEATTRIBUTEUINT32ARRAYREQUEST._serialized_start=61768 - _GETDEVICEATTRIBUTEUINT32ARRAYREQUEST._serialized_end=61933 - _GETDEVICEATTRIBUTEUINT32ARRAYRESPONSE._serialized_start=61935 - _GETDEVICEATTRIBUTEUINT32ARRAYRESPONSE._serialized_end=62005 - _GETDIGITALLOGICFAMILYPOWERUPSTATEREQUEST._serialized_start=62007 - _GETDIGITALLOGICFAMILYPOWERUPSTATEREQUEST._serialized_end=62070 - _GETDIGITALLOGICFAMILYPOWERUPSTATERESPONSE._serialized_start=62072 - _GETDIGITALLOGICFAMILYPOWERUPSTATERESPONSE._serialized_end=62153 - _GETDIGITALPOWERUPSTATESREQUEST._serialized_start=62155 - _GETDIGITALPOWERUPSTATESREQUEST._serialized_end=62230 - _GETDIGITALPOWERUPSTATESRESPONSE._serialized_start=62232 - _GETDIGITALPOWERUPSTATESRESPONSE._serialized_end=62335 - _GETDIGITALPULLUPPULLDOWNSTATESREQUEST._serialized_start=62337 - _GETDIGITALPULLUPPULLDOWNSTATESREQUEST._serialized_end=62419 - _GETDIGITALPULLUPPULLDOWNSTATESRESPONSE._serialized_start=62421 - _GETDIGITALPULLUPPULLDOWNSTATESRESPONSE._serialized_end=62540 - _GETDISCONNECTEDCDAQSYNCPORTSREQUEST._serialized_start=62542 - _GETDISCONNECTEDCDAQSYNCPORTSREQUEST._serialized_end=62579 - _GETDISCONNECTEDCDAQSYNCPORTSRESPONSE._serialized_start=62581 - _GETDISCONNECTEDCDAQSYNCPORTSRESPONSE._serialized_end=62654 - _GETERRORSTRINGREQUEST._serialized_start=62656 - _GETERRORSTRINGREQUEST._serialized_end=62699 - _GETERRORSTRINGRESPONSE._serialized_start=62701 - _GETERRORSTRINGRESPONSE._serialized_end=62763 - _GETEXPORTEDSIGNALATTRIBUTEBOOLREQUEST._serialized_start=62766 - _GETEXPORTEDSIGNALATTRIBUTEBOOLREQUEST._serialized_end=62948 - _GETEXPORTEDSIGNALATTRIBUTEBOOLRESPONSE._serialized_start=62950 - _GETEXPORTEDSIGNALATTRIBUTEBOOLRESPONSE._serialized_end=63021 - _GETEXPORTEDSIGNALATTRIBUTEDOUBLEREQUEST._serialized_start=63024 - _GETEXPORTEDSIGNALATTRIBUTEDOUBLEREQUEST._serialized_end=63210 - _GETEXPORTEDSIGNALATTRIBUTEDOUBLERESPONSE._serialized_start=63212 - _GETEXPORTEDSIGNALATTRIBUTEDOUBLERESPONSE._serialized_end=63285 - _GETEXPORTEDSIGNALATTRIBUTEINT32REQUEST._serialized_start=63288 - _GETEXPORTEDSIGNALATTRIBUTEINT32REQUEST._serialized_end=63472 - _GETEXPORTEDSIGNALATTRIBUTEINT32RESPONSE._serialized_start=63475 - _GETEXPORTEDSIGNALATTRIBUTEINT32RESPONSE._serialized_end=63614 - _GETEXPORTEDSIGNALATTRIBUTESTRINGREQUEST._serialized_start=63617 - _GETEXPORTEDSIGNALATTRIBUTESTRINGREQUEST._serialized_end=63803 - _GETEXPORTEDSIGNALATTRIBUTESTRINGRESPONSE._serialized_start=63805 - _GETEXPORTEDSIGNALATTRIBUTESTRINGRESPONSE._serialized_end=63878 - _GETEXPORTEDSIGNALATTRIBUTEUINT32REQUEST._serialized_start=63881 - _GETEXPORTEDSIGNALATTRIBUTEUINT32REQUEST._serialized_end=64067 - _GETEXPORTEDSIGNALATTRIBUTEUINT32RESPONSE._serialized_start=64069 - _GETEXPORTEDSIGNALATTRIBUTEUINT32RESPONSE._serialized_end=64142 - _GETEXTCALLASTDATEANDTIMEREQUEST._serialized_start=64144 - _GETEXTCALLASTDATEANDTIMEREQUEST._serialized_end=64198 - _GETEXTCALLASTDATEANDTIMERESPONSE._serialized_start=64200 - _GETEXTCALLASTDATEANDTIMERESPONSE._serialized_end=64322 - _GETFIRSTSAMPCLKWHENREQUEST._serialized_start=64324 - _GETFIRSTSAMPCLKWHENREQUEST._serialized_end=64390 - _GETFIRSTSAMPCLKWHENRESPONSE._serialized_start=64392 - _GETFIRSTSAMPCLKWHENRESPONSE._serialized_end=64479 - _GETFIRSTSAMPTIMESTAMPVALREQUEST._serialized_start=64481 - _GETFIRSTSAMPTIMESTAMPVALREQUEST._serialized_end=64552 - _GETFIRSTSAMPTIMESTAMPVALRESPONSE._serialized_start=64554 - _GETFIRSTSAMPTIMESTAMPVALRESPONSE._serialized_end=64646 - _GETNTHTASKCHANNELREQUEST._serialized_start=64648 - _GETNTHTASKCHANNELREQUEST._serialized_end=64727 - _GETNTHTASKCHANNELRESPONSE._serialized_start=64729 - _GETNTHTASKCHANNELRESPONSE._serialized_end=64788 - _GETNTHTASKDEVICEREQUEST._serialized_start=64790 - _GETNTHTASKDEVICEREQUEST._serialized_end=64868 - _GETNTHTASKDEVICERESPONSE._serialized_start=64870 - _GETNTHTASKDEVICERESPONSE._serialized_end=64928 - _GETNTHTASKREADCHANNELREQUEST._serialized_start=64930 - _GETNTHTASKREADCHANNELREQUEST._serialized_end=65013 - _GETNTHTASKREADCHANNELRESPONSE._serialized_start=65015 - _GETNTHTASKREADCHANNELRESPONSE._serialized_end=65078 - _GETPERSISTEDCHANATTRIBUTEBOOLREQUEST._serialized_start=65081 - _GETPERSISTEDCHANATTRIBUTEBOOLREQUEST._serialized_end=65245 - _GETPERSISTEDCHANATTRIBUTEBOOLRESPONSE._serialized_start=65247 - _GETPERSISTEDCHANATTRIBUTEBOOLRESPONSE._serialized_end=65317 - _GETPERSISTEDCHANATTRIBUTESTRINGREQUEST._serialized_start=65320 - _GETPERSISTEDCHANATTRIBUTESTRINGREQUEST._serialized_end=65488 - _GETPERSISTEDCHANATTRIBUTESTRINGRESPONSE._serialized_start=65490 - _GETPERSISTEDCHANATTRIBUTESTRINGRESPONSE._serialized_end=65562 - _GETPERSISTEDSCALEATTRIBUTEBOOLREQUEST._serialized_start=65565 - _GETPERSISTEDSCALEATTRIBUTEBOOLREQUEST._serialized_end=65731 - _GETPERSISTEDSCALEATTRIBUTEBOOLRESPONSE._serialized_start=65733 - _GETPERSISTEDSCALEATTRIBUTEBOOLRESPONSE._serialized_end=65804 - _GETPERSISTEDSCALEATTRIBUTESTRINGREQUEST._serialized_start=65807 - _GETPERSISTEDSCALEATTRIBUTESTRINGREQUEST._serialized_end=65977 - _GETPERSISTEDSCALEATTRIBUTESTRINGRESPONSE._serialized_start=65979 - _GETPERSISTEDSCALEATTRIBUTESTRINGRESPONSE._serialized_end=66052 - _GETPERSISTEDTASKATTRIBUTEBOOLREQUEST._serialized_start=66055 - _GETPERSISTEDTASKATTRIBUTEBOOLREQUEST._serialized_end=66218 - _GETPERSISTEDTASKATTRIBUTEBOOLRESPONSE._serialized_start=66220 - _GETPERSISTEDTASKATTRIBUTEBOOLRESPONSE._serialized_end=66290 - _GETPERSISTEDTASKATTRIBUTESTRINGREQUEST._serialized_start=66293 - _GETPERSISTEDTASKATTRIBUTESTRINGREQUEST._serialized_end=66460 - _GETPERSISTEDTASKATTRIBUTESTRINGRESPONSE._serialized_start=66462 - _GETPERSISTEDTASKATTRIBUTESTRINGRESPONSE._serialized_end=66534 - _GETPHYSICALCHANATTRIBUTEBOOLREQUEST._serialized_start=66537 - _GETPHYSICALCHANATTRIBUTEBOOLREQUEST._serialized_end=66708 - _GETPHYSICALCHANATTRIBUTEBOOLRESPONSE._serialized_start=66710 - _GETPHYSICALCHANATTRIBUTEBOOLRESPONSE._serialized_end=66779 - _GETPHYSICALCHANATTRIBUTEBYTESREQUEST._serialized_start=66782 - _GETPHYSICALCHANATTRIBUTEBYTESREQUEST._serialized_end=66955 - _GETPHYSICALCHANATTRIBUTEBYTESRESPONSE._serialized_start=66957 - _GETPHYSICALCHANATTRIBUTEBYTESRESPONSE._serialized_end=67027 - _GETPHYSICALCHANATTRIBUTEDOUBLEREQUEST._serialized_start=67030 - _GETPHYSICALCHANATTRIBUTEDOUBLEREQUEST._serialized_end=67205 - _GETPHYSICALCHANATTRIBUTEDOUBLERESPONSE._serialized_start=67207 - _GETPHYSICALCHANATTRIBUTEDOUBLERESPONSE._serialized_end=67278 - _GETPHYSICALCHANATTRIBUTEDOUBLEARRAYREQUEST._serialized_start=67281 - _GETPHYSICALCHANATTRIBUTEDOUBLEARRAYREQUEST._serialized_end=67466 - _GETPHYSICALCHANATTRIBUTEDOUBLEARRAYRESPONSE._serialized_start=67468 - _GETPHYSICALCHANATTRIBUTEDOUBLEARRAYRESPONSE._serialized_end=67544 - _GETPHYSICALCHANATTRIBUTEINT32REQUEST._serialized_start=67547 - _GETPHYSICALCHANATTRIBUTEINT32REQUEST._serialized_end=67720 - _GETPHYSICALCHANATTRIBUTEINT32RESPONSE._serialized_start=67723 - _GETPHYSICALCHANATTRIBUTEINT32RESPONSE._serialized_end=67863 - _GETPHYSICALCHANATTRIBUTEINT32ARRAYREQUEST._serialized_start=67866 - _GETPHYSICALCHANATTRIBUTEINT32ARRAYREQUEST._serialized_end=68049 - _GETPHYSICALCHANATTRIBUTEINT32ARRAYRESPONSE._serialized_start=68052 - _GETPHYSICALCHANATTRIBUTEINT32ARRAYRESPONSE._serialized_end=68197 - _GETPHYSICALCHANATTRIBUTESTRINGREQUEST._serialized_start=68200 - _GETPHYSICALCHANATTRIBUTESTRINGREQUEST._serialized_end=68375 - _GETPHYSICALCHANATTRIBUTESTRINGRESPONSE._serialized_start=68377 - _GETPHYSICALCHANATTRIBUTESTRINGRESPONSE._serialized_end=68448 - _GETPHYSICALCHANATTRIBUTEUINT32REQUEST._serialized_start=68451 - _GETPHYSICALCHANATTRIBUTEUINT32REQUEST._serialized_end=68626 - _GETPHYSICALCHANATTRIBUTEUINT32RESPONSE._serialized_start=68628 - _GETPHYSICALCHANATTRIBUTEUINT32RESPONSE._serialized_end=68699 - _GETPHYSICALCHANATTRIBUTEUINT32ARRAYREQUEST._serialized_start=68702 - _GETPHYSICALCHANATTRIBUTEUINT32ARRAYREQUEST._serialized_end=68887 - _GETPHYSICALCHANATTRIBUTEUINT32ARRAYRESPONSE._serialized_start=68889 - _GETPHYSICALCHANATTRIBUTEUINT32ARRAYRESPONSE._serialized_end=68965 - _GETREADATTRIBUTEBOOLREQUEST._serialized_start=68968 - _GETREADATTRIBUTEBOOLREQUEST._serialized_end=69132 - _GETREADATTRIBUTEBOOLRESPONSE._serialized_start=69134 - _GETREADATTRIBUTEBOOLRESPONSE._serialized_end=69195 - _GETREADATTRIBUTEDOUBLEREQUEST._serialized_start=69198 - _GETREADATTRIBUTEDOUBLEREQUEST._serialized_end=69366 - _GETREADATTRIBUTEDOUBLERESPONSE._serialized_start=69368 - _GETREADATTRIBUTEDOUBLERESPONSE._serialized_end=69431 - _GETREADATTRIBUTEINT32REQUEST._serialized_start=69434 - _GETREADATTRIBUTEINT32REQUEST._serialized_end=69600 - _GETREADATTRIBUTEINT32RESPONSE._serialized_start=69602 - _GETREADATTRIBUTEINT32RESPONSE._serialized_end=69723 - _GETREADATTRIBUTESTRINGREQUEST._serialized_start=69726 - _GETREADATTRIBUTESTRINGREQUEST._serialized_end=69894 - _GETREADATTRIBUTESTRINGRESPONSE._serialized_start=69896 - _GETREADATTRIBUTESTRINGRESPONSE._serialized_end=69959 - _GETREADATTRIBUTEUINT32REQUEST._serialized_start=69962 - _GETREADATTRIBUTEUINT32REQUEST._serialized_end=70130 - _GETREADATTRIBUTEUINT32RESPONSE._serialized_start=70132 - _GETREADATTRIBUTEUINT32RESPONSE._serialized_end=70195 - _GETREADATTRIBUTEUINT64REQUEST._serialized_start=70198 - _GETREADATTRIBUTEUINT64REQUEST._serialized_end=70366 - _GETREADATTRIBUTEUINT64RESPONSE._serialized_start=70368 - _GETREADATTRIBUTEUINT64RESPONSE._serialized_end=70431 - _GETREALTIMEATTRIBUTEBOOLREQUEST._serialized_start=70434 - _GETREALTIMEATTRIBUTEBOOLREQUEST._serialized_end=70606 - _GETREALTIMEATTRIBUTEBOOLRESPONSE._serialized_start=70608 - _GETREALTIMEATTRIBUTEBOOLRESPONSE._serialized_end=70673 - _GETREALTIMEATTRIBUTEINT32REQUEST._serialized_start=70676 - _GETREALTIMEATTRIBUTEINT32REQUEST._serialized_end=70850 - _GETREALTIMEATTRIBUTEINT32RESPONSE._serialized_start=70853 - _GETREALTIMEATTRIBUTEINT32RESPONSE._serialized_end=70982 - _GETREALTIMEATTRIBUTEUINT32REQUEST._serialized_start=70985 - _GETREALTIMEATTRIBUTEUINT32REQUEST._serialized_end=71161 - _GETREALTIMEATTRIBUTEUINT32RESPONSE._serialized_start=71163 - _GETREALTIMEATTRIBUTEUINT32RESPONSE._serialized_end=71230 - _GETREFTRIGTIMESTAMPVALREQUEST._serialized_start=71232 - _GETREFTRIGTIMESTAMPVALREQUEST._serialized_end=71301 - _GETREFTRIGTIMESTAMPVALRESPONSE._serialized_start=71303 - _GETREFTRIGTIMESTAMPVALRESPONSE._serialized_end=71393 - _GETSCALEATTRIBUTEDOUBLEREQUEST._serialized_start=71396 - _GETSCALEATTRIBUTEDOUBLEREQUEST._serialized_end=71548 - _GETSCALEATTRIBUTEDOUBLERESPONSE._serialized_start=71550 - _GETSCALEATTRIBUTEDOUBLERESPONSE._serialized_end=71614 - _GETSCALEATTRIBUTEDOUBLEARRAYREQUEST._serialized_start=71617 - _GETSCALEATTRIBUTEDOUBLEARRAYREQUEST._serialized_end=71779 - _GETSCALEATTRIBUTEDOUBLEARRAYRESPONSE._serialized_start=71781 - _GETSCALEATTRIBUTEDOUBLEARRAYRESPONSE._serialized_end=71850 - _GETSCALEATTRIBUTEINT32REQUEST._serialized_start=71853 - _GETSCALEATTRIBUTEINT32REQUEST._serialized_end=72003 - _GETSCALEATTRIBUTEINT32RESPONSE._serialized_start=72005 - _GETSCALEATTRIBUTEINT32RESPONSE._serialized_end=72128 - _GETSCALEATTRIBUTESTRINGREQUEST._serialized_start=72131 - _GETSCALEATTRIBUTESTRINGREQUEST._serialized_end=72283 - _GETSCALEATTRIBUTESTRINGRESPONSE._serialized_start=72285 - _GETSCALEATTRIBUTESTRINGRESPONSE._serialized_end=72349 - _GETSELFCALLASTDATEANDTIMEREQUEST._serialized_start=72351 - _GETSELFCALLASTDATEANDTIMEREQUEST._serialized_end=72406 - _GETSELFCALLASTDATEANDTIMERESPONSE._serialized_start=72408 - _GETSELFCALLASTDATEANDTIMERESPONSE._serialized_end=72531 - _GETSTARTTRIGTIMESTAMPVALREQUEST._serialized_start=72533 - _GETSTARTTRIGTIMESTAMPVALREQUEST._serialized_end=72604 - _GETSTARTTRIGTIMESTAMPVALRESPONSE._serialized_start=72606 - _GETSTARTTRIGTIMESTAMPVALRESPONSE._serialized_end=72698 - _GETSTARTTRIGTRIGWHENREQUEST._serialized_start=72700 - _GETSTARTTRIGTRIGWHENREQUEST._serialized_end=72767 - _GETSTARTTRIGTRIGWHENRESPONSE._serialized_start=72769 - _GETSTARTTRIGTRIGWHENRESPONSE._serialized_end=72857 - _GETSYNCPULSETIMEWHENREQUEST._serialized_start=72859 - _GETSYNCPULSETIMEWHENREQUEST._serialized_end=72926 - _GETSYNCPULSETIMEWHENRESPONSE._serialized_start=72928 - _GETSYNCPULSETIMEWHENRESPONSE._serialized_end=73016 - _GETSYSTEMINFOATTRIBUTESTRINGREQUEST._serialized_start=73019 - _GETSYSTEMINFOATTRIBUTESTRINGREQUEST._serialized_end=73157 - _GETSYSTEMINFOATTRIBUTESTRINGRESPONSE._serialized_start=73159 - _GETSYSTEMINFOATTRIBUTESTRINGRESPONSE._serialized_end=73228 - _GETSYSTEMINFOATTRIBUTEUINT32REQUEST._serialized_start=73231 - _GETSYSTEMINFOATTRIBUTEUINT32REQUEST._serialized_end=73369 - _GETSYSTEMINFOATTRIBUTEUINT32RESPONSE._serialized_start=73371 - _GETSYSTEMINFOATTRIBUTEUINT32RESPONSE._serialized_end=73440 - _GETTASKATTRIBUTEBOOLREQUEST._serialized_start=73443 - _GETTASKATTRIBUTEBOOLREQUEST._serialized_end=73607 - _GETTASKATTRIBUTEBOOLRESPONSE._serialized_start=73609 - _GETTASKATTRIBUTEBOOLRESPONSE._serialized_end=73670 - _GETTASKATTRIBUTESTRINGREQUEST._serialized_start=73673 - _GETTASKATTRIBUTESTRINGREQUEST._serialized_end=73841 - _GETTASKATTRIBUTESTRINGRESPONSE._serialized_start=73843 - _GETTASKATTRIBUTESTRINGRESPONSE._serialized_end=73906 - _GETTASKATTRIBUTEUINT32REQUEST._serialized_start=73909 - _GETTASKATTRIBUTEUINT32REQUEST._serialized_end=74077 - _GETTASKATTRIBUTEUINT32RESPONSE._serialized_start=74079 - _GETTASKATTRIBUTEUINT32RESPONSE._serialized_end=74142 - _GETTIMINGATTRIBUTEBOOLREQUEST._serialized_start=74145 - _GETTIMINGATTRIBUTEBOOLREQUEST._serialized_end=74313 - _GETTIMINGATTRIBUTEBOOLRESPONSE._serialized_start=74315 - _GETTIMINGATTRIBUTEBOOLRESPONSE._serialized_end=74378 - _GETTIMINGATTRIBUTEDOUBLEREQUEST._serialized_start=74381 - _GETTIMINGATTRIBUTEDOUBLEREQUEST._serialized_end=74553 - _GETTIMINGATTRIBUTEDOUBLERESPONSE._serialized_start=74555 - _GETTIMINGATTRIBUTEDOUBLERESPONSE._serialized_end=74620 - _GETTIMINGATTRIBUTEEXBOOLREQUEST._serialized_start=74623 - _GETTIMINGATTRIBUTEEXBOOLREQUEST._serialized_end=74815 - _GETTIMINGATTRIBUTEEXBOOLRESPONSE._serialized_start=74817 - _GETTIMINGATTRIBUTEEXBOOLRESPONSE._serialized_end=74882 - _GETTIMINGATTRIBUTEEXDOUBLEREQUEST._serialized_start=74885 - _GETTIMINGATTRIBUTEEXDOUBLEREQUEST._serialized_end=75081 - _GETTIMINGATTRIBUTEEXDOUBLERESPONSE._serialized_start=75083 - _GETTIMINGATTRIBUTEEXDOUBLERESPONSE._serialized_end=75150 - _GETTIMINGATTRIBUTEEXINT32REQUEST._serialized_start=75153 - _GETTIMINGATTRIBUTEEXINT32REQUEST._serialized_end=75347 - _GETTIMINGATTRIBUTEEXINT32RESPONSE._serialized_start=75349 - _GETTIMINGATTRIBUTEEXINT32RESPONSE._serialized_end=75476 - _GETTIMINGATTRIBUTEEXSTRINGREQUEST._serialized_start=75479 - _GETTIMINGATTRIBUTEEXSTRINGREQUEST._serialized_end=75675 - _GETTIMINGATTRIBUTEEXSTRINGRESPONSE._serialized_start=75677 - _GETTIMINGATTRIBUTEEXSTRINGRESPONSE._serialized_end=75744 - _GETTIMINGATTRIBUTEEXTIMESTAMPREQUEST._serialized_start=75747 - _GETTIMINGATTRIBUTEEXTIMESTAMPREQUEST._serialized_end=75949 - _GETTIMINGATTRIBUTEEXTIMESTAMPRESPONSE._serialized_start=75951 - _GETTIMINGATTRIBUTEEXTIMESTAMPRESPONSE._serialized_end=76049 - _GETTIMINGATTRIBUTEEXUINT32REQUEST._serialized_start=76052 - _GETTIMINGATTRIBUTEEXUINT32REQUEST._serialized_end=76248 - _GETTIMINGATTRIBUTEEXUINT32RESPONSE._serialized_start=76250 - _GETTIMINGATTRIBUTEEXUINT32RESPONSE._serialized_end=76317 - _GETTIMINGATTRIBUTEEXUINT64REQUEST._serialized_start=76320 - _GETTIMINGATTRIBUTEEXUINT64REQUEST._serialized_end=76516 - _GETTIMINGATTRIBUTEEXUINT64RESPONSE._serialized_start=76518 - _GETTIMINGATTRIBUTEEXUINT64RESPONSE._serialized_end=76585 - _GETTIMINGATTRIBUTEINT32REQUEST._serialized_start=76588 - _GETTIMINGATTRIBUTEINT32REQUEST._serialized_end=76758 - _GETTIMINGATTRIBUTEINT32RESPONSE._serialized_start=76760 - _GETTIMINGATTRIBUTEINT32RESPONSE._serialized_end=76885 - _GETTIMINGATTRIBUTESTRINGREQUEST._serialized_start=76888 - _GETTIMINGATTRIBUTESTRINGREQUEST._serialized_end=77060 - _GETTIMINGATTRIBUTESTRINGRESPONSE._serialized_start=77062 - _GETTIMINGATTRIBUTESTRINGRESPONSE._serialized_end=77127 - _GETTIMINGATTRIBUTETIMESTAMPREQUEST._serialized_start=77130 - _GETTIMINGATTRIBUTETIMESTAMPREQUEST._serialized_end=77308 - _GETTIMINGATTRIBUTETIMESTAMPRESPONSE._serialized_start=77310 - _GETTIMINGATTRIBUTETIMESTAMPRESPONSE._serialized_end=77406 - _GETTIMINGATTRIBUTEUINT32REQUEST._serialized_start=77409 - _GETTIMINGATTRIBUTEUINT32REQUEST._serialized_end=77581 - _GETTIMINGATTRIBUTEUINT32RESPONSE._serialized_start=77583 - _GETTIMINGATTRIBUTEUINT32RESPONSE._serialized_end=77648 - _GETTIMINGATTRIBUTEUINT64REQUEST._serialized_start=77651 - _GETTIMINGATTRIBUTEUINT64REQUEST._serialized_end=77823 - _GETTIMINGATTRIBUTEUINT64RESPONSE._serialized_start=77825 - _GETTIMINGATTRIBUTEUINT64RESPONSE._serialized_end=77890 - _GETTRIGATTRIBUTEBOOLREQUEST._serialized_start=77893 - _GETTRIGATTRIBUTEBOOLREQUEST._serialized_end=78060 - _GETTRIGATTRIBUTEBOOLRESPONSE._serialized_start=78062 - _GETTRIGATTRIBUTEBOOLRESPONSE._serialized_end=78123 - _GETTRIGATTRIBUTEDOUBLEREQUEST._serialized_start=78126 - _GETTRIGATTRIBUTEDOUBLEREQUEST._serialized_end=78297 - _GETTRIGATTRIBUTEDOUBLERESPONSE._serialized_start=78299 - _GETTRIGATTRIBUTEDOUBLERESPONSE._serialized_end=78362 - _GETTRIGATTRIBUTEDOUBLEARRAYREQUEST._serialized_start=78365 - _GETTRIGATTRIBUTEDOUBLEARRAYREQUEST._serialized_end=78546 - _GETTRIGATTRIBUTEDOUBLEARRAYRESPONSE._serialized_start=78548 - _GETTRIGATTRIBUTEDOUBLEARRAYRESPONSE._serialized_end=78616 - _GETTRIGATTRIBUTEINT32REQUEST._serialized_start=78619 - _GETTRIGATTRIBUTEINT32REQUEST._serialized_end=78788 - _GETTRIGATTRIBUTEINT32RESPONSE._serialized_start=78790 - _GETTRIGATTRIBUTEINT32RESPONSE._serialized_end=78914 - _GETTRIGATTRIBUTEINT32ARRAYREQUEST._serialized_start=78917 - _GETTRIGATTRIBUTEINT32ARRAYREQUEST._serialized_end=79096 - _GETTRIGATTRIBUTEINT32ARRAYRESPONSE._serialized_start=79099 - _GETTRIGATTRIBUTEINT32ARRAYRESPONSE._serialized_end=79228 - _GETTRIGATTRIBUTESTRINGREQUEST._serialized_start=79231 - _GETTRIGATTRIBUTESTRINGREQUEST._serialized_end=79402 - _GETTRIGATTRIBUTESTRINGRESPONSE._serialized_start=79404 - _GETTRIGATTRIBUTESTRINGRESPONSE._serialized_end=79467 - _GETTRIGATTRIBUTETIMESTAMPREQUEST._serialized_start=79470 - _GETTRIGATTRIBUTETIMESTAMPREQUEST._serialized_end=79647 - _GETTRIGATTRIBUTETIMESTAMPRESPONSE._serialized_start=79649 - _GETTRIGATTRIBUTETIMESTAMPRESPONSE._serialized_end=79743 - _GETTRIGATTRIBUTEUINT32REQUEST._serialized_start=79746 - _GETTRIGATTRIBUTEUINT32REQUEST._serialized_end=79917 - _GETTRIGATTRIBUTEUINT32RESPONSE._serialized_start=79919 - _GETTRIGATTRIBUTEUINT32RESPONSE._serialized_end=79982 - _GETWATCHDOGATTRIBUTEBOOLREQUEST._serialized_start=79985 - _GETWATCHDOGATTRIBUTEBOOLREQUEST._serialized_end=80172 - _GETWATCHDOGATTRIBUTEBOOLRESPONSE._serialized_start=80174 - _GETWATCHDOGATTRIBUTEBOOLRESPONSE._serialized_end=80239 - _GETWATCHDOGATTRIBUTEDOUBLEREQUEST._serialized_start=80242 - _GETWATCHDOGATTRIBUTEDOUBLEREQUEST._serialized_end=80433 - _GETWATCHDOGATTRIBUTEDOUBLERESPONSE._serialized_start=80435 - _GETWATCHDOGATTRIBUTEDOUBLERESPONSE._serialized_end=80502 - _GETWATCHDOGATTRIBUTEINT32REQUEST._serialized_start=80505 - _GETWATCHDOGATTRIBUTEINT32REQUEST._serialized_end=80694 - _GETWATCHDOGATTRIBUTEINT32RESPONSE._serialized_start=80697 - _GETWATCHDOGATTRIBUTEINT32RESPONSE._serialized_end=80826 - _GETWATCHDOGATTRIBUTESTRINGREQUEST._serialized_start=80829 - _GETWATCHDOGATTRIBUTESTRINGREQUEST._serialized_end=81020 - _GETWATCHDOGATTRIBUTESTRINGRESPONSE._serialized_start=81022 - _GETWATCHDOGATTRIBUTESTRINGRESPONSE._serialized_end=81089 - _GETWRITEATTRIBUTEBOOLREQUEST._serialized_start=81092 - _GETWRITEATTRIBUTEBOOLREQUEST._serialized_end=81258 - _GETWRITEATTRIBUTEBOOLRESPONSE._serialized_start=81260 - _GETWRITEATTRIBUTEBOOLRESPONSE._serialized_end=81322 - _GETWRITEATTRIBUTEDOUBLEREQUEST._serialized_start=81325 - _GETWRITEATTRIBUTEDOUBLEREQUEST._serialized_end=81495 - _GETWRITEATTRIBUTEDOUBLERESPONSE._serialized_start=81497 - _GETWRITEATTRIBUTEDOUBLERESPONSE._serialized_end=81561 - _GETWRITEATTRIBUTEINT32REQUEST._serialized_start=81564 - _GETWRITEATTRIBUTEINT32REQUEST._serialized_end=81732 - _GETWRITEATTRIBUTEINT32RESPONSE._serialized_start=81734 - _GETWRITEATTRIBUTEINT32RESPONSE._serialized_end=81857 - _GETWRITEATTRIBUTESTRINGREQUEST._serialized_start=81860 - _GETWRITEATTRIBUTESTRINGREQUEST._serialized_end=82030 - _GETWRITEATTRIBUTESTRINGRESPONSE._serialized_start=82032 - _GETWRITEATTRIBUTESTRINGRESPONSE._serialized_end=82096 - _GETWRITEATTRIBUTEUINT32REQUEST._serialized_start=82099 - _GETWRITEATTRIBUTEUINT32REQUEST._serialized_end=82269 - _GETWRITEATTRIBUTEUINT32RESPONSE._serialized_start=82271 - _GETWRITEATTRIBUTEUINT32RESPONSE._serialized_end=82335 - _GETWRITEATTRIBUTEUINT64REQUEST._serialized_start=82338 - _GETWRITEATTRIBUTEUINT64REQUEST._serialized_end=82508 - _GETWRITEATTRIBUTEUINT64RESPONSE._serialized_start=82510 - _GETWRITEATTRIBUTEUINT64RESPONSE._serialized_end=82574 - _ISTASKDONEREQUEST._serialized_start=82576 - _ISTASKDONEREQUEST._serialized_end=82633 - _ISTASKDONERESPONSE._serialized_start=82635 - _ISTASKDONERESPONSE._serialized_end=82693 - _LOADTASKREQUEST._serialized_start=82695 - _LOADTASKREQUEST._serialized_end=82813 - _LOADTASKRESPONSE._serialized_start=82815 - _LOADTASKRESPONSE._serialized_end=82920 - _PERFORMBRIDGEOFFSETNULLINGCALEXREQUEST._serialized_start=82923 - _PERFORMBRIDGEOFFSETNULLINGCALEXREQUEST._serialized_end=83053 - _PERFORMBRIDGEOFFSETNULLINGCALEXRESPONSE._serialized_start=83055 - _PERFORMBRIDGEOFFSETNULLINGCALEXRESPONSE._serialized_end=83112 - _PERFORMBRIDGESHUNTCALEXREQUEST._serialized_start=83115 - _PERFORMBRIDGESHUNTCALEXREQUEST._serialized_end=83696 - _PERFORMBRIDGESHUNTCALEXRESPONSE._serialized_start=83698 - _PERFORMBRIDGESHUNTCALEXRESPONSE._serialized_end=83747 - _PERFORMSTRAINSHUNTCALEXREQUEST._serialized_start=83750 - _PERFORMSTRAINSHUNTCALEXREQUEST._serialized_end=84304 - _PERFORMSTRAINSHUNTCALEXRESPONSE._serialized_start=84306 - _PERFORMSTRAINSHUNTCALEXRESPONSE._serialized_end=84355 - _PERFORMTHRMCPLLEADOFFSETNULLINGCALREQUEST._serialized_start=84358 - _PERFORMTHRMCPLLEADOFFSETNULLINGCALREQUEST._serialized_end=84491 - _PERFORMTHRMCPLLEADOFFSETNULLINGCALRESPONSE._serialized_start=84493 - _PERFORMTHRMCPLLEADOFFSETNULLINGCALRESPONSE._serialized_end=84553 - _READANALOGF64REQUEST._serialized_start=84556 - _READANALOGF64REQUEST._serialized_end=84777 - _READANALOGF64RESPONSE._serialized_start=84779 - _READANALOGF64RESPONSE._serialized_end=84867 - _BEGINREADANALOGF64REQUEST._serialized_start=84870 - _BEGINREADANALOGF64REQUEST._serialized_end=85096 - _BEGINREADANALOGF64RESPONSE._serialized_start=85098 - _BEGINREADANALOGF64RESPONSE._serialized_end=85186 - _MONIKERREADANALOGF64RESPONSE._serialized_start=85188 - _MONIKERREADANALOGF64RESPONSE._serialized_end=85283 - _READANALOGSCALARF64REQUEST._serialized_start=85285 - _READANALOGSCALARF64REQUEST._serialized_end=85368 - _READANALOGSCALARF64RESPONSE._serialized_start=85370 - _READANALOGSCALARF64RESPONSE._serialized_end=85430 - _BEGINREADANALOGSCALARF64REQUEST._serialized_start=85432 - _BEGINREADANALOGSCALARF64REQUEST._serialized_end=85520 - _BEGINREADANALOGSCALARF64RESPONSE._serialized_start=85522 - _BEGINREADANALOGSCALARF64RESPONSE._serialized_end=85616 - _MONIKERREADANALOGSCALARF64RESPONSE._serialized_start=85618 - _MONIKERREADANALOGSCALARF64RESPONSE._serialized_end=85685 - _READBINARYI16REQUEST._serialized_start=85688 - _READBINARYI16REQUEST._serialized_end=85909 - _READBINARYI16RESPONSE._serialized_start=85911 - _READBINARYI16RESPONSE._serialized_end=85999 - _BEGINREADBINARYI16REQUEST._serialized_start=86002 - _BEGINREADBINARYI16REQUEST._serialized_end=86228 - _BEGINREADBINARYI16RESPONSE._serialized_start=86230 - _BEGINREADBINARYI16RESPONSE._serialized_end=86318 - _MONIKERREADBINARYI16RESPONSE._serialized_start=86320 - _MONIKERREADBINARYI16RESPONSE._serialized_end=86415 - _READBINARYI32REQUEST._serialized_start=86418 - _READBINARYI32REQUEST._serialized_end=86639 - _READBINARYI32RESPONSE._serialized_start=86641 - _READBINARYI32RESPONSE._serialized_end=86729 - _BEGINREADBINARYI32REQUEST._serialized_start=86732 - _BEGINREADBINARYI32REQUEST._serialized_end=86958 - _BEGINREADBINARYI32RESPONSE._serialized_start=86960 - _BEGINREADBINARYI32RESPONSE._serialized_end=87048 - _MONIKERREADBINARYI32RESPONSE._serialized_start=87050 - _MONIKERREADBINARYI32RESPONSE._serialized_end=87145 - _READBINARYU16REQUEST._serialized_start=87148 - _READBINARYU16REQUEST._serialized_end=87369 - _READBINARYU16RESPONSE._serialized_start=87371 - _READBINARYU16RESPONSE._serialized_end=87459 - _BEGINREADBINARYU16REQUEST._serialized_start=87462 - _BEGINREADBINARYU16REQUEST._serialized_end=87688 - _BEGINREADBINARYU16RESPONSE._serialized_start=87690 - _BEGINREADBINARYU16RESPONSE._serialized_end=87778 - _MONIKERREADBINARYU16RESPONSE._serialized_start=87780 - _MONIKERREADBINARYU16RESPONSE._serialized_end=87875 - _READBINARYU32REQUEST._serialized_start=87878 - _READBINARYU32REQUEST._serialized_end=88099 - _READBINARYU32RESPONSE._serialized_start=88101 - _READBINARYU32RESPONSE._serialized_end=88189 - _BEGINREADBINARYU32REQUEST._serialized_start=88192 - _BEGINREADBINARYU32REQUEST._serialized_end=88418 - _BEGINREADBINARYU32RESPONSE._serialized_start=88420 - _BEGINREADBINARYU32RESPONSE._serialized_end=88508 - _MONIKERREADBINARYU32RESPONSE._serialized_start=88510 - _MONIKERREADBINARYU32RESPONSE._serialized_end=88605 - _READCOUNTERF64REQUEST._serialized_start=88608 - _READCOUNTERF64REQUEST._serialized_end=88743 - _READCOUNTERF64RESPONSE._serialized_start=88745 - _READCOUNTERF64RESPONSE._serialized_end=88834 - _BEGINREADCOUNTERF64REQUEST._serialized_start=88837 - _BEGINREADCOUNTERF64REQUEST._serialized_end=88977 - _BEGINREADCOUNTERF64RESPONSE._serialized_start=88979 - _BEGINREADCOUNTERF64RESPONSE._serialized_end=89068 - _MONIKERREADCOUNTERF64RESPONSE._serialized_start=89070 - _MONIKERREADCOUNTERF64RESPONSE._serialized_end=89166 - _READCOUNTERF64EXREQUEST._serialized_start=89169 - _READCOUNTERF64EXREQUEST._serialized_end=89393 - _READCOUNTERF64EXRESPONSE._serialized_start=89395 - _READCOUNTERF64EXRESPONSE._serialized_end=89486 - _BEGINREADCOUNTERF64EXREQUEST._serialized_start=89489 - _BEGINREADCOUNTERF64EXREQUEST._serialized_end=89718 - _BEGINREADCOUNTERF64EXRESPONSE._serialized_start=89720 - _BEGINREADCOUNTERF64EXRESPONSE._serialized_end=89811 - _MONIKERREADCOUNTERF64EXRESPONSE._serialized_start=89813 - _MONIKERREADCOUNTERF64EXRESPONSE._serialized_end=89911 - _READCOUNTERSCALARF64REQUEST._serialized_start=89913 - _READCOUNTERSCALARF64REQUEST._serialized_end=89997 - _READCOUNTERSCALARF64RESPONSE._serialized_start=89999 - _READCOUNTERSCALARF64RESPONSE._serialized_end=90060 - _BEGINREADCOUNTERSCALARF64REQUEST._serialized_start=90062 - _BEGINREADCOUNTERSCALARF64REQUEST._serialized_end=90151 - _BEGINREADCOUNTERSCALARF64RESPONSE._serialized_start=90153 - _BEGINREADCOUNTERSCALARF64RESPONSE._serialized_end=90248 - _MONIKERREADCOUNTERSCALARF64RESPONSE._serialized_start=90250 - _MONIKERREADCOUNTERSCALARF64RESPONSE._serialized_end=90318 - _READCOUNTERSCALARU32REQUEST._serialized_start=90320 - _READCOUNTERSCALARU32REQUEST._serialized_end=90404 - _READCOUNTERSCALARU32RESPONSE._serialized_start=90406 - _READCOUNTERSCALARU32RESPONSE._serialized_end=90467 - _BEGINREADCOUNTERSCALARU32REQUEST._serialized_start=90469 - _BEGINREADCOUNTERSCALARU32REQUEST._serialized_end=90558 - _BEGINREADCOUNTERSCALARU32RESPONSE._serialized_start=90560 - _BEGINREADCOUNTERSCALARU32RESPONSE._serialized_end=90655 - _MONIKERREADCOUNTERSCALARU32RESPONSE._serialized_start=90657 - _MONIKERREADCOUNTERSCALARU32RESPONSE._serialized_end=90725 - _READCOUNTERU32REQUEST._serialized_start=90728 - _READCOUNTERU32REQUEST._serialized_end=90863 - _READCOUNTERU32RESPONSE._serialized_start=90865 - _READCOUNTERU32RESPONSE._serialized_end=90954 - _BEGINREADCOUNTERU32REQUEST._serialized_start=90957 - _BEGINREADCOUNTERU32REQUEST._serialized_end=91097 - _BEGINREADCOUNTERU32RESPONSE._serialized_start=91099 - _BEGINREADCOUNTERU32RESPONSE._serialized_end=91188 - _MONIKERREADCOUNTERU32RESPONSE._serialized_start=91190 - _MONIKERREADCOUNTERU32RESPONSE._serialized_end=91286 - _READCOUNTERU32EXREQUEST._serialized_start=91289 - _READCOUNTERU32EXREQUEST._serialized_end=91513 - _READCOUNTERU32EXRESPONSE._serialized_start=91515 - _READCOUNTERU32EXRESPONSE._serialized_end=91606 - _BEGINREADCOUNTERU32EXREQUEST._serialized_start=91609 - _BEGINREADCOUNTERU32EXREQUEST._serialized_end=91838 - _BEGINREADCOUNTERU32EXRESPONSE._serialized_start=91840 - _BEGINREADCOUNTERU32EXRESPONSE._serialized_end=91931 - _MONIKERREADCOUNTERU32EXRESPONSE._serialized_start=91933 - _MONIKERREADCOUNTERU32EXRESPONSE._serialized_end=92031 - _READCTRFREQREQUEST._serialized_start=92034 - _READCTRFREQREQUEST._serialized_end=92259 - _READCTRFREQRESPONSE._serialized_start=92261 - _READCTRFREQRESPONSE._serialized_end=92388 - _BEGINREADCTRFREQREQUEST._serialized_start=92391 - _BEGINREADCTRFREQREQUEST._serialized_end=92621 - _BEGINREADCTRFREQRESPONSE._serialized_start=92623 - _BEGINREADCTRFREQRESPONSE._serialized_end=92709 - _MONIKERREADCTRFREQRESPONSE._serialized_start=92712 - _MONIKERREADCTRFREQRESPONSE._serialized_end=92846 - _READCTRFREQSCALARREQUEST._serialized_start=92848 - _READCTRFREQSCALARREQUEST._serialized_end=92929 - _READCTRFREQSCALARRESPONSE._serialized_start=92931 - _READCTRFREQSCALARRESPONSE._serialized_end=93013 - _BEGINREADCTRFREQSCALARREQUEST._serialized_start=93015 - _BEGINREADCTRFREQSCALARREQUEST._serialized_end=93101 - _BEGINREADCTRFREQSCALARRESPONSE._serialized_start=93103 - _BEGINREADCTRFREQSCALARRESPONSE._serialized_end=93195 - _MONIKERREADCTRFREQSCALARRESPONSE._serialized_start=93197 - _MONIKERREADCTRFREQSCALARRESPONSE._serialized_end=93286 - _READCTRTICKSREQUEST._serialized_start=93289 - _READCTRTICKSREQUEST._serialized_end=93515 - _READCTRTICKSRESPONSE._serialized_start=93518 - _READCTRTICKSRESPONSE._serialized_end=93646 - _BEGINREADCTRTICKSREQUEST._serialized_start=93649 - _BEGINREADCTRTICKSREQUEST._serialized_end=93880 - _BEGINREADCTRTICKSRESPONSE._serialized_start=93882 - _BEGINREADCTRTICKSRESPONSE._serialized_end=93969 - _MONIKERREADCTRTICKSRESPONSE._serialized_start=93972 - _MONIKERREADCTRTICKSRESPONSE._serialized_end=94107 - _READCTRTICKSSCALARREQUEST._serialized_start=94109 - _READCTRTICKSSCALARREQUEST._serialized_end=94191 - _READCTRTICKSSCALARRESPONSE._serialized_start=94193 - _READCTRTICKSSCALARRESPONSE._serialized_end=94276 - _BEGINREADCTRTICKSSCALARREQUEST._serialized_start=94278 - _BEGINREADCTRTICKSSCALARREQUEST._serialized_end=94365 - _BEGINREADCTRTICKSSCALARRESPONSE._serialized_start=94367 - _BEGINREADCTRTICKSSCALARRESPONSE._serialized_end=94460 - _MONIKERREADCTRTICKSSCALARRESPONSE._serialized_start=94462 - _MONIKERREADCTRTICKSSCALARRESPONSE._serialized_end=94552 - _READCTRTIMEREQUEST._serialized_start=94555 - _READCTRTIMEREQUEST._serialized_end=94780 - _READCTRTIMERESPONSE._serialized_start=94782 - _READCTRTIMERESPONSE._serialized_end=94907 - _BEGINREADCTRTIMEREQUEST._serialized_start=94910 - _BEGINREADCTRTIMEREQUEST._serialized_end=95140 - _BEGINREADCTRTIMERESPONSE._serialized_start=95142 - _BEGINREADCTRTIMERESPONSE._serialized_end=95228 - _MONIKERREADCTRTIMERESPONSE._serialized_start=95231 - _MONIKERREADCTRTIMERESPONSE._serialized_end=95363 - _READCTRTIMESCALARREQUEST._serialized_start=95365 - _READCTRTIMESCALARREQUEST._serialized_end=95446 - _READCTRTIMESCALARRESPONSE._serialized_start=95448 - _READCTRTIMESCALARRESPONSE._serialized_end=95528 - _BEGINREADCTRTIMESCALARREQUEST._serialized_start=95530 - _BEGINREADCTRTIMESCALARREQUEST._serialized_end=95616 - _BEGINREADCTRTIMESCALARRESPONSE._serialized_start=95618 - _BEGINREADCTRTIMESCALARRESPONSE._serialized_end=95710 - _MONIKERREADCTRTIMESCALARRESPONSE._serialized_start=95712 - _MONIKERREADCTRTIMESCALARRESPONSE._serialized_end=95799 - _READDIGITALLINESREQUEST._serialized_start=95802 - _READDIGITALLINESREQUEST._serialized_end=96026 - _READDIGITALLINESRESPONSE._serialized_start=96028 - _READDIGITALLINESRESPONSE._serialized_end=96147 - _BEGINREADDIGITALLINESREQUEST._serialized_start=96150 - _BEGINREADDIGITALLINESREQUEST._serialized_end=96379 - _BEGINREADDIGITALLINESRESPONSE._serialized_start=96381 - _BEGINREADDIGITALLINESRESPONSE._serialized_end=96500 - _MONIKERREADDIGITALLINESRESPONSE._serialized_start=96502 - _MONIKERREADDIGITALLINESRESPONSE._serialized_end=96628 - _READDIGITALSCALARU32REQUEST._serialized_start=96630 - _READDIGITALSCALARU32REQUEST._serialized_end=96714 - _READDIGITALSCALARU32RESPONSE._serialized_start=96716 - _READDIGITALSCALARU32RESPONSE._serialized_end=96777 - _BEGINREADDIGITALSCALARU32REQUEST._serialized_start=96779 - _BEGINREADDIGITALSCALARU32REQUEST._serialized_end=96868 - _BEGINREADDIGITALSCALARU32RESPONSE._serialized_start=96870 - _BEGINREADDIGITALSCALARU32RESPONSE._serialized_end=96965 - _MONIKERREADDIGITALSCALARU32RESPONSE._serialized_start=96967 - _MONIKERREADDIGITALSCALARU32RESPONSE._serialized_end=97035 - _READDIGITALU16REQUEST._serialized_start=97038 - _READDIGITALU16REQUEST._serialized_end=97260 - _READDIGITALU16RESPONSE._serialized_start=97262 - _READDIGITALU16RESPONSE._serialized_end=97351 - _BEGINREADDIGITALU16REQUEST._serialized_start=97354 - _BEGINREADDIGITALU16REQUEST._serialized_end=97581 - _BEGINREADDIGITALU16RESPONSE._serialized_start=97583 - _BEGINREADDIGITALU16RESPONSE._serialized_end=97672 - _MONIKERREADDIGITALU16RESPONSE._serialized_start=97674 - _MONIKERREADDIGITALU16RESPONSE._serialized_end=97770 - _READDIGITALU32REQUEST._serialized_start=97773 - _READDIGITALU32REQUEST._serialized_end=97995 - _READDIGITALU32RESPONSE._serialized_start=97997 - _READDIGITALU32RESPONSE._serialized_end=98086 - _BEGINREADDIGITALU32REQUEST._serialized_start=98089 - _BEGINREADDIGITALU32REQUEST._serialized_end=98316 - _BEGINREADDIGITALU32RESPONSE._serialized_start=98318 - _BEGINREADDIGITALU32RESPONSE._serialized_end=98407 - _MONIKERREADDIGITALU32RESPONSE._serialized_start=98409 - _MONIKERREADDIGITALU32RESPONSE._serialized_end=98505 - _READDIGITALU8REQUEST._serialized_start=98508 - _READDIGITALU8REQUEST._serialized_end=98729 - _READDIGITALU8RESPONSE._serialized_start=98731 - _READDIGITALU8RESPONSE._serialized_end=98819 - _BEGINREADDIGITALU8REQUEST._serialized_start=98822 - _BEGINREADDIGITALU8REQUEST._serialized_end=99048 - _BEGINREADDIGITALU8RESPONSE._serialized_start=99050 - _BEGINREADDIGITALU8RESPONSE._serialized_end=99138 - _MONIKERREADDIGITALU8RESPONSE._serialized_start=99140 - _MONIKERREADDIGITALU8RESPONSE._serialized_end=99235 - _READIDPINMEMORYREQUEST._serialized_start=99237 - _READIDPINMEMORYREQUEST._serialized_end=99323 - _READIDPINMEMORYRESPONSE._serialized_start=99325 - _READIDPINMEMORYRESPONSE._serialized_end=99427 - _READPOWERBINARYI16REQUEST._serialized_start=99430 - _READPOWERBINARYI16REQUEST._serialized_end=99656 - _READPOWERBINARYI16RESPONSE._serialized_start=99659 - _READPOWERBINARYI16RESPONSE._serialized_end=99788 - _BEGINREADPOWERBINARYI16REQUEST._serialized_start=99791 - _BEGINREADPOWERBINARYI16REQUEST._serialized_end=100022 - _BEGINREADPOWERBINARYI16RESPONSE._serialized_start=100024 - _BEGINREADPOWERBINARYI16RESPONSE._serialized_end=100117 - _MONIKERREADPOWERBINARYI16RESPONSE._serialized_start=100120 - _MONIKERREADPOWERBINARYI16RESPONSE._serialized_end=100256 - _READPOWERF64REQUEST._serialized_start=100259 - _READPOWERF64REQUEST._serialized_end=100479 - _READPOWERF64RESPONSE._serialized_start=100481 - _READPOWERF64RESPONSE._serialized_end=100604 - _BEGINREADPOWERF64REQUEST._serialized_start=100607 - _BEGINREADPOWERF64REQUEST._serialized_end=100832 - _BEGINREADPOWERF64RESPONSE._serialized_start=100834 - _BEGINREADPOWERF64RESPONSE._serialized_end=100921 - _MONIKERREADPOWERF64RESPONSE._serialized_start=100924 - _MONIKERREADPOWERF64RESPONSE._serialized_end=101054 - _READPOWERSCALARF64REQUEST._serialized_start=101056 - _READPOWERSCALARF64REQUEST._serialized_end=101138 - _READPOWERSCALARF64RESPONSE._serialized_start=101140 - _READPOWERSCALARF64RESPONSE._serialized_end=101218 - _BEGINREADPOWERSCALARF64REQUEST._serialized_start=101220 - _BEGINREADPOWERSCALARF64REQUEST._serialized_end=101307 - _BEGINREADPOWERSCALARF64RESPONSE._serialized_start=101309 - _BEGINREADPOWERSCALARF64RESPONSE._serialized_end=101402 - _MONIKERREADPOWERSCALARF64RESPONSE._serialized_start=101404 - _MONIKERREADPOWERSCALARF64RESPONSE._serialized_end=101489 - _READRAWREQUEST._serialized_start=101492 - _READRAWREQUEST._serialized_end=101620 - _READRAWRESPONSE._serialized_start=101622 - _READRAWRESPONSE._serialized_end=101723 - _BEGINREADRAWREQUEST._serialized_start=101726 - _BEGINREADRAWREQUEST._serialized_end=101859 - _BEGINREADRAWRESPONSE._serialized_start=101861 - _BEGINREADRAWRESPONSE._serialized_end=101943 - _MONIKERREADRAWRESPONSE._serialized_start=101945 - _MONIKERREADRAWRESPONSE._serialized_end=102053 - _REGISTERDONEEVENTREQUEST._serialized_start=102055 - _REGISTERDONEEVENTREQUEST._serialized_end=102119 - _REGISTERDONEEVENTRESPONSE._serialized_start=102121 - _REGISTERDONEEVENTRESPONSE._serialized_end=102164 - _REGISTEREVERYNSAMPLESEVENTREQUEST._serialized_start=102167 - _REGISTEREVERYNSAMPLESEVENTREQUEST._serialized_end=102412 - _REGISTEREVERYNSAMPLESEVENTRESPONSE._serialized_start=102415 - _REGISTEREVERYNSAMPLESEVENTRESPONSE._serialized_end=102600 - _REGISTERSIGNALEVENTREQUEST._serialized_start=102603 - _REGISTERSIGNALEVENTREQUEST._serialized_end=102756 - _REGISTERSIGNALEVENTRESPONSE._serialized_start=102758 - _REGISTERSIGNALEVENTRESPONSE._serialized_end=102822 - _REMOVECDAQSYNCCONNECTIONREQUEST._serialized_start=102824 - _REMOVECDAQSYNCCONNECTIONREQUEST._serialized_end=102876 - _REMOVECDAQSYNCCONNECTIONRESPONSE._serialized_start=102878 - _REMOVECDAQSYNCCONNECTIONRESPONSE._serialized_end=102928 - _RESERVENETWORKDEVICEREQUEST._serialized_start=102930 - _RESERVENETWORKDEVICEREQUEST._serialized_end=103010 - _RESERVENETWORKDEVICERESPONSE._serialized_start=103012 - _RESERVENETWORKDEVICERESPONSE._serialized_end=103058 - _RESETBUFFERATTRIBUTEREQUEST._serialized_start=103061 - _RESETBUFFERATTRIBUTEREQUEST._serialized_end=103228 - _RESETBUFFERATTRIBUTERESPONSE._serialized_start=103230 - _RESETBUFFERATTRIBUTERESPONSE._serialized_end=103276 - _RESETCHANATTRIBUTEREQUEST._serialized_start=103279 - _RESETCHANATTRIBUTEREQUEST._serialized_end=103462 - _RESETCHANATTRIBUTERESPONSE._serialized_start=103464 - _RESETCHANATTRIBUTERESPONSE._serialized_end=103508 - _RESETDEVICEREQUEST._serialized_start=103510 - _RESETDEVICEREQUEST._serialized_end=103551 - _RESETDEVICERESPONSE._serialized_start=103553 - _RESETDEVICERESPONSE._serialized_end=103590 - _RESETEXPORTEDSIGNALATTRIBUTEREQUEST._serialized_start=103593 - _RESETEXPORTEDSIGNALATTRIBUTEREQUEST._serialized_end=103774 - _RESETEXPORTEDSIGNALATTRIBUTERESPONSE._serialized_start=103776 - _RESETEXPORTEDSIGNALATTRIBUTERESPONSE._serialized_end=103830 - _RESETREADATTRIBUTEREQUEST._serialized_start=103833 - _RESETREADATTRIBUTEREQUEST._serialized_end=103996 - _RESETREADATTRIBUTERESPONSE._serialized_start=103998 - _RESETREADATTRIBUTERESPONSE._serialized_end=104042 - _RESETREALTIMEATTRIBUTEREQUEST._serialized_start=104045 - _RESETREALTIMEATTRIBUTEREQUEST._serialized_end=104216 - _RESETREALTIMEATTRIBUTERESPONSE._serialized_start=104218 - _RESETREALTIMEATTRIBUTERESPONSE._serialized_end=104266 - _RESETTIMINGATTRIBUTEREQUEST._serialized_start=104269 - _RESETTIMINGATTRIBUTEREQUEST._serialized_end=104436 - _RESETTIMINGATTRIBUTERESPONSE._serialized_start=104438 - _RESETTIMINGATTRIBUTERESPONSE._serialized_end=104484 - _RESETTIMINGATTRIBUTEEXREQUEST._serialized_start=104487 - _RESETTIMINGATTRIBUTEEXREQUEST._serialized_end=104678 - _RESETTIMINGATTRIBUTEEXRESPONSE._serialized_start=104680 - _RESETTIMINGATTRIBUTEEXRESPONSE._serialized_end=104728 - _RESETTRIGATTRIBUTEREQUEST._serialized_start=104731 - _RESETTRIGATTRIBUTEREQUEST._serialized_end=104897 - _RESETTRIGATTRIBUTERESPONSE._serialized_start=104899 - _RESETTRIGATTRIBUTERESPONSE._serialized_end=104943 - _RESETWATCHDOGATTRIBUTEREQUEST._serialized_start=104946 - _RESETWATCHDOGATTRIBUTEREQUEST._serialized_end=105132 - _RESETWATCHDOGATTRIBUTERESPONSE._serialized_start=105134 - _RESETWATCHDOGATTRIBUTERESPONSE._serialized_end=105182 - _RESETWRITEATTRIBUTEREQUEST._serialized_start=105185 - _RESETWRITEATTRIBUTEREQUEST._serialized_end=105350 - _RESETWRITEATTRIBUTERESPONSE._serialized_start=105352 - _RESETWRITEATTRIBUTERESPONSE._serialized_end=105397 - _RESTORELASTEXTCALCONSTREQUEST._serialized_start=105399 - _RESTORELASTEXTCALCONSTREQUEST._serialized_end=105451 - _RESTORELASTEXTCALCONSTRESPONSE._serialized_start=105453 - _RESTORELASTEXTCALCONSTRESPONSE._serialized_end=105501 - _SAVEGLOBALCHANREQUEST._serialized_start=105504 - _SAVEGLOBALCHANREQUEST._serialized_end=105705 - _SAVEGLOBALCHANRESPONSE._serialized_start=105707 - _SAVEGLOBALCHANRESPONSE._serialized_end=105747 - _SAVESCALEREQUEST._serialized_start=105750 - _SAVESCALEREQUEST._serialized_end=105906 - _SAVESCALERESPONSE._serialized_start=105908 - _SAVESCALERESPONSE._serialized_end=105943 - _SAVETASKREQUEST._serialized_start=105946 - _SAVETASKREQUEST._serialized_end=106119 - _SAVETASKRESPONSE._serialized_start=106121 - _SAVETASKRESPONSE._serialized_end=106155 - _SELFCALREQUEST._serialized_start=106157 - _SELFCALREQUEST._serialized_end=106194 - _SELFCALRESPONSE._serialized_start=106196 - _SELFCALRESPONSE._serialized_end=106229 - _SELFTESTDEVICEREQUEST._serialized_start=106231 - _SELFTESTDEVICEREQUEST._serialized_end=106275 - _SELFTESTDEVICERESPONSE._serialized_start=106277 - _SELFTESTDEVICERESPONSE._serialized_end=106317 - _SETAICHANCALCALDATEREQUEST._serialized_start=106320 - _SETAICHANCALCALDATEREQUEST._serialized_end=106480 - _SETAICHANCALCALDATERESPONSE._serialized_start=106482 - _SETAICHANCALCALDATERESPONSE._serialized_end=106527 - _SETAICHANCALEXPDATEREQUEST._serialized_start=106530 - _SETAICHANCALEXPDATEREQUEST._serialized_end=106690 - _SETAICHANCALEXPDATERESPONSE._serialized_start=106692 - _SETAICHANCALEXPDATERESPONSE._serialized_end=106737 - _SETANALOGPOWERUPSTATESREQUEST._serialized_start=106739 - _SETANALOGPOWERUPSTATESREQUEST._serialized_end=106861 - _SETANALOGPOWERUPSTATESRESPONSE._serialized_start=106863 - _SETANALOGPOWERUPSTATESRESPONSE._serialized_end=106911 - _SETANALOGPOWERUPSTATESWITHOUTPUTTYPEREQUEST._serialized_start=106914 - _SETANALOGPOWERUPSTATESWITHOUTPUTTYPEREQUEST._serialized_end=107065 - _SETANALOGPOWERUPSTATESWITHOUTPUTTYPERESPONSE._serialized_start=107067 - _SETANALOGPOWERUPSTATESWITHOUTPUTTYPERESPONSE._serialized_end=107129 - _SETARMSTARTTRIGTRIGWHENREQUEST._serialized_start=107131 - _SETARMSTARTTRIGTRIGWHENREQUEST._serialized_end=107243 - _SETARMSTARTTRIGTRIGWHENRESPONSE._serialized_start=107245 - _SETARMSTARTTRIGTRIGWHENRESPONSE._serialized_end=107294 - _SETBUFFERATTRIBUTEUINT32REQUEST._serialized_start=107297 - _SETBUFFERATTRIBUTEUINT32REQUEST._serialized_end=107484 - _SETBUFFERATTRIBUTEUINT32RESPONSE._serialized_start=107486 - _SETBUFFERATTRIBUTEUINT32RESPONSE._serialized_end=107536 - _SETCALINFOATTRIBUTEBOOLREQUEST._serialized_start=107539 - _SETCALINFOATTRIBUTEBOOLREQUEST._serialized_end=107715 - _SETCALINFOATTRIBUTEBOOLRESPONSE._serialized_start=107717 - _SETCALINFOATTRIBUTEBOOLRESPONSE._serialized_end=107766 - _SETCALINFOATTRIBUTEDOUBLEREQUEST._serialized_start=107769 - _SETCALINFOATTRIBUTEDOUBLEREQUEST._serialized_end=107949 - _SETCALINFOATTRIBUTEDOUBLERESPONSE._serialized_start=107951 - _SETCALINFOATTRIBUTEDOUBLERESPONSE._serialized_end=108002 - _SETCALINFOATTRIBUTESTRINGREQUEST._serialized_start=108005 - _SETCALINFOATTRIBUTESTRINGREQUEST._serialized_end=108185 - _SETCALINFOATTRIBUTESTRINGRESPONSE._serialized_start=108187 - _SETCALINFOATTRIBUTESTRINGRESPONSE._serialized_end=108238 - _SETCALINFOATTRIBUTEUINT32REQUEST._serialized_start=108241 - _SETCALINFOATTRIBUTEUINT32REQUEST._serialized_end=108421 - _SETCALINFOATTRIBUTEUINT32RESPONSE._serialized_start=108423 - _SETCALINFOATTRIBUTEUINT32RESPONSE._serialized_end=108474 - _SETCHANATTRIBUTEBOOLREQUEST._serialized_start=108477 - _SETCHANATTRIBUTEBOOLREQUEST._serialized_end=108676 - _SETCHANATTRIBUTEBOOLRESPONSE._serialized_start=108678 - _SETCHANATTRIBUTEBOOLRESPONSE._serialized_end=108724 - _SETCHANATTRIBUTEDOUBLEREQUEST._serialized_start=108727 - _SETCHANATTRIBUTEDOUBLEREQUEST._serialized_end=108930 - _SETCHANATTRIBUTEDOUBLERESPONSE._serialized_start=108932 - _SETCHANATTRIBUTEDOUBLERESPONSE._serialized_end=108980 - _SETCHANATTRIBUTEDOUBLEARRAYREQUEST._serialized_start=108983 - _SETCHANATTRIBUTEDOUBLEARRAYREQUEST._serialized_end=109196 - _SETCHANATTRIBUTEDOUBLEARRAYRESPONSE._serialized_start=109198 - _SETCHANATTRIBUTEDOUBLEARRAYRESPONSE._serialized_end=109251 - _SETCHANATTRIBUTEINT32REQUEST._serialized_start=109254 - _SETCHANATTRIBUTEINT32REQUEST._serialized_end=109535 - _SETCHANATTRIBUTEINT32RESPONSE._serialized_start=109537 - _SETCHANATTRIBUTEINT32RESPONSE._serialized_end=109584 - _SETCHANATTRIBUTESTRINGREQUEST._serialized_start=109587 - _SETCHANATTRIBUTESTRINGREQUEST._serialized_end=109790 - _SETCHANATTRIBUTESTRINGRESPONSE._serialized_start=109792 - _SETCHANATTRIBUTESTRINGRESPONSE._serialized_end=109840 - _SETCHANATTRIBUTEUINT32REQUEST._serialized_start=109843 - _SETCHANATTRIBUTEUINT32REQUEST._serialized_end=110046 - _SETCHANATTRIBUTEUINT32RESPONSE._serialized_start=110048 - _SETCHANATTRIBUTEUINT32RESPONSE._serialized_end=110096 - _SETDIGITALLOGICFAMILYPOWERUPSTATEREQUEST._serialized_start=110099 - _SETDIGITALLOGICFAMILYPOWERUPSTATEREQUEST._serialized_end=110262 - _SETDIGITALLOGICFAMILYPOWERUPSTATERESPONSE._serialized_start=110264 - _SETDIGITALLOGICFAMILYPOWERUPSTATERESPONSE._serialized_end=110323 - _SETDIGITALPOWERUPSTATESREQUEST._serialized_start=110325 - _SETDIGITALPOWERUPSTATESREQUEST._serialized_end=110449 - _SETDIGITALPOWERUPSTATESRESPONSE._serialized_start=110451 - _SETDIGITALPOWERUPSTATESRESPONSE._serialized_end=110500 - _SETDIGITALPULLUPPULLDOWNSTATESREQUEST._serialized_start=110503 - _SETDIGITALPULLUPPULLDOWNSTATESREQUEST._serialized_end=110650 - _SETDIGITALPULLUPPULLDOWNSTATESRESPONSE._serialized_start=110652 - _SETDIGITALPULLUPPULLDOWNSTATESRESPONSE._serialized_end=110708 - _SETEXPORTEDSIGNALATTRIBUTEBOOLREQUEST._serialized_start=110711 - _SETEXPORTEDSIGNALATTRIBUTEBOOLREQUEST._serialized_end=110908 - _SETEXPORTEDSIGNALATTRIBUTEBOOLRESPONSE._serialized_start=110910 - _SETEXPORTEDSIGNALATTRIBUTEBOOLRESPONSE._serialized_end=110966 - _SETEXPORTEDSIGNALATTRIBUTEDOUBLEREQUEST._serialized_start=110969 - _SETEXPORTEDSIGNALATTRIBUTEDOUBLEREQUEST._serialized_end=111170 - _SETEXPORTEDSIGNALATTRIBUTEDOUBLERESPONSE._serialized_start=111172 - _SETEXPORTEDSIGNALATTRIBUTEDOUBLERESPONSE._serialized_end=111230 - _SETEXPORTEDSIGNALATTRIBUTEINT32REQUEST._serialized_start=111233 - _SETEXPORTEDSIGNALATTRIBUTEINT32REQUEST._serialized_end=111517 - _SETEXPORTEDSIGNALATTRIBUTEINT32RESPONSE._serialized_start=111519 - _SETEXPORTEDSIGNALATTRIBUTEINT32RESPONSE._serialized_end=111576 - _SETEXPORTEDSIGNALATTRIBUTESTRINGREQUEST._serialized_start=111579 - _SETEXPORTEDSIGNALATTRIBUTESTRINGREQUEST._serialized_end=111780 - _SETEXPORTEDSIGNALATTRIBUTESTRINGRESPONSE._serialized_start=111782 - _SETEXPORTEDSIGNALATTRIBUTESTRINGRESPONSE._serialized_end=111840 - _SETEXPORTEDSIGNALATTRIBUTEUINT32REQUEST._serialized_start=111843 - _SETEXPORTEDSIGNALATTRIBUTEUINT32REQUEST._serialized_end=112044 - _SETEXPORTEDSIGNALATTRIBUTEUINT32RESPONSE._serialized_start=112046 - _SETEXPORTEDSIGNALATTRIBUTEUINT32RESPONSE._serialized_end=112104 - _SETFIRSTSAMPCLKWHENREQUEST._serialized_start=112106 - _SETFIRSTSAMPCLKWHENREQUEST._serialized_end=112214 - _SETFIRSTSAMPCLKWHENRESPONSE._serialized_start=112216 - _SETFIRSTSAMPCLKWHENRESPONSE._serialized_end=112261 - _SETREADATTRIBUTEBOOLREQUEST._serialized_start=112264 - _SETREADATTRIBUTEBOOLREQUEST._serialized_end=112443 - _SETREADATTRIBUTEBOOLRESPONSE._serialized_start=112445 - _SETREADATTRIBUTEBOOLRESPONSE._serialized_end=112491 - _SETREADATTRIBUTEDOUBLEREQUEST._serialized_start=112494 - _SETREADATTRIBUTEDOUBLEREQUEST._serialized_end=112677 - _SETREADATTRIBUTEDOUBLERESPONSE._serialized_start=112679 - _SETREADATTRIBUTEDOUBLERESPONSE._serialized_end=112727 - _SETREADATTRIBUTEINT32REQUEST._serialized_start=112730 - _SETREADATTRIBUTEINT32REQUEST._serialized_end=112988 - _SETREADATTRIBUTEINT32RESPONSE._serialized_start=112990 - _SETREADATTRIBUTEINT32RESPONSE._serialized_end=113037 - _SETREADATTRIBUTESTRINGREQUEST._serialized_start=113040 - _SETREADATTRIBUTESTRINGREQUEST._serialized_end=113223 - _SETREADATTRIBUTESTRINGRESPONSE._serialized_start=113225 - _SETREADATTRIBUTESTRINGRESPONSE._serialized_end=113273 - _SETREADATTRIBUTEUINT32REQUEST._serialized_start=113276 - _SETREADATTRIBUTEUINT32REQUEST._serialized_end=113459 - _SETREADATTRIBUTEUINT32RESPONSE._serialized_start=113461 - _SETREADATTRIBUTEUINT32RESPONSE._serialized_end=113509 - _SETREADATTRIBUTEUINT64REQUEST._serialized_start=113512 - _SETREADATTRIBUTEUINT64REQUEST._serialized_end=113695 - _SETREADATTRIBUTEUINT64RESPONSE._serialized_start=113697 - _SETREADATTRIBUTEUINT64RESPONSE._serialized_end=113745 - _SETREALTIMEATTRIBUTEBOOLREQUEST._serialized_start=113748 - _SETREALTIMEATTRIBUTEBOOLREQUEST._serialized_end=113935 - _SETREALTIMEATTRIBUTEBOOLRESPONSE._serialized_start=113937 - _SETREALTIMEATTRIBUTEBOOLRESPONSE._serialized_end=113987 - _SETREALTIMEATTRIBUTEINT32REQUEST._serialized_start=113990 - _SETREALTIMEATTRIBUTEINT32REQUEST._serialized_end=114260 - _SETREALTIMEATTRIBUTEINT32RESPONSE._serialized_start=114262 - _SETREALTIMEATTRIBUTEINT32RESPONSE._serialized_end=114313 - _SETREALTIMEATTRIBUTEUINT32REQUEST._serialized_start=114316 - _SETREALTIMEATTRIBUTEUINT32REQUEST._serialized_end=114507 - _SETREALTIMEATTRIBUTEUINT32RESPONSE._serialized_start=114509 - _SETREALTIMEATTRIBUTEUINT32RESPONSE._serialized_end=114561 - _SETSCALEATTRIBUTEDOUBLEREQUEST._serialized_start=114564 - _SETSCALEATTRIBUTEDOUBLEREQUEST._serialized_end=114731 - _SETSCALEATTRIBUTEDOUBLERESPONSE._serialized_start=114733 - _SETSCALEATTRIBUTEDOUBLERESPONSE._serialized_end=114782 - _SETSCALEATTRIBUTEDOUBLEARRAYREQUEST._serialized_start=114785 - _SETSCALEATTRIBUTEDOUBLEARRAYREQUEST._serialized_end=114962 - _SETSCALEATTRIBUTEDOUBLEARRAYRESPONSE._serialized_start=114964 - _SETSCALEATTRIBUTEDOUBLEARRAYRESPONSE._serialized_end=115018 - _SETSCALEATTRIBUTEINT32REQUEST._serialized_start=115021 - _SETSCALEATTRIBUTEINT32REQUEST._serialized_end=115264 - _SETSCALEATTRIBUTEINT32RESPONSE._serialized_start=115266 - _SETSCALEATTRIBUTEINT32RESPONSE._serialized_end=115314 - _SETSCALEATTRIBUTESTRINGREQUEST._serialized_start=115317 - _SETSCALEATTRIBUTESTRINGREQUEST._serialized_end=115484 - _SETSCALEATTRIBUTESTRINGRESPONSE._serialized_start=115486 - _SETSCALEATTRIBUTESTRINGRESPONSE._serialized_end=115535 - _SETSTARTTRIGTRIGWHENREQUEST._serialized_start=115537 - _SETSTARTTRIGTRIGWHENREQUEST._serialized_end=115646 - _SETSTARTTRIGTRIGWHENRESPONSE._serialized_start=115648 - _SETSTARTTRIGTRIGWHENRESPONSE._serialized_end=115694 - _SETSYNCPULSETIMEWHENREQUEST._serialized_start=115696 - _SETSYNCPULSETIMEWHENREQUEST._serialized_end=115805 - _SETSYNCPULSETIMEWHENRESPONSE._serialized_start=115807 - _SETSYNCPULSETIMEWHENRESPONSE._serialized_end=115853 - _SETTIMINGATTRIBUTEBOOLREQUEST._serialized_start=115856 - _SETTIMINGATTRIBUTEBOOLREQUEST._serialized_end=116039 - _SETTIMINGATTRIBUTEBOOLRESPONSE._serialized_start=116041 - _SETTIMINGATTRIBUTEBOOLRESPONSE._serialized_end=116089 - _SETTIMINGATTRIBUTEDOUBLEREQUEST._serialized_start=116092 - _SETTIMINGATTRIBUTEDOUBLEREQUEST._serialized_end=116279 - _SETTIMINGATTRIBUTEDOUBLERESPONSE._serialized_start=116281 - _SETTIMINGATTRIBUTEDOUBLERESPONSE._serialized_end=116331 - _SETTIMINGATTRIBUTEEXBOOLREQUEST._serialized_start=116334 - _SETTIMINGATTRIBUTEEXBOOLREQUEST._serialized_end=116541 - _SETTIMINGATTRIBUTEEXBOOLRESPONSE._serialized_start=116543 - _SETTIMINGATTRIBUTEEXBOOLRESPONSE._serialized_end=116593 - _SETTIMINGATTRIBUTEEXDOUBLEREQUEST._serialized_start=116596 - _SETTIMINGATTRIBUTEEXDOUBLEREQUEST._serialized_end=116807 - _SETTIMINGATTRIBUTEEXDOUBLERESPONSE._serialized_start=116809 - _SETTIMINGATTRIBUTEEXDOUBLERESPONSE._serialized_end=116861 - _SETTIMINGATTRIBUTEEXINT32REQUEST._serialized_start=116864 - _SETTIMINGATTRIBUTEEXINT32REQUEST._serialized_end=117152 - _SETTIMINGATTRIBUTEEXINT32RESPONSE._serialized_start=117154 - _SETTIMINGATTRIBUTEEXINT32RESPONSE._serialized_end=117205 - _SETTIMINGATTRIBUTEEXSTRINGREQUEST._serialized_start=117208 - _SETTIMINGATTRIBUTEEXSTRINGREQUEST._serialized_end=117419 - _SETTIMINGATTRIBUTEEXSTRINGRESPONSE._serialized_start=117421 - _SETTIMINGATTRIBUTEEXSTRINGRESPONSE._serialized_end=117473 - _SETTIMINGATTRIBUTEEXTIMESTAMPREQUEST._serialized_start=117476 - _SETTIMINGATTRIBUTEEXTIMESTAMPREQUEST._serialized_end=117721 - _SETTIMINGATTRIBUTEEXTIMESTAMPRESPONSE._serialized_start=117723 - _SETTIMINGATTRIBUTEEXTIMESTAMPRESPONSE._serialized_end=117778 - _SETTIMINGATTRIBUTEEXUINT32REQUEST._serialized_start=117781 - _SETTIMINGATTRIBUTEEXUINT32REQUEST._serialized_end=117992 - _SETTIMINGATTRIBUTEEXUINT32RESPONSE._serialized_start=117994 - _SETTIMINGATTRIBUTEEXUINT32RESPONSE._serialized_end=118046 - _SETTIMINGATTRIBUTEEXUINT64REQUEST._serialized_start=118049 - _SETTIMINGATTRIBUTEEXUINT64REQUEST._serialized_end=118260 - _SETTIMINGATTRIBUTEEXUINT64RESPONSE._serialized_start=118262 - _SETTIMINGATTRIBUTEEXUINT64RESPONSE._serialized_end=118314 - _SETTIMINGATTRIBUTEINT32REQUEST._serialized_start=118317 - _SETTIMINGATTRIBUTEINT32REQUEST._serialized_end=118581 - _SETTIMINGATTRIBUTEINT32RESPONSE._serialized_start=118583 - _SETTIMINGATTRIBUTEINT32RESPONSE._serialized_end=118632 - _SETTIMINGATTRIBUTESTRINGREQUEST._serialized_start=118635 - _SETTIMINGATTRIBUTESTRINGREQUEST._serialized_end=118822 - _SETTIMINGATTRIBUTESTRINGRESPONSE._serialized_start=118824 - _SETTIMINGATTRIBUTESTRINGRESPONSE._serialized_end=118874 - _SETTIMINGATTRIBUTETIMESTAMPREQUEST._serialized_start=118877 - _SETTIMINGATTRIBUTETIMESTAMPREQUEST._serialized_end=119098 - _SETTIMINGATTRIBUTETIMESTAMPRESPONSE._serialized_start=119100 - _SETTIMINGATTRIBUTETIMESTAMPRESPONSE._serialized_end=119153 - _SETTIMINGATTRIBUTEUINT32REQUEST._serialized_start=119156 - _SETTIMINGATTRIBUTEUINT32REQUEST._serialized_end=119343 - _SETTIMINGATTRIBUTEUINT32RESPONSE._serialized_start=119345 - _SETTIMINGATTRIBUTEUINT32RESPONSE._serialized_end=119395 - _SETTIMINGATTRIBUTEUINT64REQUEST._serialized_start=119398 - _SETTIMINGATTRIBUTEUINT64REQUEST._serialized_end=119585 - _SETTIMINGATTRIBUTEUINT64RESPONSE._serialized_start=119587 - _SETTIMINGATTRIBUTEUINT64RESPONSE._serialized_end=119637 - _SETTRIGATTRIBUTEBOOLREQUEST._serialized_start=119640 - _SETTRIGATTRIBUTEBOOLREQUEST._serialized_end=119822 - _SETTRIGATTRIBUTEBOOLRESPONSE._serialized_start=119824 - _SETTRIGATTRIBUTEBOOLRESPONSE._serialized_end=119870 - _SETTRIGATTRIBUTEDOUBLEREQUEST._serialized_start=119873 - _SETTRIGATTRIBUTEDOUBLEREQUEST._serialized_end=120059 - _SETTRIGATTRIBUTEDOUBLERESPONSE._serialized_start=120061 - _SETTRIGATTRIBUTEDOUBLERESPONSE._serialized_end=120109 - _SETTRIGATTRIBUTEDOUBLEARRAYREQUEST._serialized_start=120112 - _SETTRIGATTRIBUTEDOUBLEARRAYREQUEST._serialized_end=120308 - _SETTRIGATTRIBUTEDOUBLEARRAYRESPONSE._serialized_start=120310 - _SETTRIGATTRIBUTEDOUBLEARRAYRESPONSE._serialized_end=120363 - _SETTRIGATTRIBUTEINT32REQUEST._serialized_start=120366 - _SETTRIGATTRIBUTEINT32REQUEST._serialized_end=120630 - _SETTRIGATTRIBUTEINT32RESPONSE._serialized_start=120632 - _SETTRIGATTRIBUTEINT32RESPONSE._serialized_end=120679 - _SETTRIGATTRIBUTEINT32ARRAYREQUEST._serialized_start=120682 - _SETTRIGATTRIBUTEINT32ARRAYREQUEST._serialized_end=120876 - _SETTRIGATTRIBUTEINT32ARRAYRESPONSE._serialized_start=120878 - _SETTRIGATTRIBUTEINT32ARRAYRESPONSE._serialized_end=120930 - _SETTRIGATTRIBUTESTRINGREQUEST._serialized_start=120933 - _SETTRIGATTRIBUTESTRINGREQUEST._serialized_end=121119 - _SETTRIGATTRIBUTESTRINGRESPONSE._serialized_start=121121 - _SETTRIGATTRIBUTESTRINGRESPONSE._serialized_end=121169 - _SETTRIGATTRIBUTETIMESTAMPREQUEST._serialized_start=121172 - _SETTRIGATTRIBUTETIMESTAMPREQUEST._serialized_end=121392 - _SETTRIGATTRIBUTETIMESTAMPRESPONSE._serialized_start=121394 - _SETTRIGATTRIBUTETIMESTAMPRESPONSE._serialized_end=121445 - _SETTRIGATTRIBUTEUINT32REQUEST._serialized_start=121448 - _SETTRIGATTRIBUTEUINT32REQUEST._serialized_end=121634 - _SETTRIGATTRIBUTEUINT32RESPONSE._serialized_start=121636 - _SETTRIGATTRIBUTEUINT32RESPONSE._serialized_end=121684 - _SETWATCHDOGATTRIBUTEBOOLREQUEST._serialized_start=121687 - _SETWATCHDOGATTRIBUTEBOOLREQUEST._serialized_end=121889 - _SETWATCHDOGATTRIBUTEBOOLRESPONSE._serialized_start=121891 - _SETWATCHDOGATTRIBUTEBOOLRESPONSE._serialized_end=121941 - _SETWATCHDOGATTRIBUTEDOUBLEREQUEST._serialized_start=121944 - _SETWATCHDOGATTRIBUTEDOUBLEREQUEST._serialized_end=122150 - _SETWATCHDOGATTRIBUTEDOUBLERESPONSE._serialized_start=122152 - _SETWATCHDOGATTRIBUTEDOUBLERESPONSE._serialized_end=122204 - _SETWATCHDOGATTRIBUTEINT32REQUEST._serialized_start=122207 - _SETWATCHDOGATTRIBUTEINT32REQUEST._serialized_end=122492 - _SETWATCHDOGATTRIBUTEINT32RESPONSE._serialized_start=122494 - _SETWATCHDOGATTRIBUTEINT32RESPONSE._serialized_end=122545 - _SETWATCHDOGATTRIBUTESTRINGREQUEST._serialized_start=122548 - _SETWATCHDOGATTRIBUTESTRINGREQUEST._serialized_end=122754 - _SETWATCHDOGATTRIBUTESTRINGRESPONSE._serialized_start=122756 - _SETWATCHDOGATTRIBUTESTRINGRESPONSE._serialized_end=122808 - _SETWRITEATTRIBUTEBOOLREQUEST._serialized_start=122811 - _SETWRITEATTRIBUTEBOOLREQUEST._serialized_end=122992 - _SETWRITEATTRIBUTEBOOLRESPONSE._serialized_start=122994 - _SETWRITEATTRIBUTEBOOLRESPONSE._serialized_end=123041 - _SETWRITEATTRIBUTEDOUBLEREQUEST._serialized_start=123044 - _SETWRITEATTRIBUTEDOUBLEREQUEST._serialized_end=123229 - _SETWRITEATTRIBUTEDOUBLERESPONSE._serialized_start=123231 - _SETWRITEATTRIBUTEDOUBLERESPONSE._serialized_end=123280 - _SETWRITEATTRIBUTEINT32REQUEST._serialized_start=123283 - _SETWRITEATTRIBUTEINT32REQUEST._serialized_end=123544 - _SETWRITEATTRIBUTEINT32RESPONSE._serialized_start=123546 - _SETWRITEATTRIBUTEINT32RESPONSE._serialized_end=123594 - _SETWRITEATTRIBUTESTRINGREQUEST._serialized_start=123597 - _SETWRITEATTRIBUTESTRINGREQUEST._serialized_end=123782 - _SETWRITEATTRIBUTESTRINGRESPONSE._serialized_start=123784 - _SETWRITEATTRIBUTESTRINGRESPONSE._serialized_end=123833 - _SETWRITEATTRIBUTEUINT32REQUEST._serialized_start=123836 - _SETWRITEATTRIBUTEUINT32REQUEST._serialized_end=124021 - _SETWRITEATTRIBUTEUINT32RESPONSE._serialized_start=124023 - _SETWRITEATTRIBUTEUINT32RESPONSE._serialized_end=124072 - _SETWRITEATTRIBUTEUINT64REQUEST._serialized_start=124075 - _SETWRITEATTRIBUTEUINT64REQUEST._serialized_end=124260 - _SETWRITEATTRIBUTEUINT64RESPONSE._serialized_start=124262 - _SETWRITEATTRIBUTEUINT64RESPONSE._serialized_end=124311 - _STARTNEWFILEREQUEST._serialized_start=124313 - _STARTNEWFILEREQUEST._serialized_end=124391 - _STARTNEWFILERESPONSE._serialized_start=124393 - _STARTNEWFILERESPONSE._serialized_end=124431 - _STARTTASKREQUEST._serialized_start=124433 - _STARTTASKREQUEST._serialized_end=124489 - _STARTTASKRESPONSE._serialized_start=124491 - _STARTTASKRESPONSE._serialized_end=124526 - _STOPTASKREQUEST._serialized_start=124528 - _STOPTASKREQUEST._serialized_end=124583 - _STOPTASKRESPONSE._serialized_start=124585 - _STOPTASKRESPONSE._serialized_end=124619 - _TASKCONTROLREQUEST._serialized_start=124622 - _TASKCONTROLREQUEST._serialized_end=124768 - _TASKCONTROLRESPONSE._serialized_start=124770 - _TASKCONTROLRESPONSE._serialized_end=124807 - _TRISTATEOUTPUTTERMREQUEST._serialized_start=124809 - _TRISTATEOUTPUTTERMREQUEST._serialized_end=124861 - _TRISTATEOUTPUTTERMRESPONSE._serialized_start=124863 - _TRISTATEOUTPUTTERMRESPONSE._serialized_end=124907 - _UNREGISTERDONEEVENTREQUEST._serialized_start=124909 - _UNREGISTERDONEEVENTREQUEST._serialized_end=124975 - _UNREGISTERDONEEVENTRESPONSE._serialized_start=124977 - _UNREGISTERDONEEVENTRESPONSE._serialized_end=125022 - _UNREGISTEREVERYNSAMPLESEVENTREQUEST._serialized_start=125025 - _UNREGISTEREVERYNSAMPLESEVENTREQUEST._serialized_end=125253 - _UNREGISTEREVERYNSAMPLESEVENTRESPONSE._serialized_start=125255 - _UNREGISTEREVERYNSAMPLESEVENTRESPONSE._serialized_end=125309 - _UNREGISTERSIGNALEVENTREQUEST._serialized_start=125312 - _UNREGISTERSIGNALEVENTREQUEST._serialized_end=125467 - _UNREGISTERSIGNALEVENTRESPONSE._serialized_start=125469 - _UNREGISTERSIGNALEVENTRESPONSE._serialized_end=125516 - _UNRESERVENETWORKDEVICEREQUEST._serialized_start=125518 - _UNRESERVENETWORKDEVICEREQUEST._serialized_end=125570 - _UNRESERVENETWORKDEVICERESPONSE._serialized_start=125572 - _UNRESERVENETWORKDEVICERESPONSE._serialized_end=125620 - _WAITFORNEXTSAMPLECLOCKREQUEST._serialized_start=125622 - _WAITFORNEXTSAMPLECLOCKREQUEST._serialized_end=125708 - _WAITFORNEXTSAMPLECLOCKRESPONSE._serialized_start=125710 - _WAITFORNEXTSAMPLECLOCKRESPONSE._serialized_end=125775 - _BEGINWAITFORNEXTSAMPLECLOCKREQUEST._serialized_start=125777 - _BEGINWAITFORNEXTSAMPLECLOCKREQUEST._serialized_end=125868 - _BEGINWAITFORNEXTSAMPLECLOCKRESPONSE._serialized_start=125870 - _BEGINWAITFORNEXTSAMPLECLOCKRESPONSE._serialized_end=125967 - _MONIKERWAITFORNEXTSAMPLECLOCKRESPONSE._serialized_start=125969 - _MONIKERWAITFORNEXTSAMPLECLOCKRESPONSE._serialized_end=126041 - _WAITFORVALIDTIMESTAMPREQUEST._serialized_start=126044 - _WAITFORVALIDTIMESTAMPREQUEST._serialized_end=126241 - _WAITFORVALIDTIMESTAMPRESPONSE._serialized_start=126243 - _WAITFORVALIDTIMESTAMPRESPONSE._serialized_end=126337 - _WAITUNTILTASKDONEREQUEST._serialized_start=126339 - _WAITUNTILTASKDONEREQUEST._serialized_end=126425 - _WAITUNTILTASKDONERESPONSE._serialized_start=126427 - _WAITUNTILTASKDONERESPONSE._serialized_end=126470 - _WRITEANALOGF64REQUEST._serialized_start=126473 - _WRITEANALOGF64REQUEST._serialized_end=126713 - _WRITEANALOGF64RESPONSE._serialized_start=126715 - _WRITEANALOGF64RESPONSE._serialized_end=126787 - _BEGINWRITEANALOGF64REQUEST._serialized_start=126790 - _BEGINWRITEANALOGF64REQUEST._serialized_end=127014 - _BEGINWRITEANALOGF64RESPONSE._serialized_start=127016 - _BEGINWRITEANALOGF64RESPONSE._serialized_end=127105 - _MONIKERWRITEANALOGF64REQUEST._serialized_start=127107 - _MONIKERWRITEANALOGF64REQUEST._serialized_end=127158 - _MONIKERWRITEANALOGF64RESPONSE._serialized_start=127160 - _MONIKERWRITEANALOGF64RESPONSE._serialized_end=127239 - _WRITEANALOGSCALARF64REQUEST._serialized_start=127241 - _WRITEANALOGSCALARF64REQUEST._serialized_end=127360 - _WRITEANALOGSCALARF64RESPONSE._serialized_start=127362 - _WRITEANALOGSCALARF64RESPONSE._serialized_end=127408 - _BEGINWRITEANALOGSCALARF64REQUEST._serialized_start=127410 - _BEGINWRITEANALOGSCALARF64REQUEST._serialized_end=127519 - _BEGINWRITEANALOGSCALARF64RESPONSE._serialized_start=127521 - _BEGINWRITEANALOGSCALARF64RESPONSE._serialized_end=127616 - _MONIKERWRITEANALOGSCALARF64REQUEST._serialized_start=127618 - _MONIKERWRITEANALOGSCALARF64REQUEST._serialized_end=127669 - _MONIKERWRITEANALOGSCALARF64RESPONSE._serialized_start=127671 - _MONIKERWRITEANALOGSCALARF64RESPONSE._serialized_end=127724 - _WRITEBINARYI16REQUEST._serialized_start=127727 - _WRITEBINARYI16REQUEST._serialized_end=127967 - _WRITEBINARYI16RESPONSE._serialized_start=127969 - _WRITEBINARYI16RESPONSE._serialized_end=128041 - _BEGINWRITEBINARYI16REQUEST._serialized_start=128044 - _BEGINWRITEBINARYI16REQUEST._serialized_end=128268 - _BEGINWRITEBINARYI16RESPONSE._serialized_start=128270 - _BEGINWRITEBINARYI16RESPONSE._serialized_end=128359 - _MONIKERWRITEBINARYI16REQUEST._serialized_start=128361 - _MONIKERWRITEBINARYI16REQUEST._serialized_end=128412 - _MONIKERWRITEBINARYI16RESPONSE._serialized_start=128414 - _MONIKERWRITEBINARYI16RESPONSE._serialized_end=128493 - _WRITEBINARYI32REQUEST._serialized_start=128496 - _WRITEBINARYI32REQUEST._serialized_end=128736 - _WRITEBINARYI32RESPONSE._serialized_start=128738 - _WRITEBINARYI32RESPONSE._serialized_end=128810 - _BEGINWRITEBINARYI32REQUEST._serialized_start=128813 - _BEGINWRITEBINARYI32REQUEST._serialized_end=129037 - _BEGINWRITEBINARYI32RESPONSE._serialized_start=129039 - _BEGINWRITEBINARYI32RESPONSE._serialized_end=129128 - _MONIKERWRITEBINARYI32REQUEST._serialized_start=129130 - _MONIKERWRITEBINARYI32REQUEST._serialized_end=129181 - _MONIKERWRITEBINARYI32RESPONSE._serialized_start=129183 - _MONIKERWRITEBINARYI32RESPONSE._serialized_end=129262 - _WRITEBINARYU16REQUEST._serialized_start=129265 - _WRITEBINARYU16REQUEST._serialized_end=129505 - _WRITEBINARYU16RESPONSE._serialized_start=129507 - _WRITEBINARYU16RESPONSE._serialized_end=129579 - _BEGINWRITEBINARYU16REQUEST._serialized_start=129582 - _BEGINWRITEBINARYU16REQUEST._serialized_end=129806 - _BEGINWRITEBINARYU16RESPONSE._serialized_start=129808 - _BEGINWRITEBINARYU16RESPONSE._serialized_end=129897 - _MONIKERWRITEBINARYU16REQUEST._serialized_start=129899 - _MONIKERWRITEBINARYU16REQUEST._serialized_end=129950 - _MONIKERWRITEBINARYU16RESPONSE._serialized_start=129952 - _MONIKERWRITEBINARYU16RESPONSE._serialized_end=130031 - _WRITEBINARYU32REQUEST._serialized_start=130034 - _WRITEBINARYU32REQUEST._serialized_end=130274 - _WRITEBINARYU32RESPONSE._serialized_start=130276 - _WRITEBINARYU32RESPONSE._serialized_end=130348 - _BEGINWRITEBINARYU32REQUEST._serialized_start=130351 - _BEGINWRITEBINARYU32REQUEST._serialized_end=130575 - _BEGINWRITEBINARYU32RESPONSE._serialized_start=130577 - _BEGINWRITEBINARYU32RESPONSE._serialized_end=130666 - _MONIKERWRITEBINARYU32REQUEST._serialized_start=130668 - _MONIKERWRITEBINARYU32REQUEST._serialized_end=130719 - _MONIKERWRITEBINARYU32RESPONSE._serialized_start=130721 - _MONIKERWRITEBINARYU32RESPONSE._serialized_end=130800 - _WRITECTRFREQREQUEST._serialized_start=130803 - _WRITECTRFREQREQUEST._serialized_end=131059 - _WRITECTRFREQRESPONSE._serialized_start=131061 - _WRITECTRFREQRESPONSE._serialized_end=131135 - _BEGINWRITECTRFREQREQUEST._serialized_start=131138 - _BEGINWRITECTRFREQREQUEST._serialized_end=131360 - _BEGINWRITECTRFREQRESPONSE._serialized_start=131362 - _BEGINWRITECTRFREQRESPONSE._serialized_end=131449 - _MONIKERWRITECTRFREQREQUEST._serialized_start=131451 - _MONIKERWRITECTRFREQREQUEST._serialized_end=131518 - _MONIKERWRITECTRFREQRESPONSE._serialized_start=131520 - _MONIKERWRITECTRFREQRESPONSE._serialized_end=131601 - _WRITECTRFREQSCALARREQUEST._serialized_start=131604 - _WRITECTRFREQSCALARREQUEST._serialized_end=131745 - _WRITECTRFREQSCALARRESPONSE._serialized_start=131747 - _WRITECTRFREQSCALARRESPONSE._serialized_end=131791 - _BEGINWRITECTRFREQSCALARREQUEST._serialized_start=131793 - _BEGINWRITECTRFREQSCALARREQUEST._serialized_end=131900 - _BEGINWRITECTRFREQSCALARRESPONSE._serialized_start=131902 - _BEGINWRITECTRFREQSCALARRESPONSE._serialized_end=131995 - _MONIKERWRITECTRFREQSCALARREQUEST._serialized_start=131997 - _MONIKERWRITECTRFREQSCALARREQUEST._serialized_end=132070 - _MONIKERWRITECTRFREQSCALARRESPONSE._serialized_start=132072 - _MONIKERWRITECTRFREQSCALARRESPONSE._serialized_end=132123 - _WRITECTRTICKSREQUEST._serialized_start=132126 - _WRITECTRTICKSREQUEST._serialized_end=132383 - _WRITECTRTICKSRESPONSE._serialized_start=132385 - _WRITECTRTICKSRESPONSE._serialized_end=132460 - _BEGINWRITECTRTICKSREQUEST._serialized_start=132463 - _BEGINWRITECTRTICKSREQUEST._serialized_end=132686 - _BEGINWRITECTRTICKSRESPONSE._serialized_start=132688 - _BEGINWRITECTRTICKSRESPONSE._serialized_end=132776 - _MONIKERWRITECTRTICKSREQUEST._serialized_start=132778 - _MONIKERWRITECTRTICKSREQUEST._serialized_end=132846 - _MONIKERWRITECTRTICKSRESPONSE._serialized_start=132848 - _MONIKERWRITECTRTICKSRESPONSE._serialized_end=132930 - _WRITECTRTICKSSCALARREQUEST._serialized_start=132933 - _WRITECTRTICKSSCALARREQUEST._serialized_end=133075 - _WRITECTRTICKSSCALARRESPONSE._serialized_start=133077 - _WRITECTRTICKSSCALARRESPONSE._serialized_end=133122 - _BEGINWRITECTRTICKSSCALARREQUEST._serialized_start=133124 - _BEGINWRITECTRTICKSSCALARREQUEST._serialized_end=133232 - _BEGINWRITECTRTICKSSCALARRESPONSE._serialized_start=133234 - _BEGINWRITECTRTICKSSCALARRESPONSE._serialized_end=133328 - _MONIKERWRITECTRTICKSSCALARREQUEST._serialized_start=133330 - _MONIKERWRITECTRTICKSSCALARREQUEST._serialized_end=133404 - _MONIKERWRITECTRTICKSSCALARRESPONSE._serialized_start=133406 - _MONIKERWRITECTRTICKSSCALARRESPONSE._serialized_end=133458 - _WRITECTRTIMEREQUEST._serialized_start=133461 - _WRITECTRTIMEREQUEST._serialized_end=133715 - _WRITECTRTIMERESPONSE._serialized_start=133717 - _WRITECTRTIMERESPONSE._serialized_end=133791 - _BEGINWRITECTRTIMEREQUEST._serialized_start=133794 - _BEGINWRITECTRTIMEREQUEST._serialized_end=134016 - _BEGINWRITECTRTIMERESPONSE._serialized_start=134018 - _BEGINWRITECTRTIMERESPONSE._serialized_end=134105 - _MONIKERWRITECTRTIMEREQUEST._serialized_start=134107 - _MONIKERWRITECTRTIMEREQUEST._serialized_end=134172 - _MONIKERWRITECTRTIMERESPONSE._serialized_start=134174 - _MONIKERWRITECTRTIMERESPONSE._serialized_end=134255 - _WRITECTRTIMESCALARREQUEST._serialized_start=134258 - _WRITECTRTIMESCALARREQUEST._serialized_end=134397 - _WRITECTRTIMESCALARRESPONSE._serialized_start=134399 - _WRITECTRTIMESCALARRESPONSE._serialized_end=134443 - _BEGINWRITECTRTIMESCALARREQUEST._serialized_start=134445 - _BEGINWRITECTRTIMESCALARREQUEST._serialized_end=134552 - _BEGINWRITECTRTIMESCALARRESPONSE._serialized_start=134554 - _BEGINWRITECTRTIMESCALARRESPONSE._serialized_end=134647 - _MONIKERWRITECTRTIMESCALARREQUEST._serialized_start=134649 - _MONIKERWRITECTRTIMESCALARREQUEST._serialized_end=134720 - _MONIKERWRITECTRTIMESCALARRESPONSE._serialized_start=134722 - _MONIKERWRITECTRTIMESCALARRESPONSE._serialized_end=134773 - _WRITEDIGITALLINESREQUEST._serialized_start=134776 - _WRITEDIGITALLINESREQUEST._serialized_end=135019 - _WRITEDIGITALLINESRESPONSE._serialized_start=135021 - _WRITEDIGITALLINESRESPONSE._serialized_end=135096 - _BEGINWRITEDIGITALLINESREQUEST._serialized_start=135099 - _BEGINWRITEDIGITALLINESREQUEST._serialized_end=135326 - _BEGINWRITEDIGITALLINESRESPONSE._serialized_start=135328 - _BEGINWRITEDIGITALLINESRESPONSE._serialized_end=135420 - _MONIKERWRITEDIGITALLINESREQUEST._serialized_start=135422 - _MONIKERWRITEDIGITALLINESREQUEST._serialized_end=135476 - _MONIKERWRITEDIGITALLINESRESPONSE._serialized_start=135478 - _MONIKERWRITEDIGITALLINESRESPONSE._serialized_end=135560 - _WRITEDIGITALSCALARU32REQUEST._serialized_start=135562 - _WRITEDIGITALSCALARU32REQUEST._serialized_end=135682 - _WRITEDIGITALSCALARU32RESPONSE._serialized_start=135684 - _WRITEDIGITALSCALARU32RESPONSE._serialized_end=135731 - _BEGINWRITEDIGITALSCALARU32REQUEST._serialized_start=135733 - _BEGINWRITEDIGITALSCALARU32REQUEST._serialized_end=135843 - _BEGINWRITEDIGITALSCALARU32RESPONSE._serialized_start=135845 - _BEGINWRITEDIGITALSCALARU32RESPONSE._serialized_end=135941 - _MONIKERWRITEDIGITALSCALARU32REQUEST._serialized_start=135943 - _MONIKERWRITEDIGITALSCALARU32REQUEST._serialized_end=135995 - _MONIKERWRITEDIGITALSCALARU32RESPONSE._serialized_start=135997 - _MONIKERWRITEDIGITALSCALARU32RESPONSE._serialized_end=136051 - _WRITEDIGITALU16REQUEST._serialized_start=136054 - _WRITEDIGITALU16REQUEST._serialized_end=136295 - _WRITEDIGITALU16RESPONSE._serialized_start=136297 - _WRITEDIGITALU16RESPONSE._serialized_end=136370 - _BEGINWRITEDIGITALU16REQUEST._serialized_start=136373 - _BEGINWRITEDIGITALU16REQUEST._serialized_end=136598 - _BEGINWRITEDIGITALU16RESPONSE._serialized_start=136600 - _BEGINWRITEDIGITALU16RESPONSE._serialized_end=136690 - _MONIKERWRITEDIGITALU16REQUEST._serialized_start=136692 - _MONIKERWRITEDIGITALU16REQUEST._serialized_end=136744 - _MONIKERWRITEDIGITALU16RESPONSE._serialized_start=136746 - _MONIKERWRITEDIGITALU16RESPONSE._serialized_end=136826 - _WRITEDIGITALU32REQUEST._serialized_start=136829 - _WRITEDIGITALU32REQUEST._serialized_end=137070 - _WRITEDIGITALU32RESPONSE._serialized_start=137072 - _WRITEDIGITALU32RESPONSE._serialized_end=137145 - _BEGINWRITEDIGITALU32REQUEST._serialized_start=137148 - _BEGINWRITEDIGITALU32REQUEST._serialized_end=137373 - _BEGINWRITEDIGITALU32RESPONSE._serialized_start=137375 - _BEGINWRITEDIGITALU32RESPONSE._serialized_end=137465 - _MONIKERWRITEDIGITALU32REQUEST._serialized_start=137467 - _MONIKERWRITEDIGITALU32REQUEST._serialized_end=137519 - _MONIKERWRITEDIGITALU32RESPONSE._serialized_start=137521 - _MONIKERWRITEDIGITALU32RESPONSE._serialized_end=137601 - _WRITEDIGITALU8REQUEST._serialized_start=137604 - _WRITEDIGITALU8REQUEST._serialized_end=137844 - _WRITEDIGITALU8RESPONSE._serialized_start=137846 - _WRITEDIGITALU8RESPONSE._serialized_end=137918 - _BEGINWRITEDIGITALU8REQUEST._serialized_start=137921 - _BEGINWRITEDIGITALU8REQUEST._serialized_end=138145 - _BEGINWRITEDIGITALU8RESPONSE._serialized_start=138147 - _BEGINWRITEDIGITALU8RESPONSE._serialized_end=138236 - _MONIKERWRITEDIGITALU8REQUEST._serialized_start=138238 - _MONIKERWRITEDIGITALU8REQUEST._serialized_end=138289 - _MONIKERWRITEDIGITALU8RESPONSE._serialized_start=138291 - _MONIKERWRITEDIGITALU8RESPONSE._serialized_end=138370 - _WRITEIDPINMEMORYREQUEST._serialized_start=138372 - _WRITEIDPINMEMORYREQUEST._serialized_end=138474 - _WRITEIDPINMEMORYRESPONSE._serialized_start=138476 - _WRITEIDPINMEMORYRESPONSE._serialized_end=138518 - _WRITERAWREQUEST._serialized_start=138521 - _WRITERAWREQUEST._serialized_end=138653 - _WRITERAWRESPONSE._serialized_start=138655 - _WRITERAWRESPONSE._serialized_end=138721 - _BEGINWRITERAWREQUEST._serialized_start=138723 - _BEGINWRITERAWREQUEST._serialized_end=138839 - _BEGINWRITERAWRESPONSE._serialized_start=138841 - _BEGINWRITERAWRESPONSE._serialized_end=138924 - _MONIKERWRITERAWREQUEST._serialized_start=138926 - _MONIKERWRITERAWREQUEST._serialized_end=138971 - _MONIKERWRITERAWRESPONSE._serialized_start=138973 - _MONIKERWRITERAWRESPONSE._serialized_end=139046 - _WRITETOTEDSFROMARRAYREQUEST._serialized_start=139049 - _WRITETOTEDSFROMARRAYREQUEST._serialized_end=139252 - _WRITETOTEDSFROMARRAYRESPONSE._serialized_start=139254 - _WRITETOTEDSFROMARRAYRESPONSE._serialized_end=139300 - _WRITETOTEDSFROMFILEREQUEST._serialized_start=139303 - _WRITETOTEDSFROMFILEREQUEST._serialized_end=139504 - _WRITETOTEDSFROMFILERESPONSE._serialized_start=139506 - _WRITETOTEDSFROMFILERESPONSE._serialized_end=139551 - _NIDAQMX._serialized_start=312061 - _NIDAQMX._serialized_end=364134 + _BUFFERUINT32ATTRIBUTE._serialized_start=140864 + _BUFFERUINT32ATTRIBUTE._serialized_end=141094 + _BUFFERRESETATTRIBUTE._serialized_start=141097 + _BUFFERRESETATTRIBUTE._serialized_end=141299 + _CALIBRATIONINFOBOOLATTRIBUTE._serialized_start=141302 + _CALIBRATIONINFOBOOLATTRIBUTE._serialized_end=141431 + _CALIBRATIONINFOSTRINGATTRIBUTE._serialized_start=141434 + _CALIBRATIONINFOSTRINGATTRIBUTE._serialized_end=141570 + _CALIBRATIONINFODOUBLEATTRIBUTE._serialized_start=141573 + _CALIBRATIONINFODOUBLEATTRIBUTE._serialized_end=141801 + _CALIBRATIONINFOUINT32ATTRIBUTE._serialized_start=141804 + _CALIBRATIONINFOUINT32ATTRIBUTE._serialized_end=142142 + _CHANNELINT32ATTRIBUTE._serialized_start=142145 + _CHANNELINT32ATTRIBUTE._serialized_end=151817 + _CHANNELDOUBLEATTRIBUTE._serialized_start=151820 + _CHANNELDOUBLEATTRIBUTE._serialized_end=161096 + _CHANNELRESETATTRIBUTE._serialized_start=161100 + _CHANNELRESETATTRIBUTE._serialized_end=192671 + _CHANNELBOOLATTRIBUTE._serialized_start=192674 + _CHANNELBOOLATTRIBUTE._serialized_end=197692 + _CHANNELSTRINGATTRIBUTE._serialized_start=197695 + _CHANNELSTRINGATTRIBUTE._serialized_end=200879 + _CHANNELUINT32ATTRIBUTE._serialized_start=200882 + _CHANNELUINT32ATTRIBUTE._serialized_end=202998 + _CHANNELDOUBLEARRAYATTRIBUTE._serialized_start=203001 + _CHANNELDOUBLEARRAYATTRIBUTE._serialized_end=203858 + _DEVICESTRINGATTRIBUTE._serialized_start=203861 + _DEVICESTRINGATTRIBUTE._serialized_end=204823 + _DEVICEUINT32ATTRIBUTE._serialized_start=204826 + _DEVICEUINT32ATTRIBUTE._serialized_end=205846 + _DEVICEBOOLATTRIBUTE._serialized_start=205849 + _DEVICEBOOLATTRIBUTE._serialized_end=206433 + _DEVICEINT32ATTRIBUTE._serialized_start=206436 + _DEVICEINT32ATTRIBUTE._serialized_end=207024 + _DEVICEDOUBLEATTRIBUTE._serialized_start=207027 + _DEVICEDOUBLEATTRIBUTE._serialized_end=207686 + _DEVICEDOUBLEARRAYATTRIBUTE._serialized_start=207689 + _DEVICEDOUBLEARRAYATTRIBUTE._serialized_end=208561 + _DEVICEUINT32ARRAYATTRIBUTE._serialized_start=208564 + _DEVICEUINT32ARRAYATTRIBUTE._serialized_end=208817 + _DEVICEINT32ARRAYATTRIBUTE._serialized_start=208820 + _DEVICEINT32ARRAYATTRIBUTE._serialized_end=209403 + _EXPORTSIGNALDOUBLEATTRIBUTE._serialized_start=209406 + _EXPORTSIGNALDOUBLEATTRIBUTE._serialized_end=210331 + _EXPORTSIGNALSTRINGATTRIBUTE._serialized_start=210334 + _EXPORTSIGNALSTRINGATTRIBUTE._serialized_end=211544 + _EXPORTSIGNALRESETATTRIBUTE._serialized_start=211547 + _EXPORTSIGNALRESETATTRIBUTE._serialized_end=215590 + _EXPORTSIGNALINT32ATTRIBUTE._serialized_start=215593 + _EXPORTSIGNALINT32ATTRIBUTE._serialized_end=217891 + _EXPORTSIGNALBOOLATTRIBUTE._serialized_start=217894 + _EXPORTSIGNALBOOLATTRIBUTE._serialized_end=218086 + _EXPORTSIGNALUINT32ATTRIBUTE._serialized_start=218089 + _EXPORTSIGNALUINT32ATTRIBUTE._serialized_end=218306 + _PERSISTEDCHANNELSTRINGATTRIBUTE._serialized_start=218309 + _PERSISTEDCHANNELSTRINGATTRIBUTE._serialized_end=218478 + _PERSISTEDCHANNELBOOLATTRIBUTE._serialized_start=218481 + _PERSISTEDCHANNELBOOLATTRIBUTE._serialized_end=218680 + _PERSISTEDSCALESTRINGATTRIBUTE._serialized_start=218683 + _PERSISTEDSCALESTRINGATTRIBUTE._serialized_end=218845 + _PERSISTEDSCALEBOOLATTRIBUTE._serialized_start=218848 + _PERSISTEDSCALEBOOLATTRIBUTE._serialized_end=219039 + _PERSISTEDTASKSTRINGATTRIBUTE._serialized_start=219042 + _PERSISTEDTASKSTRINGATTRIBUTE._serialized_end=219199 + _PERSISTEDTASKBOOLATTRIBUTE._serialized_start=219202 + _PERSISTEDTASKBOOLATTRIBUTE._serialized_end=219389 + _PHYSICALCHANNELUINT32ATTRIBUTE._serialized_start=219392 + _PHYSICALCHANNELUINT32ATTRIBUTE._serialized_end=219838 + _PHYSICALCHANNELSTRINGATTRIBUTE._serialized_start=219841 + _PHYSICALCHANNELSTRINGATTRIBUTE._serialized_end=220049 + _PHYSICALCHANNELBYTESATTRIBUTE._serialized_start=220052 + _PHYSICALCHANNELBYTESATTRIBUTE._serialized_end=220194 + _PHYSICALCHANNELUINT32ARRAYATTRIBUTE._serialized_start=220197 + _PHYSICALCHANNELUINT32ARRAYATTRIBUTE._serialized_end=220355 + _PHYSICALCHANNELINT32ATTRIBUTE._serialized_start=220358 + _PHYSICALCHANNELINT32ATTRIBUTE._serialized_end=220692 + _PHYSICALCHANNELBOOLATTRIBUTE._serialized_start=220695 + _PHYSICALCHANNELBOOLATTRIBUTE._serialized_end=221465 + _PHYSICALCHANNELRESETATTRIBUTE._serialized_start=221468 + _PHYSICALCHANNELRESETATTRIBUTE._serialized_end=221992 + _PHYSICALCHANNELDOUBLEATTRIBUTE._serialized_start=221995 + _PHYSICALCHANNELDOUBLEATTRIBUTE._serialized_end=222393 + _PHYSICALCHANNELINT32ARRAYATTRIBUTE._serialized_start=222396 + _PHYSICALCHANNELINT32ARRAYATTRIBUTE._serialized_end=223111 + _PHYSICALCHANNELDOUBLEARRAYATTRIBUTE._serialized_start=223114 + _PHYSICALCHANNELDOUBLEARRAYATTRIBUTE._serialized_end=223347 + _READINT32ATTRIBUTE._serialized_start=223350 + _READINT32ATTRIBUTE._serialized_end=223609 + _READRESETATTRIBUTE._serialized_start=223612 + _READRESETATTRIBUTE._serialized_end=224371 + _READBOOLATTRIBUTE._serialized_start=224374 + _READBOOLATTRIBUTE._serialized_end=225411 + _READUINT64ATTRIBUTE._serialized_start=225414 + _READUINT64ATTRIBUTE._serialized_end=225656 + _READUINT32ATTRIBUTE._serialized_start=225659 + _READUINT32ATTRIBUTE._serialized_end=225922 + _READSTRINGATTRIBUTE._serialized_start=225925 + _READSTRINGATTRIBUTE._serialized_end=226848 + _READDOUBLEATTRIBUTE._serialized_start=226850 + _READDOUBLEATTRIBUTE._serialized_end=226942 + _REALTIMEUINT32ATTRIBUTE._serialized_start=226944 + _REALTIMEUINT32ATTRIBUTE._serialized_end=227057 + _REALTIMERESETATTRIBUTE._serialized_start=227060 + _REALTIMERESETATTRIBUTE._serialized_end=227402 + _REALTIMEBOOLATTRIBUTE._serialized_start=227405 + _REALTIMEBOOLATTRIBUTE._serialized_end=227567 + _REALTIMEINT32ATTRIBUTE._serialized_start=227570 + _REALTIMEINT32ATTRIBUTE._serialized_end=227739 + _SCALESTRINGATTRIBUTE._serialized_start=227741 + _SCALESTRINGATTRIBUTE._serialized_end=227866 + _SCALEDOUBLEATTRIBUTE._serialized_start=227869 + _SCALEDOUBLEATTRIBUTE._serialized_end=228157 + _SCALEDOUBLEARRAYATTRIBUTE._serialized_start=228160 + _SCALEDOUBLEARRAYATTRIBUTE._serialized_end=228399 + _SCALEINT32ATTRIBUTE._serialized_start=228401 + _SCALEINT32ATTRIBUTE._serialized_end=228527 + _SYSTEMSTRINGATTRIBUTE._serialized_start=228530 + _SYSTEMSTRINGATTRIBUTE._serialized_end=228722 + _SYSTEMUINT32ATTRIBUTE._serialized_start=228725 + _SYSTEMUINT32ATTRIBUTE._serialized_end=228919 + _TASKSTRINGATTRIBUTE._serialized_start=228922 + _TASKSTRINGATTRIBUTE._serialized_end=229067 + _TASKBOOLATTRIBUTE._serialized_start=229069 + _TASKBOOLATTRIBUTE._serialized_end=229155 + _TASKUINT32ATTRIBUTE._serialized_start=229157 + _TASKUINT32ATTRIBUTE._serialized_end=229281 + _TIMINGINT32ATTRIBUTE._serialized_start=229284 + _TIMINGINT32ATTRIBUTE._serialized_end=230100 + _TIMINGRESETATTRIBUTE._serialized_start=230103 + _TIMINGRESETATTRIBUTE._serialized_end=233216 + _TIMINGDOUBLEATTRIBUTE._serialized_start=233219 + _TIMINGDOUBLEATTRIBUTE._serialized_end=234112 + _TIMINGUINT32ATTRIBUTE._serialized_start=234115 + _TIMINGUINT32ATTRIBUTE._serialized_end=234412 + _TIMINGSTRINGATTRIBUTE._serialized_start=234415 + _TIMINGSTRINGATTRIBUTE._serialized_end=235075 + _TIMINGUINT64ATTRIBUTE._serialized_start=235077 + _TIMINGUINT64ATTRIBUTE._serialized_end=235189 + _TIMINGBOOLATTRIBUTE._serialized_start=235192 + _TIMINGBOOLATTRIBUTE._serialized_end=235706 + _TIMINGTIMESTAMPATTRIBUTE._serialized_start=235709 + _TIMINGTIMESTAMPATTRIBUTE._serialized_end=235914 + _TRIGGERINT32ATTRIBUTE._serialized_start=235917 + _TRIGGERINT32ATTRIBUTE._serialized_end=237637 + _TRIGGERRESETATTRIBUTE._serialized_start=237640 + _TRIGGERRESETATTRIBUTE._serialized_end=246390 + _TRIGGERSTRINGATTRIBUTE._serialized_start=246393 + _TRIGGERSTRINGATTRIBUTE._serialized_end=248318 + _TRIGGERDOUBLEATTRIBUTE._serialized_start=248321 + _TRIGGERDOUBLEATTRIBUTE._serialized_end=250582 + _TRIGGERUINT32ATTRIBUTE._serialized_start=250585 + _TRIGGERUINT32ATTRIBUTE._serialized_end=250816 + _TRIGGERBOOLATTRIBUTE._serialized_start=250819 + _TRIGGERBOOLATTRIBUTE._serialized_end=252489 + _TRIGGERTIMESTAMPATTRIBUTE._serialized_start=252492 + _TRIGGERTIMESTAMPATTRIBUTE._serialized_end=252807 + _TRIGGERINT32ARRAYATTRIBUTE._serialized_start=252810 + _TRIGGERINT32ARRAYATTRIBUTE._serialized_end=253119 + _TRIGGERDOUBLEARRAYATTRIBUTE._serialized_start=253122 + _TRIGGERDOUBLEARRAYATTRIBUTE._serialized_end=253421 + _WATCHDOGINT32ATTRIBUTE._serialized_start=253424 + _WATCHDOGINT32ATTRIBUTE._serialized_end=253710 + _WATCHDOGRESETATTRIBUTE._serialized_start=253713 + _WATCHDOGRESETATTRIBUTE._serialized_end=254246 + _WATCHDOGSTRINGATTRIBUTE._serialized_start=254248 + _WATCHDOGSTRINGATTRIBUTE._serialized_end=254374 + _WATCHDOGBOOLATTRIBUTE._serialized_start=254377 + _WATCHDOGBOOLATTRIBUTE._serialized_end=254540 + _WATCHDOGDOUBLEATTRIBUTE._serialized_start=254543 + _WATCHDOGDOUBLEATTRIBUTE._serialized_end=254684 + _WRITEINT32ATTRIBUTE._serialized_start=254687 + _WRITEINT32ATTRIBUTE._serialized_end=254875 + _WRITERESETATTRIBUTE._serialized_start=254878 + _WRITERESETATTRIBUTE._serialized_end=255176 + _WRITEUINT64ATTRIBUTE._serialized_start=255179 + _WRITEUINT64ATTRIBUTE._serialized_end=255330 + _WRITEUINT32ATTRIBUTE._serialized_start=255333 + _WRITEUINT32ATTRIBUTE._serialized_end=255549 + _WRITEDOUBLEATTRIBUTE._serialized_start=255551 + _WRITEDOUBLEATTRIBUTE._serialized_end=255646 + _WRITEBOOLATTRIBUTE._serialized_start=255649 + _WRITEBOOLATTRIBUTE._serialized_end=256159 + _WRITESTRINGATTRIBUTE._serialized_start=256162 + _WRITESTRINGATTRIBUTE._serialized_end=256595 + _ACEXCITWIREMODE._serialized_start=256598 + _ACEXCITWIREMODE._serialized_end=256744 + _ACCELCHARGESENSITIVITYUNITS._serialized_start=256747 + _ACCELCHARGESENSITIVITYUNITS._serialized_end=257043 + _ACCELSENSITIVITYUNITS1._serialized_start=257046 + _ACCELSENSITIVITYUNITS1._serialized_end=257200 + _ACCELUNITS2._serialized_start=257203 + _ACCELUNITS2._serialized_end=257405 + _ACQUISITIONTYPE._serialized_start=257408 + _ACQUISITIONTYPE._serialized_end=257574 + _ANGLEUNITS1._serialized_start=257577 + _ANGLEUNITS1._serialized_end=257711 + _ANGLEUNITS2._serialized_start=257714 + _ANGLEUNITS2._serialized_end=257873 + _ANGULARVELOCITYUNITS._serialized_start=257876 + _ANGULARVELOCITYUNITS._serialized_end=258114 + _BRIDGECONFIGURATION1._serialized_start=258117 + _BRIDGECONFIGURATION1._serialized_end=258339 + _BRIDGEELECTRICALUNITS._serialized_start=258342 + _BRIDGEELECTRICALUNITS._serialized_end=258498 + _BRIDGEPHYSICALUNITS._serialized_start=258501 + _BRIDGEPHYSICALUNITS._serialized_end=258956 + _BRIDGEUNITS._serialized_start=258959 + _BRIDGEUNITS._serialized_end=259138 + _CJCSOURCE1._serialized_start=259140 + _CJCSOURCE1._serialized_end=259259 + _CHARGEUNITS._serialized_start=259262 + _CHARGEUNITS._serialized_end=259403 + _COUNTDIRECTION1._serialized_start=259406 + _COUNTDIRECTION1._serialized_end=259561 + _COUNTERFREQUENCYMETHOD._serialized_start=259564 + _COUNTERFREQUENCYMETHOD._serialized_end=259809 + _CURRENTSHUNTRESISTORLOCATIONWITHDEFAULT._serialized_start=259812 + _CURRENTSHUNTRESISTORLOCATIONWITHDEFAULT._serialized_end=260102 + _CURRENTUNITS2._serialized_start=260104 + _CURRENTUNITS2._serialized_end=260216 + _DIGITALLINESTATE._serialized_start=260219 + _DIGITALLINESTATE._serialized_end=260401 + _DIGITALPATTERNCONDITION1._serialized_start=260404 + _DIGITALPATTERNCONDITION1._serialized_end=260579 + _DIGITALWIDTHUNITS3._serialized_start=260581 + _DIGITALWIDTHUNITS3._serialized_end=260674 + _EDDYCURRENTPROXPROBESENSITIVITYUNITS._serialized_start=260677 + _EDDYCURRENTPROXPROBESENSITIVITYUNITS._serialized_end=261107 + _EDGE1._serialized_start=261109 + _EDGE1._serialized_end=261178 + _ENCODERTYPE2._serialized_start=261181 + _ENCODERTYPE2._serialized_end=261334 + _ENCODERZINDEXPHASE1._serialized_start=261337 + _ENCODERZINDEXPHASE1._serialized_end=261566 + _EVERYNSAMPLESEVENTTYPE._serialized_start=261569 + _EVERYNSAMPLESEVENTTYPE._serialized_end=261746 + _EXCITATIONSOURCE._serialized_start=261749 + _EXCITATIONSOURCE._serialized_end=261897 + _FORCEIEPESENSORSENSITIVITYUNITS._serialized_start=261900 + _FORCEIEPESENSORSENSITIVITYUNITS._serialized_end=262107 + _FORCEIEPEUNITS._serialized_start=262110 + _FORCEIEPEUNITS._serialized_end=262262 + _FORCEUNITS._serialized_start=262265 + _FORCEUNITS._serialized_end=262426 + _FREQUENCYUNITS._serialized_start=262428 + _FREQUENCYUNITS._serialized_end=262542 + _FREQUENCYUNITS2._serialized_start=262544 + _FREQUENCYUNITS2._serialized_end=262621 + _FREQUENCYUNITS3._serialized_start=262624 + _FREQUENCYUNITS3._serialized_end=262771 + _FUNCGENTYPE._serialized_start=262774 + _FUNCGENTYPE._serialized_end=262928 + _GPSSIGNALTYPE1._serialized_start=262931 + _GPSSIGNALTYPE1._serialized_end=263065 + _GROUPBY._serialized_start=263067 + _GROUPBY._serialized_end=263142 + _INPUTTERMCFGWITHDEFAULT._serialized_start=263145 + _INPUTTERMCFGWITHDEFAULT._serialized_end=263431 + _INVERTPOLARITY._serialized_start=263433 + _INVERTPOLARITY._serialized_end=263530 + _LVDTSENSITIVITYUNITS1._serialized_start=263533 + _LVDTSENSITIVITYUNITS1._serialized_end=263721 + _LENGTHUNITS2._serialized_start=263724 + _LENGTHUNITS2._serialized_end=263861 + _LENGTHUNITS3._serialized_start=263864 + _LENGTHUNITS3._serialized_end=264027 + _LEVEL1._serialized_start=264029 + _LEVEL1._serialized_end=264096 + _LINEGROUPING._serialized_start=264098 + _LINEGROUPING._serialized_end=264183 + _LOGGINGMODE._serialized_start=264185 + _LOGGINGMODE._serialized_end=264306 + _LOGGINGOPERATION._serialized_start=264309 + _LOGGINGOPERATION._serialized_end=264503 + _LOGICFAMILY._serialized_start=264506 + _LOGICFAMILY._serialized_end=264662 + _POLARITY2._serialized_start=264664 + _POLARITY2._serialized_end=264757 + _POWERUPCHANNELTYPE._serialized_start=264760 + _POWERUPCHANNELTYPE._serialized_end=264916 + _POWERUPSTATES._serialized_start=264919 + _POWERUPSTATES._serialized_end=265051 + _PRESSUREUNITS._serialized_start=265054 + _PRESSUREUNITS._serialized_end=265238 + _RTDTYPE1._serialized_start=265241 + _RTDTYPE1._serialized_end=265445 + _RVDTSENSITIVITYUNITS1._serialized_start=265448 + _RVDTSENSITIVITYUNITS1._serialized_end=265628 + _RESISTANCECONFIGURATION._serialized_start=265631 + _RESISTANCECONFIGURATION._serialized_end=265809 + _RESISTANCEUNITS2._serialized_start=265811 + _RESISTANCEUNITS2._serialized_end=265935 + _RESISTORSTATE._serialized_start=265937 + _RESISTORSTATE._serialized_end=266044 + _SAVEOPTIONS._serialized_start=266047 + _SAVEOPTIONS._serialized_end=266207 + _SHUNTCALSELECT._serialized_start=266210 + _SHUNTCALSELECT._serialized_end=266341 + _SHUNTCALSOURCE._serialized_start=266344 + _SHUNTCALSOURCE._serialized_end=266502 + _SHUNTELEMENTLOCATION._serialized_start=266505 + _SHUNTELEMENTLOCATION._serialized_end=266729 + _SIGNAL._serialized_start=266732 + _SIGNAL._serialized_end=267135 + _SIGNAL2._serialized_start=267138 + _SIGNAL2._serialized_end=267307 + _SLOPE1._serialized_start=267309 + _SLOPE1._serialized_end=267394 + _SOUNDPRESSUREUNITS1._serialized_start=267397 + _SOUNDPRESSUREUNITS1._serialized_end=267539 + _STRAINGAGEBRIDGETYPE1._serialized_start=267542 + _STRAINGAGEBRIDGETYPE1._serialized_end=267933 + _STRAINGAGEROSETTEMEASUREMENTTYPE._serialized_start=267936 + _STRAINGAGEROSETTEMEASUREMENTTYPE._serialized_end=268533 + _STRAINGAGEROSETTETYPE._serialized_start=268536 + _STRAINGAGEROSETTETYPE._serialized_end=268740 + _STRAINUNITS1._serialized_start=268742 + _STRAINUNITS1._serialized_end=268852 + _TEDSUNITS._serialized_start=268854 + _TEDSUNITS._serialized_end=268955 + _TASKCONTROLACTION._serialized_start=268958 + _TASKCONTROLACTION._serialized_end=269236 + _TEMPERATUREUNITS._serialized_start=269239 + _TEMPERATUREUNITS._serialized_end=269414 + _THERMOCOUPLETYPE1._serialized_start=269417 + _THERMOCOUPLETYPE1._serialized_end=269752 + _TIMEUNITS._serialized_start=269754 + _TIMEUNITS._serialized_end=269853 + _TIMEUNITS3._serialized_start=269855 + _TIMEUNITS3._serialized_end=269982 + _TIMESCALE2._serialized_start=269984 + _TIMESCALE2._serialized_end=270083 + _TIMESTAMPEVENT._serialized_start=270086 + _TIMESTAMPEVENT._serialized_end=270296 + _TORQUEUNITS._serialized_start=270299 + _TORQUEUNITS._serialized_end=270505 + _UNITSPRESCALED._serialized_start=270508 + _UNITSPRESCALED._serialized_end=271840 + _VELOCITYIEPESENSORSENSITIVITYUNITS._serialized_start=271843 + _VELOCITYIEPESENSORSENSITIVITYUNITS._serialized_end=272094 + _VELOCITYUNITS._serialized_start=272097 + _VELOCITYUNITS._serialized_end=272261 + _VOLTAGEUNITS2._serialized_start=272263 + _VOLTAGEUNITS2._serialized_end=272376 + _WATCHDOGAOOUTPUTTYPE._serialized_start=272379 + _WATCHDOGAOOUTPUTTYPE._serialized_end=272558 + _WATCHDOGCOEXPIRSTATE._serialized_start=272561 + _WATCHDOGCOEXPIRSTATE._serialized_end=272733 + _WATCHDOGCONTROLACTION._serialized_start=272735 + _WATCHDOGCONTROLACTION._serialized_end=272845 + _WINDOWTRIGGERCONDITION1._serialized_start=272848 + _WINDOWTRIGGERCONDITION1._serialized_end=273005 + _WRITEBASICTEDSOPTIONS._serialized_start=273008 + _WRITEBASICTEDSOPTIONS._serialized_end=273209 + _WAVEFORMATTRIBUTEMODE._serialized_start=273212 + _WAVEFORMATTRIBUTEMODE._serialized_end=273354 + _CHANNELINT32ATTRIBUTEVALUES._serialized_start=273358 + _CHANNELINT32ATTRIBUTEVALUES._serialized_end=293007 + _DEVICEINT32ATTRIBUTEVALUES._serialized_start=293010 + _DEVICEINT32ATTRIBUTEVALUES._serialized_end=299467 + _EXPORTSIGNALINT32ATTRIBUTEVALUES._serialized_start=299470 + _EXPORTSIGNALINT32ATTRIBUTEVALUES._serialized_end=300561 + _PHYSICALCHANNELINT32ATTRIBUTEVALUES._serialized_start=300564 + _PHYSICALCHANNELINT32ATTRIBUTEVALUES._serialized_end=305145 + _READINT32ATTRIBUTEVALUES._serialized_start=305148 + _READINT32ATTRIBUTEVALUES._serialized_end=306003 + _REALTIMEINT32ATTRIBUTEVALUES._serialized_start=306006 + _REALTIMEINT32ATTRIBUTEVALUES._serialized_end=306248 + _SCALEINT32ATTRIBUTEVALUES._serialized_start=306251 + _SCALEINT32ATTRIBUTEVALUES._serialized_end=308196 + _TIMINGINT32ATTRIBUTEVALUES._serialized_start=308199 + _TIMINGINT32ATTRIBUTEVALUES._serialized_end=310076 + _TRIGGERINT32ATTRIBUTEVALUES._serialized_start=310079 + _TRIGGERINT32ATTRIBUTEVALUES._serialized_end=312379 + _WATCHDOGINT32ATTRIBUTEVALUES._serialized_start=312382 + _WATCHDOGINT32ATTRIBUTEVALUES._serialized_end=313144 + _WRITEINT32ATTRIBUTEVALUES._serialized_start=313147 + _WRITEINT32ATTRIBUTEVALUES._serialized_end=313512 + _ANALOGPOWERUPCHANNELSANDSTATE._serialized_start=133 + _ANALOGPOWERUPCHANNELSANDSTATE._serialized_end=258 + _WATCHDOGEXPCHANNELSANDSTATE._serialized_start=260 + _WATCHDOGEXPCHANNELSANDSTATE._serialized_end=355 + _DIGITALPOWERUPTYPEANDCHANNEL._serialized_start=357 + _DIGITALPOWERUPTYPEANDCHANNEL._serialized_end=453 + _DIGITALPOWERUPCHANNELSANDSTATE._serialized_start=455 + _DIGITALPOWERUPCHANNELSANDSTATE._serialized_end=554 + _DIGITALPULLUPPULLDOWNCHANNELSANDSTATE._serialized_start=556 + _DIGITALPULLUPPULLDOWNCHANNELSANDSTATE._serialized_end=662 + _ANALOGPOWERUPCHANNELANDTYPE._serialized_start=664 + _ANALOGPOWERUPCHANNELANDTYPE._serialized_end=771 + _ADDCDAQSYNCCONNECTIONREQUEST._serialized_start=773 + _ADDCDAQSYNCCONNECTIONREQUEST._serialized_end=822 + _ADDCDAQSYNCCONNECTIONRESPONSE._serialized_start=824 + _ADDCDAQSYNCCONNECTIONRESPONSE._serialized_end=871 + _ADDGLOBALCHANSTOTASKREQUEST._serialized_start=873 + _ADDGLOBALCHANSTOTASKREQUEST._serialized_end=963 + _ADDGLOBALCHANSTOTASKRESPONSE._serialized_start=965 + _ADDGLOBALCHANSTOTASKRESPONSE._serialized_end=1011 + _ADDNETWORKDEVICEREQUEST._serialized_start=1013 + _ADDNETWORKDEVICEREQUEST._serialized_end=1125 + _ADDNETWORKDEVICERESPONSE._serialized_start=1127 + _ADDNETWORKDEVICERESPONSE._serialized_end=1194 + _ARECONFIGUREDCDAQSYNCPORTSDISCONNECTEDREQUEST._serialized_start=1196 + _ARECONFIGUREDCDAQSYNCPORTSDISCONNECTEDREQUEST._serialized_end=1291 + _ARECONFIGUREDCDAQSYNCPORTSDISCONNECTEDRESPONSE._serialized_start=1293 + _ARECONFIGUREDCDAQSYNCPORTSDISCONNECTEDRESPONSE._serialized_end=1391 + _AUTOCONFIGURECDAQSYNCCONNECTIONSREQUEST._serialized_start=1393 + _AUTOCONFIGURECDAQSYNCCONNECTIONSREQUEST._serialized_end=1482 + _AUTOCONFIGURECDAQSYNCCONNECTIONSRESPONSE._serialized_start=1484 + _AUTOCONFIGURECDAQSYNCCONNECTIONSRESPONSE._serialized_end=1542 + _CALCULATEREVERSEPOLYCOEFFREQUEST._serialized_start=1545 + _CALCULATEREVERSEPOLYCOEFFREQUEST._serialized_end=1700 + _CALCULATEREVERSEPOLYCOEFFRESPONSE._serialized_start=1702 + _CALCULATEREVERSEPOLYCOEFFRESPONSE._serialized_end=1777 + _CFGANLGEDGEREFTRIGREQUEST._serialized_start=1780 + _CFGANLGEDGEREFTRIGREQUEST._serialized_end=2018 + _CFGANLGEDGEREFTRIGRESPONSE._serialized_start=2020 + _CFGANLGEDGEREFTRIGRESPONSE._serialized_end=2064 + _CFGANLGEDGESTARTTRIGREQUEST._serialized_start=2067 + _CFGANLGEDGESTARTTRIGREQUEST._serialized_end=2279 + _CFGANLGEDGESTARTTRIGRESPONSE._serialized_start=2281 + _CFGANLGEDGESTARTTRIGRESPONSE._serialized_end=2327 + _CFGANLGMULTIEDGEREFTRIGREQUEST._serialized_start=2330 + _CFGANLGMULTIEDGEREFTRIGREQUEST._serialized_end=2533 + _CFGANLGMULTIEDGEREFTRIGRESPONSE._serialized_start=2535 + _CFGANLGMULTIEDGEREFTRIGRESPONSE._serialized_end=2584 + _CFGANLGMULTIEDGESTARTTRIGREQUEST._serialized_start=2587 + _CFGANLGMULTIEDGESTARTTRIGREQUEST._serialized_end=2764 + _CFGANLGMULTIEDGESTARTTRIGRESPONSE._serialized_start=2766 + _CFGANLGMULTIEDGESTARTTRIGRESPONSE._serialized_end=2817 + _CFGANLGWINDOWREFTRIGREQUEST._serialized_start=2820 + _CFGANLGWINDOWREFTRIGREQUEST._serialized_end=3094 + _CFGANLGWINDOWREFTRIGRESPONSE._serialized_start=3096 + _CFGANLGWINDOWREFTRIGRESPONSE._serialized_end=3142 + _CFGANLGWINDOWSTARTTRIGREQUEST._serialized_start=3145 + _CFGANLGWINDOWSTARTTRIGREQUEST._serialized_end=3393 + _CFGANLGWINDOWSTARTTRIGRESPONSE._serialized_start=3395 + _CFGANLGWINDOWSTARTTRIGRESPONSE._serialized_end=3443 + _CFGBURSTHANDSHAKINGTIMINGEXPORTCLOCKREQUEST._serialized_start=3446 + _CFGBURSTHANDSHAKINGTIMINGEXPORTCLOCKREQUEST._serialized_end=4069 + _CFGBURSTHANDSHAKINGTIMINGEXPORTCLOCKRESPONSE._serialized_start=4071 + _CFGBURSTHANDSHAKINGTIMINGEXPORTCLOCKRESPONSE._serialized_end=4133 + _CFGBURSTHANDSHAKINGTIMINGIMPORTCLOCKREQUEST._serialized_start=4136 + _CFGBURSTHANDSHAKINGTIMINGIMPORTCLOCKREQUEST._serialized_end=4740 + _CFGBURSTHANDSHAKINGTIMINGIMPORTCLOCKRESPONSE._serialized_start=4742 + _CFGBURSTHANDSHAKINGTIMINGIMPORTCLOCKRESPONSE._serialized_end=4804 + _CFGCHANGEDETECTIONTIMINGREQUEST._serialized_start=4807 + _CFGCHANGEDETECTIONTIMINGREQUEST._serialized_end=5056 + _CFGCHANGEDETECTIONTIMINGRESPONSE._serialized_start=5058 + _CFGCHANGEDETECTIONTIMINGRESPONSE._serialized_end=5108 + _CFGDIGEDGEREFTRIGREQUEST._serialized_start=5111 + _CFGDIGEDGEREFTRIGREQUEST._serialized_end=5321 + _CFGDIGEDGEREFTRIGRESPONSE._serialized_start=5323 + _CFGDIGEDGEREFTRIGRESPONSE._serialized_end=5366 + _CFGDIGEDGESTARTTRIGREQUEST._serialized_start=5369 + _CFGDIGEDGESTARTTRIGREQUEST._serialized_end=5553 + _CFGDIGEDGESTARTTRIGRESPONSE._serialized_start=5555 + _CFGDIGEDGESTARTTRIGRESPONSE._serialized_end=5600 + _CFGDIGPATTERNREFTRIGREQUEST._serialized_start=5603 + _CFGDIGPATTERNREFTRIGREQUEST._serialized_end=5860 + _CFGDIGPATTERNREFTRIGRESPONSE._serialized_start=5862 + _CFGDIGPATTERNREFTRIGRESPONSE._serialized_end=5908 + _CFGDIGPATTERNSTARTTRIGREQUEST._serialized_start=5911 + _CFGDIGPATTERNSTARTTRIGREQUEST._serialized_end=6142 + _CFGDIGPATTERNSTARTTRIGRESPONSE._serialized_start=6144 + _CFGDIGPATTERNSTARTTRIGRESPONSE._serialized_end=6192 + _CFGHANDSHAKINGTIMINGREQUEST._serialized_start=6195 + _CFGHANDSHAKINGTIMINGREQUEST._serialized_end=6387 + _CFGHANDSHAKINGTIMINGRESPONSE._serialized_start=6389 + _CFGHANDSHAKINGTIMINGRESPONSE._serialized_end=6435 + _CFGIMPLICITTIMINGREQUEST._serialized_start=6438 + _CFGIMPLICITTIMINGREQUEST._serialized_end=6627 + _CFGIMPLICITTIMINGRESPONSE._serialized_start=6629 + _CFGIMPLICITTIMINGRESPONSE._serialized_end=6672 + _CFGINPUTBUFFERREQUEST._serialized_start=6674 + _CFGINPUTBUFFERREQUEST._serialized_end=6763 + _CFGINPUTBUFFERRESPONSE._serialized_start=6765 + _CFGINPUTBUFFERRESPONSE._serialized_end=6805 + _CFGOUTPUTBUFFERREQUEST._serialized_start=6807 + _CFGOUTPUTBUFFERREQUEST._serialized_end=6897 + _CFGOUTPUTBUFFERRESPONSE._serialized_start=6899 + _CFGOUTPUTBUFFERRESPONSE._serialized_end=6940 + _CFGPIPELINEDSAMPCLKTIMINGREQUEST._serialized_start=6943 + _CFGPIPELINEDSAMPCLKTIMINGREQUEST._serialized_end=7261 + _CFGPIPELINEDSAMPCLKTIMINGRESPONSE._serialized_start=7263 + _CFGPIPELINEDSAMPCLKTIMINGRESPONSE._serialized_end=7314 + _CFGSAMPCLKTIMINGREQUEST._serialized_start=7317 + _CFGSAMPCLKTIMINGREQUEST._serialized_end=7626 + _CFGSAMPCLKTIMINGRESPONSE._serialized_start=7628 + _CFGSAMPCLKTIMINGRESPONSE._serialized_end=7670 + _CFGTIMESTARTTRIGREQUEST._serialized_start=7673 + _CFGTIMESTARTTRIGREQUEST._serialized_end=7868 + _CFGTIMESTARTTRIGRESPONSE._serialized_start=7870 + _CFGTIMESTARTTRIGRESPONSE._serialized_end=7912 + _CFGWATCHDOGAOEXPIRSTATESREQUEST._serialized_start=7915 + _CFGWATCHDOGAOEXPIRSTATESREQUEST._serialized_end=8099 + _CFGWATCHDOGAOEXPIRSTATESRESPONSE._serialized_start=8101 + _CFGWATCHDOGAOEXPIRSTATESRESPONSE._serialized_end=8151 + _CFGWATCHDOGCOEXPIRSTATESREQUEST._serialized_start=8154 + _CFGWATCHDOGCOEXPIRSTATESREQUEST._serialized_end=8311 + _CFGWATCHDOGCOEXPIRSTATESRESPONSE._serialized_start=8313 + _CFGWATCHDOGCOEXPIRSTATESRESPONSE._serialized_end=8363 + _CFGWATCHDOGDOEXPIRSTATESREQUEST._serialized_start=8366 + _CFGWATCHDOGDOEXPIRSTATESREQUEST._serialized_end=8519 + _CFGWATCHDOGDOEXPIRSTATESRESPONSE._serialized_start=8521 + _CFGWATCHDOGDOEXPIRSTATESRESPONSE._serialized_end=8571 + _CLEARTEDSREQUEST._serialized_start=8573 + _CLEARTEDSREQUEST._serialized_end=8617 + _CLEARTEDSRESPONSE._serialized_start=8619 + _CLEARTEDSRESPONSE._serialized_end=8654 + _CLEARTASKREQUEST._serialized_start=8656 + _CLEARTASKREQUEST._serialized_end=8712 + _CLEARTASKRESPONSE._serialized_start=8714 + _CLEARTASKRESPONSE._serialized_end=8749 + _CONFIGURELOGGINGREQUEST._serialized_start=8752 + _CONFIGURELOGGINGREQUEST._serialized_end=9050 + _CONFIGURELOGGINGRESPONSE._serialized_start=9052 + _CONFIGURELOGGINGRESPONSE._serialized_end=9094 + _CONFIGURETEDSREQUEST._serialized_start=9096 + _CONFIGURETEDSREQUEST._serialized_end=9163 + _CONFIGURETEDSRESPONSE._serialized_start=9165 + _CONFIGURETEDSRESPONSE._serialized_end=9204 + _CONNECTTERMSREQUEST._serialized_start=9207 + _CONNECTTERMSREQUEST._serialized_end=9398 + _CONNECTTERMSRESPONSE._serialized_start=9400 + _CONNECTTERMSRESPONSE._serialized_end=9438 + _CONTROLWATCHDOGTASKREQUEST._serialized_start=9441 + _CONTROLWATCHDOGTASKREQUEST._serialized_end=9599 + _CONTROLWATCHDOGTASKRESPONSE._serialized_start=9601 + _CONTROLWATCHDOGTASKRESPONSE._serialized_end=9646 + _CREATEAIACCEL4WIREDCVOLTAGECHANREQUEST._serialized_start=9649 + _CREATEAIACCEL4WIREDCVOLTAGECHANREQUEST._serialized_end=10383 + _CREATEAIACCEL4WIREDCVOLTAGECHANRESPONSE._serialized_start=10385 + _CREATEAIACCEL4WIREDCVOLTAGECHANRESPONSE._serialized_end=10442 + _CREATEAIACCELCHANREQUEST._serialized_start=10445 + _CREATEAIACCELCHANREQUEST._serialized_end=11134 + _CREATEAIACCELCHANRESPONSE._serialized_start=11136 + _CREATEAIACCELCHANRESPONSE._serialized_end=11179 + _CREATEAIACCELCHARGECHANREQUEST._serialized_start=11182 + _CREATEAIACCELCHARGECHANREQUEST._serialized_end=11726 + _CREATEAIACCELCHARGECHANRESPONSE._serialized_start=11728 + _CREATEAIACCELCHARGECHANRESPONSE._serialized_end=11777 + _CREATEAIBRIDGECHANREQUEST._serialized_start=11780 + _CREATEAIBRIDGECHANREQUEST._serialized_end=12349 + _CREATEAIBRIDGECHANRESPONSE._serialized_start=12351 + _CREATEAIBRIDGECHANRESPONSE._serialized_end=12395 + _CREATEAICHARGECHANREQUEST._serialized_start=12398 + _CREATEAICHARGECHANREQUEST._serialized_end=12785 + _CREATEAICHARGECHANRESPONSE._serialized_start=12787 + _CREATEAICHARGECHANRESPONSE._serialized_end=12831 + _CREATEAICURRENTCHANREQUEST._serialized_start=12834 + _CREATEAICURRENTCHANREQUEST._serialized_end=13402 + _CREATEAICURRENTCHANRESPONSE._serialized_start=13404 + _CREATEAICURRENTCHANRESPONSE._serialized_end=13449 + _CREATEAICURRENTRMSCHANREQUEST._serialized_start=13452 + _CREATEAICURRENTRMSCHANREQUEST._serialized_end=14023 + _CREATEAICURRENTRMSCHANRESPONSE._serialized_start=14025 + _CREATEAICURRENTRMSCHANRESPONSE._serialized_end=14073 + _CREATEAIFORCEBRIDGEPOLYNOMIALCHANREQUEST._serialized_start=14076 + _CREATEAIFORCEBRIDGEPOLYNOMIALCHANREQUEST._serialized_end=14943 + _CREATEAIFORCEBRIDGEPOLYNOMIALCHANRESPONSE._serialized_start=14945 + _CREATEAIFORCEBRIDGEPOLYNOMIALCHANRESPONSE._serialized_end=15004 + _CREATEAIFORCEBRIDGETABLECHANREQUEST._serialized_start=15007 + _CREATEAIFORCEBRIDGETABLECHANREQUEST._serialized_end=15869 + _CREATEAIFORCEBRIDGETABLECHANRESPONSE._serialized_start=15871 + _CREATEAIFORCEBRIDGETABLECHANRESPONSE._serialized_end=15925 + _CREATEAIFORCEBRIDGETWOPOINTLINCHANREQUEST._serialized_start=15928 + _CREATEAIFORCEBRIDGETWOPOINTLINCHANREQUEST._serialized_end=16866 + _CREATEAIFORCEBRIDGETWOPOINTLINCHANRESPONSE._serialized_start=16868 + _CREATEAIFORCEBRIDGETWOPOINTLINCHANRESPONSE._serialized_end=16928 + _CREATEAIFORCEIEPECHANREQUEST._serialized_start=16931 + _CREATEAIFORCEIEPECHANREQUEST._serialized_end=17636 + _CREATEAIFORCEIEPECHANRESPONSE._serialized_start=17638 + _CREATEAIFORCEIEPECHANRESPONSE._serialized_end=17685 + _CREATEAIFREQVOLTAGECHANREQUEST._serialized_start=17688 + _CREATEAIFREQVOLTAGECHANREQUEST._serialized_end=18007 + _CREATEAIFREQVOLTAGECHANRESPONSE._serialized_start=18009 + _CREATEAIFREQVOLTAGECHANRESPONSE._serialized_end=18058 + _CREATEAIMICROPHONECHANREQUEST._serialized_start=18061 + _CREATEAIMICROPHONECHANREQUEST._serialized_end=18636 + _CREATEAIMICROPHONECHANRESPONSE._serialized_start=18638 + _CREATEAIMICROPHONECHANRESPONSE._serialized_end=18686 + _CREATEAIPOSEDDYCURRPROXPROBECHANREQUEST._serialized_start=18689 + _CREATEAIPOSEDDYCURRPROXPROBECHANREQUEST._serialized_end=19131 + _CREATEAIPOSEDDYCURRPROXPROBECHANRESPONSE._serialized_start=19133 + _CREATEAIPOSEDDYCURRPROXPROBECHANRESPONSE._serialized_end=19191 + _CREATEAIPOSLVDTCHANREQUEST._serialized_start=19194 + _CREATEAIPOSLVDTCHANREQUEST._serialized_end=19914 + _CREATEAIPOSLVDTCHANRESPONSE._serialized_start=19916 + _CREATEAIPOSLVDTCHANRESPONSE._serialized_end=19961 + _CREATEAIPOSRVDTCHANREQUEST._serialized_start=19964 + _CREATEAIPOSRVDTCHANREQUEST._serialized_end=20683 + _CREATEAIPOSRVDTCHANRESPONSE._serialized_start=20685 + _CREATEAIPOSRVDTCHANRESPONSE._serialized_end=20730 + _CREATEAIPOWERCHANREQUEST._serialized_start=20733 + _CREATEAIPOWERCHANREQUEST._serialized_end=20933 + _CREATEAIPOWERCHANRESPONSE._serialized_start=20935 + _CREATEAIPOWERCHANRESPONSE._serialized_end=20978 + _CREATEAIPRESSUREBRIDGEPOLYNOMIALCHANREQUEST._serialized_start=20981 + _CREATEAIPRESSUREBRIDGEPOLYNOMIALCHANREQUEST._serialized_end=21854 + _CREATEAIPRESSUREBRIDGEPOLYNOMIALCHANRESPONSE._serialized_start=21856 + _CREATEAIPRESSUREBRIDGEPOLYNOMIALCHANRESPONSE._serialized_end=21918 + _CREATEAIPRESSUREBRIDGETABLECHANREQUEST._serialized_start=21921 + _CREATEAIPRESSUREBRIDGETABLECHANREQUEST._serialized_end=22789 + _CREATEAIPRESSUREBRIDGETABLECHANRESPONSE._serialized_start=22791 + _CREATEAIPRESSUREBRIDGETABLECHANRESPONSE._serialized_end=22848 + _CREATEAIPRESSUREBRIDGETWOPOINTLINCHANREQUEST._serialized_start=22851 + _CREATEAIPRESSUREBRIDGETWOPOINTLINCHANREQUEST._serialized_end=23795 + _CREATEAIPRESSUREBRIDGETWOPOINTLINCHANRESPONSE._serialized_start=23797 + _CREATEAIPRESSUREBRIDGETWOPOINTLINCHANRESPONSE._serialized_end=23860 + _CREATEAIRTDCHANREQUEST._serialized_start=23863 + _CREATEAIRTDCHANREQUEST._serialized_end=24484 + _CREATEAIRTDCHANRESPONSE._serialized_start=24486 + _CREATEAIRTDCHANRESPONSE._serialized_end=24527 + _CREATEAIRESISTANCECHANREQUEST._serialized_start=24530 + _CREATEAIRESISTANCECHANREQUEST._serialized_end=25088 + _CREATEAIRESISTANCECHANRESPONSE._serialized_start=25090 + _CREATEAIRESISTANCECHANRESPONSE._serialized_end=25138 + _CREATEAIROSETTESTRAINGAGECHANREQUEST._serialized_start=25141 + _CREATEAIROSETTESTRAINGAGECHANREQUEST._serialized_end=25900 + _CREATEAIROSETTESTRAINGAGECHANRESPONSE._serialized_start=25902 + _CREATEAIROSETTESTRAINGAGECHANRESPONSE._serialized_end=25957 + _CREATEAISTRAINGAGECHANREQUEST._serialized_start=25960 + _CREATEAISTRAINGAGECHANREQUEST._serialized_end=26639 + _CREATEAISTRAINGAGECHANRESPONSE._serialized_start=26641 + _CREATEAISTRAINGAGECHANRESPONSE._serialized_end=26689 + _CREATEAITEMPBUILTINSENSORCHANREQUEST._serialized_start=26692 + _CREATEAITEMPBUILTINSENSORCHANREQUEST._serialized_end=26913 + _CREATEAITEMPBUILTINSENSORCHANRESPONSE._serialized_start=26915 + _CREATEAITEMPBUILTINSENSORCHANRESPONSE._serialized_end=26970 + _CREATEAITHRMCPLCHANREQUEST._serialized_start=26973 + _CREATEAITHRMCPLCHANREQUEST._serialized_end=27470 + _CREATEAITHRMCPLCHANRESPONSE._serialized_start=27472 + _CREATEAITHRMCPLCHANRESPONSE._serialized_end=27517 + _CREATEAITHRMSTRCHANIEXREQUEST._serialized_start=27520 + _CREATEAITHRMSTRCHANIEXREQUEST._serialized_end=28084 + _CREATEAITHRMSTRCHANIEXRESPONSE._serialized_start=28086 + _CREATEAITHRMSTRCHANIEXRESPONSE._serialized_end=28134 + _CREATEAITHRMSTRCHANVEXREQUEST._serialized_start=28137 + _CREATEAITHRMSTRCHANVEXREQUEST._serialized_end=28713 + _CREATEAITHRMSTRCHANVEXRESPONSE._serialized_start=28715 + _CREATEAITHRMSTRCHANVEXRESPONSE._serialized_end=28763 + _CREATEAITORQUEBRIDGEPOLYNOMIALCHANREQUEST._serialized_start=28766 + _CREATEAITORQUEBRIDGEPOLYNOMIALCHANREQUEST._serialized_end=29635 + _CREATEAITORQUEBRIDGEPOLYNOMIALCHANRESPONSE._serialized_start=29637 + _CREATEAITORQUEBRIDGEPOLYNOMIALCHANRESPONSE._serialized_end=29697 + _CREATEAITORQUEBRIDGETABLECHANREQUEST._serialized_start=29700 + _CREATEAITORQUEBRIDGETABLECHANREQUEST._serialized_end=30564 + _CREATEAITORQUEBRIDGETABLECHANRESPONSE._serialized_start=30566 + _CREATEAITORQUEBRIDGETABLECHANRESPONSE._serialized_end=30621 + _CREATEAITORQUEBRIDGETWOPOINTLINCHANREQUEST._serialized_start=30624 + _CREATEAITORQUEBRIDGETWOPOINTLINCHANREQUEST._serialized_end=31564 + _CREATEAITORQUEBRIDGETWOPOINTLINCHANRESPONSE._serialized_start=31566 + _CREATEAITORQUEBRIDGETWOPOINTLINCHANRESPONSE._serialized_end=31627 + _CREATEAIVELOCITYIEPECHANREQUEST._serialized_start=31630 + _CREATEAIVELOCITYIEPECHANREQUEST._serialized_end=32340 + _CREATEAIVELOCITYIEPECHANRESPONSE._serialized_start=32342 + _CREATEAIVELOCITYIEPECHANRESPONSE._serialized_end=32392 + _CREATEAIVOLTAGECHANREQUEST._serialized_start=32395 + _CREATEAIVOLTAGECHANREQUEST._serialized_end=32785 + _CREATEAIVOLTAGECHANRESPONSE._serialized_start=32787 + _CREATEAIVOLTAGECHANRESPONSE._serialized_end=32832 + _CREATEAIVOLTAGECHANWITHEXCITREQUEST._serialized_start=32835 + _CREATEAIVOLTAGECHANWITHEXCITREQUEST._serialized_end=33533 + _CREATEAIVOLTAGECHANWITHEXCITRESPONSE._serialized_start=33535 + _CREATEAIVOLTAGECHANWITHEXCITRESPONSE._serialized_end=33589 + _CREATEAIVOLTAGERMSCHANREQUEST._serialized_start=33592 + _CREATEAIVOLTAGERMSCHANREQUEST._serialized_end=33985 + _CREATEAIVOLTAGERMSCHANRESPONSE._serialized_start=33987 + _CREATEAIVOLTAGERMSCHANRESPONSE._serialized_end=34035 + _CREATEAOCURRENTCHANREQUEST._serialized_start=34038 + _CREATEAOCURRENTCHANREQUEST._serialized_end=34307 + _CREATEAOCURRENTCHANRESPONSE._serialized_start=34309 + _CREATEAOCURRENTCHANRESPONSE._serialized_end=34354 + _CREATEAOFUNCGENCHANREQUEST._serialized_start=34357 + _CREATEAOFUNCGENCHANREQUEST._serialized_end=34609 + _CREATEAOFUNCGENCHANRESPONSE._serialized_start=34611 + _CREATEAOFUNCGENCHANRESPONSE._serialized_end=34656 + _CREATEAOVOLTAGECHANREQUEST._serialized_start=34659 + _CREATEAOVOLTAGECHANREQUEST._serialized_end=34928 + _CREATEAOVOLTAGECHANRESPONSE._serialized_start=34930 + _CREATEAOVOLTAGECHANRESPONSE._serialized_end=34975 + _CREATECIANGENCODERCHANREQUEST._serialized_start=34978 + _CREATECIANGENCODERCHANREQUEST._serialized_end=35497 + _CREATECIANGENCODERCHANRESPONSE._serialized_start=35499 + _CREATECIANGENCODERCHANRESPONSE._serialized_end=35547 + _CREATECIANGVELOCITYCHANREQUEST._serialized_start=35550 + _CREATECIANGVELOCITYCHANREQUEST._serialized_end=35949 + _CREATECIANGVELOCITYCHANRESPONSE._serialized_start=35951 + _CREATECIANGVELOCITYCHANRESPONSE._serialized_end=36000 + _CREATECICOUNTEDGESCHANREQUEST._serialized_start=36003 + _CREATECICOUNTEDGESCHANREQUEST._serialized_end=36330 + _CREATECICOUNTEDGESCHANRESPONSE._serialized_start=36332 + _CREATECICOUNTEDGESCHANRESPONSE._serialized_end=36380 + _CREATECIDUTYCYCLECHANREQUEST._serialized_start=36383 + _CREATECIDUTYCYCLECHANREQUEST._serialized_end=36636 + _CREATECIDUTYCYCLECHANRESPONSE._serialized_start=36638 + _CREATECIDUTYCYCLECHANRESPONSE._serialized_end=36685 + _CREATECIFREQCHANREQUEST._serialized_start=36688 + _CREATECIFREQCHANREQUEST._serialized_end=37161 + _CREATECIFREQCHANRESPONSE._serialized_start=37163 + _CREATECIFREQCHANRESPONSE._serialized_end=37205 + _CREATECIGPSTIMESTAMPCHANREQUEST._serialized_start=37208 + _CREATECIGPSTIMESTAMPCHANREQUEST._serialized_end=37535 + _CREATECIGPSTIMESTAMPCHANRESPONSE._serialized_start=37537 + _CREATECIGPSTIMESTAMPCHANRESPONSE._serialized_end=37587 + _CREATECILINENCODERCHANREQUEST._serialized_start=37590 + _CREATECILINENCODERCHANREQUEST._serialized_end=38108 + _CREATECILINENCODERCHANRESPONSE._serialized_start=38110 + _CREATECILINENCODERCHANRESPONSE._serialized_end=38158 + _CREATECILINVELOCITYCHANREQUEST._serialized_start=38161 + _CREATECILINVELOCITYCHANREQUEST._serialized_end=38553 + _CREATECILINVELOCITYCHANRESPONSE._serialized_start=38555 + _CREATECILINVELOCITYCHANRESPONSE._serialized_end=38604 + _CREATECIPERIODCHANREQUEST._serialized_start=38607 + _CREATECIPERIODCHANREQUEST._serialized_end=39077 + _CREATECIPERIODCHANRESPONSE._serialized_start=39079 + _CREATECIPERIODCHANRESPONSE._serialized_end=39123 + _CREATECIPULSECHANFREQREQUEST._serialized_start=39126 + _CREATECIPULSECHANFREQREQUEST._serialized_end=39363 + _CREATECIPULSECHANFREQRESPONSE._serialized_start=39365 + _CREATECIPULSECHANFREQRESPONSE._serialized_end=39412 + _CREATECIPULSECHANTICKSREQUEST._serialized_start=39415 + _CREATECIPULSECHANTICKSREQUEST._serialized_end=39595 + _CREATECIPULSECHANTICKSRESPONSE._serialized_start=39597 + _CREATECIPULSECHANTICKSRESPONSE._serialized_end=39645 + _CREATECIPULSECHANTIMEREQUEST._serialized_start=39648 + _CREATECIPULSECHANTIMEREQUEST._serialized_end=39888 + _CREATECIPULSECHANTIMERESPONSE._serialized_start=39890 + _CREATECIPULSECHANTIMERESPONSE._serialized_end=39937 + _CREATECIPULSEWIDTHCHANREQUEST._serialized_start=39940 + _CREATECIPULSEWIDTHCHANREQUEST._serialized_end=40297 + _CREATECIPULSEWIDTHCHANRESPONSE._serialized_start=40299 + _CREATECIPULSEWIDTHCHANRESPONSE._serialized_end=40347 + _CREATECISEMIPERIODCHANREQUEST._serialized_start=40350 + _CREATECISEMIPERIODCHANREQUEST._serialized_end=40610 + _CREATECISEMIPERIODCHANRESPONSE._serialized_start=40612 + _CREATECISEMIPERIODCHANRESPONSE._serialized_end=40660 + _CREATECITWOEDGESEPCHANREQUEST._serialized_start=40663 + _CREATECITWOEDGESEPCHANREQUEST._serialized_end=41102 + _CREATECITWOEDGESEPCHANRESPONSE._serialized_start=41104 + _CREATECITWOEDGESEPCHANRESPONSE._serialized_end=41152 + _CREATECOPULSECHANFREQREQUEST._serialized_start=41155 + _CREATECOPULSECHANFREQREQUEST._serialized_end=41504 + _CREATECOPULSECHANFREQRESPONSE._serialized_start=41506 + _CREATECOPULSECHANFREQRESPONSE._serialized_end=41553 + _CREATECOPULSECHANTICKSREQUEST._serialized_start=41556 + _CREATECOPULSECHANTICKSREQUEST._serialized_end=41853 + _CREATECOPULSECHANTICKSRESPONSE._serialized_start=41855 + _CREATECOPULSECHANTICKSRESPONSE._serialized_end=41903 + _CREATECOPULSECHANTIMEREQUEST._serialized_start=41906 + _CREATECOPULSECHANTIMEREQUEST._serialized_end=42261 + _CREATECOPULSECHANTIMERESPONSE._serialized_start=42263 + _CREATECOPULSECHANTIMERESPONSE._serialized_end=42310 + _CREATEDICHANREQUEST._serialized_start=42313 + _CREATEDICHANREQUEST._serialized_end=42524 + _CREATEDICHANRESPONSE._serialized_start=42526 + _CREATEDICHANRESPONSE._serialized_end=42564 + _CREATEDOCHANREQUEST._serialized_start=42567 + _CREATEDOCHANREQUEST._serialized_end=42778 + _CREATEDOCHANRESPONSE._serialized_start=42780 + _CREATEDOCHANRESPONSE._serialized_end=42818 + _CREATELINSCALEREQUEST._serialized_start=42821 + _CREATELINSCALEREQUEST._serialized_end=43031 + _CREATELINSCALERESPONSE._serialized_start=43033 + _CREATELINSCALERESPONSE._serialized_end=43073 + _CREATEMAPSCALEREQUEST._serialized_start=43076 + _CREATEMAPSCALEREQUEST._serialized_end=43336 + _CREATEMAPSCALERESPONSE._serialized_start=43338 + _CREATEMAPSCALERESPONSE._serialized_end=43378 + _CREATEPOLYNOMIALSCALEREQUEST._serialized_start=43381 + _CREATEPOLYNOMIALSCALEREQUEST._serialized_end=43610 + _CREATEPOLYNOMIALSCALERESPONSE._serialized_start=43612 + _CREATEPOLYNOMIALSCALERESPONSE._serialized_end=43659 + _CREATETEDSAIACCELCHANREQUEST._serialized_start=43662 + _CREATETEDSAIACCELCHANREQUEST._serialized_end=44208 + _CREATETEDSAIACCELCHANRESPONSE._serialized_start=44210 + _CREATETEDSAIACCELCHANRESPONSE._serialized_end=44257 + _CREATETEDSAIBRIDGECHANREQUEST._serialized_start=44260 + _CREATETEDSAIBRIDGECHANREQUEST._serialized_end=44684 + _CREATETEDSAIBRIDGECHANRESPONSE._serialized_start=44686 + _CREATETEDSAIBRIDGECHANRESPONSE._serialized_end=44734 + _CREATETEDSAICURRENTCHANREQUEST._serialized_start=44737 + _CREATETEDSAICURRENTCHANREQUEST._serialized_end=45305 + _CREATETEDSAICURRENTCHANRESPONSE._serialized_start=45307 + _CREATETEDSAICURRENTCHANRESPONSE._serialized_end=45356 + _CREATETEDSAIFORCEBRIDGECHANREQUEST._serialized_start=45359 + _CREATETEDSAIFORCEBRIDGECHANREQUEST._serialized_end=45789 + _CREATETEDSAIFORCEBRIDGECHANRESPONSE._serialized_start=45791 + _CREATETEDSAIFORCEBRIDGECHANRESPONSE._serialized_end=45844 + _CREATETEDSAIFORCEIEPECHANREQUEST._serialized_start=45847 + _CREATETEDSAIFORCEIEPECHANREQUEST._serialized_end=46400 + _CREATETEDSAIFORCEIEPECHANRESPONSE._serialized_start=46402 + _CREATETEDSAIFORCEIEPECHANRESPONSE._serialized_end=46453 + _CREATETEDSAIMICROPHONECHANREQUEST._serialized_start=46456 + _CREATETEDSAIMICROPHONECHANREQUEST._serialized_end=47010 + _CREATETEDSAIMICROPHONECHANRESPONSE._serialized_start=47012 + _CREATETEDSAIMICROPHONECHANRESPONSE._serialized_end=47064 + _CREATETEDSAIPOSLVDTCHANREQUEST._serialized_start=47067 + _CREATETEDSAIPOSLVDTCHANREQUEST._serialized_end=47645 + _CREATETEDSAIPOSLVDTCHANRESPONSE._serialized_start=47647 + _CREATETEDSAIPOSLVDTCHANRESPONSE._serialized_end=47696 + _CREATETEDSAIPOSRVDTCHANREQUEST._serialized_start=47699 + _CREATETEDSAIPOSRVDTCHANREQUEST._serialized_end=48276 + _CREATETEDSAIPOSRVDTCHANRESPONSE._serialized_start=48278 + _CREATETEDSAIPOSRVDTCHANRESPONSE._serialized_end=48327 + _CREATETEDSAIPRESSUREBRIDGECHANREQUEST._serialized_start=48330 + _CREATETEDSAIPRESSUREBRIDGECHANREQUEST._serialized_end=48766 + _CREATETEDSAIPRESSUREBRIDGECHANRESPONSE._serialized_start=48768 + _CREATETEDSAIPRESSUREBRIDGECHANRESPONSE._serialized_end=48824 + _CREATETEDSAIRTDCHANREQUEST._serialized_start=48827 + _CREATETEDSAIRTDCHANREQUEST._serialized_end=49355 + _CREATETEDSAIRTDCHANRESPONSE._serialized_start=49357 + _CREATETEDSAIRTDCHANRESPONSE._serialized_end=49402 + _CREATETEDSAIRESISTANCECHANREQUEST._serialized_start=49405 + _CREATETEDSAIRESISTANCECHANREQUEST._serialized_end=49960 + _CREATETEDSAIRESISTANCECHANRESPONSE._serialized_start=49962 + _CREATETEDSAIRESISTANCECHANRESPONSE._serialized_end=50014 + _CREATETEDSAISTRAINGAGECHANREQUEST._serialized_start=50017 + _CREATETEDSAISTRAINGAGECHANREQUEST._serialized_end=50510 + _CREATETEDSAISTRAINGAGECHANRESPONSE._serialized_start=50512 + _CREATETEDSAISTRAINGAGECHANRESPONSE._serialized_end=50564 + _CREATETEDSAITHRMCPLCHANREQUEST._serialized_start=50567 + _CREATETEDSAITHRMCPLCHANREQUEST._serialized_end=50947 + _CREATETEDSAITHRMCPLCHANRESPONSE._serialized_start=50949 + _CREATETEDSAITHRMCPLCHANRESPONSE._serialized_end=50998 + _CREATETEDSAITHRMSTRCHANIEXREQUEST._serialized_start=51001 + _CREATETEDSAITHRMSTRCHANIEXREQUEST._serialized_end=51536 + _CREATETEDSAITHRMSTRCHANIEXRESPONSE._serialized_start=51538 + _CREATETEDSAITHRMSTRCHANIEXRESPONSE._serialized_end=51590 + _CREATETEDSAITHRMSTRCHANVEXREQUEST._serialized_start=51593 + _CREATETEDSAITHRMSTRCHANVEXREQUEST._serialized_end=52140 + _CREATETEDSAITHRMSTRCHANVEXRESPONSE._serialized_start=52142 + _CREATETEDSAITHRMSTRCHANVEXRESPONSE._serialized_end=52194 + _CREATETEDSAITORQUEBRIDGECHANREQUEST._serialized_start=52197 + _CREATETEDSAITORQUEBRIDGECHANREQUEST._serialized_end=52629 + _CREATETEDSAITORQUEBRIDGECHANRESPONSE._serialized_start=52631 + _CREATETEDSAITORQUEBRIDGECHANRESPONSE._serialized_end=52685 + _CREATETEDSAIVOLTAGECHANREQUEST._serialized_start=52688 + _CREATETEDSAIVOLTAGECHANREQUEST._serialized_end=53078 + _CREATETEDSAIVOLTAGECHANRESPONSE._serialized_start=53080 + _CREATETEDSAIVOLTAGECHANRESPONSE._serialized_end=53129 + _CREATETEDSAIVOLTAGECHANWITHEXCITREQUEST._serialized_start=53132 + _CREATETEDSAIVOLTAGECHANWITHEXCITREQUEST._serialized_end=53687 + _CREATETEDSAIVOLTAGECHANWITHEXCITRESPONSE._serialized_start=53689 + _CREATETEDSAIVOLTAGECHANWITHEXCITRESPONSE._serialized_end=53747 + _CREATETABLESCALEREQUEST._serialized_start=53750 + _CREATETABLESCALEREQUEST._serialized_end=53971 + _CREATETABLESCALERESPONSE._serialized_start=53973 + _CREATETABLESCALERESPONSE._serialized_end=54015 + _CREATETASKREQUEST._serialized_start=54017 + _CREATETASKREQUEST._serialized_end=54137 + _CREATETASKRESPONSE._serialized_start=54139 + _CREATETASKRESPONSE._serialized_end=54246 + _CREATEWATCHDOGTIMERTASKREQUEST._serialized_start=54249 + _CREATEWATCHDOGTIMERTASKREQUEST._serialized_end=54483 + _CREATEWATCHDOGTIMERTASKRESPONSE._serialized_start=54485 + _CREATEWATCHDOGTIMERTASKRESPONSE._serialized_end=54605 + _CREATEWATCHDOGTIMERTASKEXREQUEST._serialized_start=54608 + _CREATEWATCHDOGTIMERTASKEXREQUEST._serialized_end=54781 + _CREATEWATCHDOGTIMERTASKEXRESPONSE._serialized_start=54783 + _CREATEWATCHDOGTIMERTASKEXRESPONSE._serialized_end=54905 + _DELETENETWORKDEVICEREQUEST._serialized_start=54907 + _DELETENETWORKDEVICEREQUEST._serialized_end=54956 + _DELETENETWORKDEVICERESPONSE._serialized_start=54958 + _DELETENETWORKDEVICERESPONSE._serialized_end=55003 + _DELETESAVEDGLOBALCHANREQUEST._serialized_start=55005 + _DELETESAVEDGLOBALCHANREQUEST._serialized_end=55057 + _DELETESAVEDGLOBALCHANRESPONSE._serialized_start=55059 + _DELETESAVEDGLOBALCHANRESPONSE._serialized_end=55106 + _DELETESAVEDSCALEREQUEST._serialized_start=55108 + _DELETESAVEDSCALEREQUEST._serialized_end=55153 + _DELETESAVEDSCALERESPONSE._serialized_start=55155 + _DELETESAVEDSCALERESPONSE._serialized_end=55197 + _DELETESAVEDTASKREQUEST._serialized_start=55199 + _DELETESAVEDTASKREQUEST._serialized_end=55242 + _DELETESAVEDTASKRESPONSE._serialized_start=55244 + _DELETESAVEDTASKRESPONSE._serialized_end=55285 + _DEVICESUPPORTSCALREQUEST._serialized_start=55287 + _DEVICESUPPORTSCALREQUEST._serialized_end=55334 + _DEVICESUPPORTSCALRESPONSE._serialized_start=55336 + _DEVICESUPPORTSCALRESPONSE._serialized_end=55402 + _DISABLEREFTRIGREQUEST._serialized_start=55404 + _DISABLEREFTRIGREQUEST._serialized_end=55465 + _DISABLEREFTRIGRESPONSE._serialized_start=55467 + _DISABLEREFTRIGRESPONSE._serialized_end=55507 + _DISABLESTARTTRIGREQUEST._serialized_start=55509 + _DISABLESTARTTRIGREQUEST._serialized_end=55572 + _DISABLESTARTTRIGRESPONSE._serialized_start=55574 + _DISABLESTARTTRIGRESPONSE._serialized_end=55616 + _DISCONNECTTERMSREQUEST._serialized_start=55618 + _DISCONNECTTERMSREQUEST._serialized_end=55697 + _DISCONNECTTERMSRESPONSE._serialized_start=55699 + _DISCONNECTTERMSRESPONSE._serialized_end=55740 + _EXPORTSIGNALREQUEST._serialized_start=55743 + _EXPORTSIGNALREQUEST._serialized_end=55913 + _EXPORTSIGNALRESPONSE._serialized_start=55915 + _EXPORTSIGNALRESPONSE._serialized_end=55953 + _GETAICHANCALCALDATEREQUEST._serialized_start=55955 + _GETAICHANCALCALDATEREQUEST._serialized_end=56043 + _GETAICHANCALCALDATERESPONSE._serialized_start=56045 + _GETAICHANCALCALDATERESPONSE._serialized_end=56162 + _GETAICHANCALEXPDATEREQUEST._serialized_start=56164 + _GETAICHANCALEXPDATEREQUEST._serialized_end=56252 + _GETAICHANCALEXPDATERESPONSE._serialized_start=56254 + _GETAICHANCALEXPDATERESPONSE._serialized_end=56371 + _GETANALOGPOWERUPSTATESREQUEST._serialized_start=56373 + _GETANALOGPOWERUPSTATESREQUEST._serialized_end=56486 + _GETANALOGPOWERUPSTATESRESPONSE._serialized_start=56488 + _GETANALOGPOWERUPSTATESRESPONSE._serialized_end=56561 + _GETANALOGPOWERUPSTATESWITHOUTPUTTYPEREQUEST._serialized_start=56563 + _GETANALOGPOWERUPSTATESWITHOUTPUTTYPEREQUEST._serialized_end=56651 + _GETANALOGPOWERUPSTATESWITHOUTPUTTYPERESPONSE._serialized_start=56654 + _GETANALOGPOWERUPSTATESWITHOUTPUTTYPERESPONSE._serialized_end=56831 + _GETARMSTARTTRIGTIMESTAMPVALREQUEST._serialized_start=56833 + _GETARMSTARTTRIGTIMESTAMPVALREQUEST._serialized_end=56907 + _GETARMSTARTTRIGTIMESTAMPVALRESPONSE._serialized_start=56909 + _GETARMSTARTTRIGTIMESTAMPVALRESPONSE._serialized_end=57004 + _GETARMSTARTTRIGTRIGWHENREQUEST._serialized_start=57006 + _GETARMSTARTTRIGTRIGWHENREQUEST._serialized_end=57076 + _GETARMSTARTTRIGTRIGWHENRESPONSE._serialized_start=57078 + _GETARMSTARTTRIGTRIGWHENRESPONSE._serialized_end=57169 + _GETAUTOCONFIGUREDCDAQSYNCCONNECTIONSREQUEST._serialized_start=57171 + _GETAUTOCONFIGUREDCDAQSYNCCONNECTIONSREQUEST._serialized_end=57216 + _GETAUTOCONFIGUREDCDAQSYNCCONNECTIONSRESPONSE._serialized_start=57218 + _GETAUTOCONFIGUREDCDAQSYNCCONNECTIONSRESPONSE._serialized_end=57299 + _GETBUFFERATTRIBUTEUINT32REQUEST._serialized_start=57302 + _GETBUFFERATTRIBUTEUINT32REQUEST._serialized_end=57474 + _GETBUFFERATTRIBUTEUINT32RESPONSE._serialized_start=57476 + _GETBUFFERATTRIBUTEUINT32RESPONSE._serialized_end=57541 + _GETCALINFOATTRIBUTEBOOLREQUEST._serialized_start=57544 + _GETCALINFOATTRIBUTEBOOLREQUEST._serialized_end=57705 + _GETCALINFOATTRIBUTEBOOLRESPONSE._serialized_start=57707 + _GETCALINFOATTRIBUTEBOOLRESPONSE._serialized_end=57771 + _GETCALINFOATTRIBUTEDOUBLEREQUEST._serialized_start=57774 + _GETCALINFOATTRIBUTEDOUBLEREQUEST._serialized_end=57939 + _GETCALINFOATTRIBUTEDOUBLERESPONSE._serialized_start=57941 + _GETCALINFOATTRIBUTEDOUBLERESPONSE._serialized_end=58007 + _GETCALINFOATTRIBUTESTRINGREQUEST._serialized_start=58010 + _GETCALINFOATTRIBUTESTRINGREQUEST._serialized_end=58175 + _GETCALINFOATTRIBUTESTRINGRESPONSE._serialized_start=58177 + _GETCALINFOATTRIBUTESTRINGRESPONSE._serialized_end=58243 + _GETCALINFOATTRIBUTEUINT32REQUEST._serialized_start=58246 + _GETCALINFOATTRIBUTEUINT32REQUEST._serialized_end=58411 + _GETCALINFOATTRIBUTEUINT32RESPONSE._serialized_start=58413 + _GETCALINFOATTRIBUTEUINT32RESPONSE._serialized_end=58479 + _GETCHANATTRIBUTEBOOLREQUEST._serialized_start=58482 + _GETCHANATTRIBUTEBOOLREQUEST._serialized_end=58666 + _GETCHANATTRIBUTEBOOLRESPONSE._serialized_start=58668 + _GETCHANATTRIBUTEBOOLRESPONSE._serialized_end=58729 + _GETCHANATTRIBUTEDOUBLEREQUEST._serialized_start=58732 + _GETCHANATTRIBUTEDOUBLEREQUEST._serialized_end=58920 + _GETCHANATTRIBUTEDOUBLERESPONSE._serialized_start=58922 + _GETCHANATTRIBUTEDOUBLERESPONSE._serialized_end=58985 + _GETCHANATTRIBUTEDOUBLEARRAYREQUEST._serialized_start=58988 + _GETCHANATTRIBUTEDOUBLEARRAYREQUEST._serialized_end=59186 + _GETCHANATTRIBUTEDOUBLEARRAYRESPONSE._serialized_start=59188 + _GETCHANATTRIBUTEDOUBLEARRAYRESPONSE._serialized_end=59256 + _GETCHANATTRIBUTEINT32REQUEST._serialized_start=59259 + _GETCHANATTRIBUTEINT32REQUEST._serialized_end=59445 + _GETCHANATTRIBUTEINT32RESPONSE._serialized_start=59447 + _GETCHANATTRIBUTEINT32RESPONSE._serialized_end=59571 + _GETCHANATTRIBUTESTRINGREQUEST._serialized_start=59574 + _GETCHANATTRIBUTESTRINGREQUEST._serialized_end=59762 + _GETCHANATTRIBUTESTRINGRESPONSE._serialized_start=59764 + _GETCHANATTRIBUTESTRINGRESPONSE._serialized_end=59827 + _GETCHANATTRIBUTEUINT32REQUEST._serialized_start=59830 + _GETCHANATTRIBUTEUINT32REQUEST._serialized_end=60018 + _GETCHANATTRIBUTEUINT32RESPONSE._serialized_start=60020 + _GETCHANATTRIBUTEUINT32RESPONSE._serialized_end=60083 + _GETDEVICEATTRIBUTEBOOLREQUEST._serialized_start=60086 + _GETDEVICEATTRIBUTEBOOLREQUEST._serialized_end=60237 + _GETDEVICEATTRIBUTEBOOLRESPONSE._serialized_start=60239 + _GETDEVICEATTRIBUTEBOOLRESPONSE._serialized_end=60302 + _GETDEVICEATTRIBUTEDOUBLEREQUEST._serialized_start=60305 + _GETDEVICEATTRIBUTEDOUBLEREQUEST._serialized_end=60460 + _GETDEVICEATTRIBUTEDOUBLERESPONSE._serialized_start=60462 + _GETDEVICEATTRIBUTEDOUBLERESPONSE._serialized_end=60527 + _GETDEVICEATTRIBUTEDOUBLEARRAYREQUEST._serialized_start=60530 + _GETDEVICEATTRIBUTEDOUBLEARRAYREQUEST._serialized_end=60695 + _GETDEVICEATTRIBUTEDOUBLEARRAYRESPONSE._serialized_start=60697 + _GETDEVICEATTRIBUTEDOUBLEARRAYRESPONSE._serialized_end=60767 + _GETDEVICEATTRIBUTEINT32REQUEST._serialized_start=60770 + _GETDEVICEATTRIBUTEINT32REQUEST._serialized_end=60923 + _GETDEVICEATTRIBUTEINT32RESPONSE._serialized_start=60925 + _GETDEVICEATTRIBUTEINT32RESPONSE._serialized_end=61050 + _GETDEVICEATTRIBUTEINT32ARRAYREQUEST._serialized_start=61053 + _GETDEVICEATTRIBUTEINT32ARRAYREQUEST._serialized_end=61216 + _GETDEVICEATTRIBUTEINT32ARRAYRESPONSE._serialized_start=61219 + _GETDEVICEATTRIBUTEINT32ARRAYRESPONSE._serialized_end=61349 + _GETDEVICEATTRIBUTESTRINGREQUEST._serialized_start=61352 + _GETDEVICEATTRIBUTESTRINGREQUEST._serialized_end=61507 + _GETDEVICEATTRIBUTESTRINGRESPONSE._serialized_start=61509 + _GETDEVICEATTRIBUTESTRINGRESPONSE._serialized_end=61574 + _GETDEVICEATTRIBUTEUINT32REQUEST._serialized_start=61577 + _GETDEVICEATTRIBUTEUINT32REQUEST._serialized_end=61732 + _GETDEVICEATTRIBUTEUINT32RESPONSE._serialized_start=61734 + _GETDEVICEATTRIBUTEUINT32RESPONSE._serialized_end=61799 + _GETDEVICEATTRIBUTEUINT32ARRAYREQUEST._serialized_start=61802 + _GETDEVICEATTRIBUTEUINT32ARRAYREQUEST._serialized_end=61967 + _GETDEVICEATTRIBUTEUINT32ARRAYRESPONSE._serialized_start=61969 + _GETDEVICEATTRIBUTEUINT32ARRAYRESPONSE._serialized_end=62039 + _GETDIGITALLOGICFAMILYPOWERUPSTATEREQUEST._serialized_start=62041 + _GETDIGITALLOGICFAMILYPOWERUPSTATEREQUEST._serialized_end=62104 + _GETDIGITALLOGICFAMILYPOWERUPSTATERESPONSE._serialized_start=62106 + _GETDIGITALLOGICFAMILYPOWERUPSTATERESPONSE._serialized_end=62187 + _GETDIGITALPOWERUPSTATESREQUEST._serialized_start=62189 + _GETDIGITALPOWERUPSTATESREQUEST._serialized_end=62264 + _GETDIGITALPOWERUPSTATESRESPONSE._serialized_start=62266 + _GETDIGITALPOWERUPSTATESRESPONSE._serialized_end=62369 + _GETDIGITALPULLUPPULLDOWNSTATESREQUEST._serialized_start=62371 + _GETDIGITALPULLUPPULLDOWNSTATESREQUEST._serialized_end=62453 + _GETDIGITALPULLUPPULLDOWNSTATESRESPONSE._serialized_start=62455 + _GETDIGITALPULLUPPULLDOWNSTATESRESPONSE._serialized_end=62574 + _GETDISCONNECTEDCDAQSYNCPORTSREQUEST._serialized_start=62576 + _GETDISCONNECTEDCDAQSYNCPORTSREQUEST._serialized_end=62613 + _GETDISCONNECTEDCDAQSYNCPORTSRESPONSE._serialized_start=62615 + _GETDISCONNECTEDCDAQSYNCPORTSRESPONSE._serialized_end=62688 + _GETERRORSTRINGREQUEST._serialized_start=62690 + _GETERRORSTRINGREQUEST._serialized_end=62733 + _GETERRORSTRINGRESPONSE._serialized_start=62735 + _GETERRORSTRINGRESPONSE._serialized_end=62797 + _GETEXPORTEDSIGNALATTRIBUTEBOOLREQUEST._serialized_start=62800 + _GETEXPORTEDSIGNALATTRIBUTEBOOLREQUEST._serialized_end=62982 + _GETEXPORTEDSIGNALATTRIBUTEBOOLRESPONSE._serialized_start=62984 + _GETEXPORTEDSIGNALATTRIBUTEBOOLRESPONSE._serialized_end=63055 + _GETEXPORTEDSIGNALATTRIBUTEDOUBLEREQUEST._serialized_start=63058 + _GETEXPORTEDSIGNALATTRIBUTEDOUBLEREQUEST._serialized_end=63244 + _GETEXPORTEDSIGNALATTRIBUTEDOUBLERESPONSE._serialized_start=63246 + _GETEXPORTEDSIGNALATTRIBUTEDOUBLERESPONSE._serialized_end=63319 + _GETEXPORTEDSIGNALATTRIBUTEINT32REQUEST._serialized_start=63322 + _GETEXPORTEDSIGNALATTRIBUTEINT32REQUEST._serialized_end=63506 + _GETEXPORTEDSIGNALATTRIBUTEINT32RESPONSE._serialized_start=63509 + _GETEXPORTEDSIGNALATTRIBUTEINT32RESPONSE._serialized_end=63648 + _GETEXPORTEDSIGNALATTRIBUTESTRINGREQUEST._serialized_start=63651 + _GETEXPORTEDSIGNALATTRIBUTESTRINGREQUEST._serialized_end=63837 + _GETEXPORTEDSIGNALATTRIBUTESTRINGRESPONSE._serialized_start=63839 + _GETEXPORTEDSIGNALATTRIBUTESTRINGRESPONSE._serialized_end=63912 + _GETEXPORTEDSIGNALATTRIBUTEUINT32REQUEST._serialized_start=63915 + _GETEXPORTEDSIGNALATTRIBUTEUINT32REQUEST._serialized_end=64101 + _GETEXPORTEDSIGNALATTRIBUTEUINT32RESPONSE._serialized_start=64103 + _GETEXPORTEDSIGNALATTRIBUTEUINT32RESPONSE._serialized_end=64176 + _GETEXTCALLASTDATEANDTIMEREQUEST._serialized_start=64178 + _GETEXTCALLASTDATEANDTIMEREQUEST._serialized_end=64232 + _GETEXTCALLASTDATEANDTIMERESPONSE._serialized_start=64234 + _GETEXTCALLASTDATEANDTIMERESPONSE._serialized_end=64356 + _GETFIRSTSAMPCLKWHENREQUEST._serialized_start=64358 + _GETFIRSTSAMPCLKWHENREQUEST._serialized_end=64424 + _GETFIRSTSAMPCLKWHENRESPONSE._serialized_start=64426 + _GETFIRSTSAMPCLKWHENRESPONSE._serialized_end=64513 + _GETFIRSTSAMPTIMESTAMPVALREQUEST._serialized_start=64515 + _GETFIRSTSAMPTIMESTAMPVALREQUEST._serialized_end=64586 + _GETFIRSTSAMPTIMESTAMPVALRESPONSE._serialized_start=64588 + _GETFIRSTSAMPTIMESTAMPVALRESPONSE._serialized_end=64680 + _GETNTHTASKCHANNELREQUEST._serialized_start=64682 + _GETNTHTASKCHANNELREQUEST._serialized_end=64761 + _GETNTHTASKCHANNELRESPONSE._serialized_start=64763 + _GETNTHTASKCHANNELRESPONSE._serialized_end=64822 + _GETNTHTASKDEVICEREQUEST._serialized_start=64824 + _GETNTHTASKDEVICEREQUEST._serialized_end=64902 + _GETNTHTASKDEVICERESPONSE._serialized_start=64904 + _GETNTHTASKDEVICERESPONSE._serialized_end=64962 + _GETNTHTASKREADCHANNELREQUEST._serialized_start=64964 + _GETNTHTASKREADCHANNELREQUEST._serialized_end=65047 + _GETNTHTASKREADCHANNELRESPONSE._serialized_start=65049 + _GETNTHTASKREADCHANNELRESPONSE._serialized_end=65112 + _GETPERSISTEDCHANATTRIBUTEBOOLREQUEST._serialized_start=65115 + _GETPERSISTEDCHANATTRIBUTEBOOLREQUEST._serialized_end=65279 + _GETPERSISTEDCHANATTRIBUTEBOOLRESPONSE._serialized_start=65281 + _GETPERSISTEDCHANATTRIBUTEBOOLRESPONSE._serialized_end=65351 + _GETPERSISTEDCHANATTRIBUTESTRINGREQUEST._serialized_start=65354 + _GETPERSISTEDCHANATTRIBUTESTRINGREQUEST._serialized_end=65522 + _GETPERSISTEDCHANATTRIBUTESTRINGRESPONSE._serialized_start=65524 + _GETPERSISTEDCHANATTRIBUTESTRINGRESPONSE._serialized_end=65596 + _GETPERSISTEDSCALEATTRIBUTEBOOLREQUEST._serialized_start=65599 + _GETPERSISTEDSCALEATTRIBUTEBOOLREQUEST._serialized_end=65765 + _GETPERSISTEDSCALEATTRIBUTEBOOLRESPONSE._serialized_start=65767 + _GETPERSISTEDSCALEATTRIBUTEBOOLRESPONSE._serialized_end=65838 + _GETPERSISTEDSCALEATTRIBUTESTRINGREQUEST._serialized_start=65841 + _GETPERSISTEDSCALEATTRIBUTESTRINGREQUEST._serialized_end=66011 + _GETPERSISTEDSCALEATTRIBUTESTRINGRESPONSE._serialized_start=66013 + _GETPERSISTEDSCALEATTRIBUTESTRINGRESPONSE._serialized_end=66086 + _GETPERSISTEDTASKATTRIBUTEBOOLREQUEST._serialized_start=66089 + _GETPERSISTEDTASKATTRIBUTEBOOLREQUEST._serialized_end=66252 + _GETPERSISTEDTASKATTRIBUTEBOOLRESPONSE._serialized_start=66254 + _GETPERSISTEDTASKATTRIBUTEBOOLRESPONSE._serialized_end=66324 + _GETPERSISTEDTASKATTRIBUTESTRINGREQUEST._serialized_start=66327 + _GETPERSISTEDTASKATTRIBUTESTRINGREQUEST._serialized_end=66494 + _GETPERSISTEDTASKATTRIBUTESTRINGRESPONSE._serialized_start=66496 + _GETPERSISTEDTASKATTRIBUTESTRINGRESPONSE._serialized_end=66568 + _GETPHYSICALCHANATTRIBUTEBOOLREQUEST._serialized_start=66571 + _GETPHYSICALCHANATTRIBUTEBOOLREQUEST._serialized_end=66742 + _GETPHYSICALCHANATTRIBUTEBOOLRESPONSE._serialized_start=66744 + _GETPHYSICALCHANATTRIBUTEBOOLRESPONSE._serialized_end=66813 + _GETPHYSICALCHANATTRIBUTEBYTESREQUEST._serialized_start=66816 + _GETPHYSICALCHANATTRIBUTEBYTESREQUEST._serialized_end=66989 + _GETPHYSICALCHANATTRIBUTEBYTESRESPONSE._serialized_start=66991 + _GETPHYSICALCHANATTRIBUTEBYTESRESPONSE._serialized_end=67061 + _GETPHYSICALCHANATTRIBUTEDOUBLEREQUEST._serialized_start=67064 + _GETPHYSICALCHANATTRIBUTEDOUBLEREQUEST._serialized_end=67239 + _GETPHYSICALCHANATTRIBUTEDOUBLERESPONSE._serialized_start=67241 + _GETPHYSICALCHANATTRIBUTEDOUBLERESPONSE._serialized_end=67312 + _GETPHYSICALCHANATTRIBUTEDOUBLEARRAYREQUEST._serialized_start=67315 + _GETPHYSICALCHANATTRIBUTEDOUBLEARRAYREQUEST._serialized_end=67500 + _GETPHYSICALCHANATTRIBUTEDOUBLEARRAYRESPONSE._serialized_start=67502 + _GETPHYSICALCHANATTRIBUTEDOUBLEARRAYRESPONSE._serialized_end=67578 + _GETPHYSICALCHANATTRIBUTEINT32REQUEST._serialized_start=67581 + _GETPHYSICALCHANATTRIBUTEINT32REQUEST._serialized_end=67754 + _GETPHYSICALCHANATTRIBUTEINT32RESPONSE._serialized_start=67757 + _GETPHYSICALCHANATTRIBUTEINT32RESPONSE._serialized_end=67897 + _GETPHYSICALCHANATTRIBUTEINT32ARRAYREQUEST._serialized_start=67900 + _GETPHYSICALCHANATTRIBUTEINT32ARRAYREQUEST._serialized_end=68083 + _GETPHYSICALCHANATTRIBUTEINT32ARRAYRESPONSE._serialized_start=68086 + _GETPHYSICALCHANATTRIBUTEINT32ARRAYRESPONSE._serialized_end=68231 + _GETPHYSICALCHANATTRIBUTESTRINGREQUEST._serialized_start=68234 + _GETPHYSICALCHANATTRIBUTESTRINGREQUEST._serialized_end=68409 + _GETPHYSICALCHANATTRIBUTESTRINGRESPONSE._serialized_start=68411 + _GETPHYSICALCHANATTRIBUTESTRINGRESPONSE._serialized_end=68482 + _GETPHYSICALCHANATTRIBUTEUINT32REQUEST._serialized_start=68485 + _GETPHYSICALCHANATTRIBUTEUINT32REQUEST._serialized_end=68660 + _GETPHYSICALCHANATTRIBUTEUINT32RESPONSE._serialized_start=68662 + _GETPHYSICALCHANATTRIBUTEUINT32RESPONSE._serialized_end=68733 + _GETPHYSICALCHANATTRIBUTEUINT32ARRAYREQUEST._serialized_start=68736 + _GETPHYSICALCHANATTRIBUTEUINT32ARRAYREQUEST._serialized_end=68921 + _GETPHYSICALCHANATTRIBUTEUINT32ARRAYRESPONSE._serialized_start=68923 + _GETPHYSICALCHANATTRIBUTEUINT32ARRAYRESPONSE._serialized_end=68999 + _GETREADATTRIBUTEBOOLREQUEST._serialized_start=69002 + _GETREADATTRIBUTEBOOLREQUEST._serialized_end=69166 + _GETREADATTRIBUTEBOOLRESPONSE._serialized_start=69168 + _GETREADATTRIBUTEBOOLRESPONSE._serialized_end=69229 + _GETREADATTRIBUTEDOUBLEREQUEST._serialized_start=69232 + _GETREADATTRIBUTEDOUBLEREQUEST._serialized_end=69400 + _GETREADATTRIBUTEDOUBLERESPONSE._serialized_start=69402 + _GETREADATTRIBUTEDOUBLERESPONSE._serialized_end=69465 + _GETREADATTRIBUTEINT32REQUEST._serialized_start=69468 + _GETREADATTRIBUTEINT32REQUEST._serialized_end=69634 + _GETREADATTRIBUTEINT32RESPONSE._serialized_start=69636 + _GETREADATTRIBUTEINT32RESPONSE._serialized_end=69757 + _GETREADATTRIBUTESTRINGREQUEST._serialized_start=69760 + _GETREADATTRIBUTESTRINGREQUEST._serialized_end=69928 + _GETREADATTRIBUTESTRINGRESPONSE._serialized_start=69930 + _GETREADATTRIBUTESTRINGRESPONSE._serialized_end=69993 + _GETREADATTRIBUTEUINT32REQUEST._serialized_start=69996 + _GETREADATTRIBUTEUINT32REQUEST._serialized_end=70164 + _GETREADATTRIBUTEUINT32RESPONSE._serialized_start=70166 + _GETREADATTRIBUTEUINT32RESPONSE._serialized_end=70229 + _GETREADATTRIBUTEUINT64REQUEST._serialized_start=70232 + _GETREADATTRIBUTEUINT64REQUEST._serialized_end=70400 + _GETREADATTRIBUTEUINT64RESPONSE._serialized_start=70402 + _GETREADATTRIBUTEUINT64RESPONSE._serialized_end=70465 + _GETREALTIMEATTRIBUTEBOOLREQUEST._serialized_start=70468 + _GETREALTIMEATTRIBUTEBOOLREQUEST._serialized_end=70640 + _GETREALTIMEATTRIBUTEBOOLRESPONSE._serialized_start=70642 + _GETREALTIMEATTRIBUTEBOOLRESPONSE._serialized_end=70707 + _GETREALTIMEATTRIBUTEINT32REQUEST._serialized_start=70710 + _GETREALTIMEATTRIBUTEINT32REQUEST._serialized_end=70884 + _GETREALTIMEATTRIBUTEINT32RESPONSE._serialized_start=70887 + _GETREALTIMEATTRIBUTEINT32RESPONSE._serialized_end=71016 + _GETREALTIMEATTRIBUTEUINT32REQUEST._serialized_start=71019 + _GETREALTIMEATTRIBUTEUINT32REQUEST._serialized_end=71195 + _GETREALTIMEATTRIBUTEUINT32RESPONSE._serialized_start=71197 + _GETREALTIMEATTRIBUTEUINT32RESPONSE._serialized_end=71264 + _GETREFTRIGTIMESTAMPVALREQUEST._serialized_start=71266 + _GETREFTRIGTIMESTAMPVALREQUEST._serialized_end=71335 + _GETREFTRIGTIMESTAMPVALRESPONSE._serialized_start=71337 + _GETREFTRIGTIMESTAMPVALRESPONSE._serialized_end=71427 + _GETSCALEATTRIBUTEDOUBLEREQUEST._serialized_start=71430 + _GETSCALEATTRIBUTEDOUBLEREQUEST._serialized_end=71582 + _GETSCALEATTRIBUTEDOUBLERESPONSE._serialized_start=71584 + _GETSCALEATTRIBUTEDOUBLERESPONSE._serialized_end=71648 + _GETSCALEATTRIBUTEDOUBLEARRAYREQUEST._serialized_start=71651 + _GETSCALEATTRIBUTEDOUBLEARRAYREQUEST._serialized_end=71813 + _GETSCALEATTRIBUTEDOUBLEARRAYRESPONSE._serialized_start=71815 + _GETSCALEATTRIBUTEDOUBLEARRAYRESPONSE._serialized_end=71884 + _GETSCALEATTRIBUTEINT32REQUEST._serialized_start=71887 + _GETSCALEATTRIBUTEINT32REQUEST._serialized_end=72037 + _GETSCALEATTRIBUTEINT32RESPONSE._serialized_start=72039 + _GETSCALEATTRIBUTEINT32RESPONSE._serialized_end=72162 + _GETSCALEATTRIBUTESTRINGREQUEST._serialized_start=72165 + _GETSCALEATTRIBUTESTRINGREQUEST._serialized_end=72317 + _GETSCALEATTRIBUTESTRINGRESPONSE._serialized_start=72319 + _GETSCALEATTRIBUTESTRINGRESPONSE._serialized_end=72383 + _GETSELFCALLASTDATEANDTIMEREQUEST._serialized_start=72385 + _GETSELFCALLASTDATEANDTIMEREQUEST._serialized_end=72440 + _GETSELFCALLASTDATEANDTIMERESPONSE._serialized_start=72442 + _GETSELFCALLASTDATEANDTIMERESPONSE._serialized_end=72565 + _GETSTARTTRIGTIMESTAMPVALREQUEST._serialized_start=72567 + _GETSTARTTRIGTIMESTAMPVALREQUEST._serialized_end=72638 + _GETSTARTTRIGTIMESTAMPVALRESPONSE._serialized_start=72640 + _GETSTARTTRIGTIMESTAMPVALRESPONSE._serialized_end=72732 + _GETSTARTTRIGTRIGWHENREQUEST._serialized_start=72734 + _GETSTARTTRIGTRIGWHENREQUEST._serialized_end=72801 + _GETSTARTTRIGTRIGWHENRESPONSE._serialized_start=72803 + _GETSTARTTRIGTRIGWHENRESPONSE._serialized_end=72891 + _GETSYNCPULSETIMEWHENREQUEST._serialized_start=72893 + _GETSYNCPULSETIMEWHENREQUEST._serialized_end=72960 + _GETSYNCPULSETIMEWHENRESPONSE._serialized_start=72962 + _GETSYNCPULSETIMEWHENRESPONSE._serialized_end=73050 + _GETSYSTEMINFOATTRIBUTESTRINGREQUEST._serialized_start=73053 + _GETSYSTEMINFOATTRIBUTESTRINGREQUEST._serialized_end=73191 + _GETSYSTEMINFOATTRIBUTESTRINGRESPONSE._serialized_start=73193 + _GETSYSTEMINFOATTRIBUTESTRINGRESPONSE._serialized_end=73262 + _GETSYSTEMINFOATTRIBUTEUINT32REQUEST._serialized_start=73265 + _GETSYSTEMINFOATTRIBUTEUINT32REQUEST._serialized_end=73403 + _GETSYSTEMINFOATTRIBUTEUINT32RESPONSE._serialized_start=73405 + _GETSYSTEMINFOATTRIBUTEUINT32RESPONSE._serialized_end=73474 + _GETTASKATTRIBUTEBOOLREQUEST._serialized_start=73477 + _GETTASKATTRIBUTEBOOLREQUEST._serialized_end=73641 + _GETTASKATTRIBUTEBOOLRESPONSE._serialized_start=73643 + _GETTASKATTRIBUTEBOOLRESPONSE._serialized_end=73704 + _GETTASKATTRIBUTESTRINGREQUEST._serialized_start=73707 + _GETTASKATTRIBUTESTRINGREQUEST._serialized_end=73875 + _GETTASKATTRIBUTESTRINGRESPONSE._serialized_start=73877 + _GETTASKATTRIBUTESTRINGRESPONSE._serialized_end=73940 + _GETTASKATTRIBUTEUINT32REQUEST._serialized_start=73943 + _GETTASKATTRIBUTEUINT32REQUEST._serialized_end=74111 + _GETTASKATTRIBUTEUINT32RESPONSE._serialized_start=74113 + _GETTASKATTRIBUTEUINT32RESPONSE._serialized_end=74176 + _GETTIMINGATTRIBUTEBOOLREQUEST._serialized_start=74179 + _GETTIMINGATTRIBUTEBOOLREQUEST._serialized_end=74347 + _GETTIMINGATTRIBUTEBOOLRESPONSE._serialized_start=74349 + _GETTIMINGATTRIBUTEBOOLRESPONSE._serialized_end=74412 + _GETTIMINGATTRIBUTEDOUBLEREQUEST._serialized_start=74415 + _GETTIMINGATTRIBUTEDOUBLEREQUEST._serialized_end=74587 + _GETTIMINGATTRIBUTEDOUBLERESPONSE._serialized_start=74589 + _GETTIMINGATTRIBUTEDOUBLERESPONSE._serialized_end=74654 + _GETTIMINGATTRIBUTEEXBOOLREQUEST._serialized_start=74657 + _GETTIMINGATTRIBUTEEXBOOLREQUEST._serialized_end=74849 + _GETTIMINGATTRIBUTEEXBOOLRESPONSE._serialized_start=74851 + _GETTIMINGATTRIBUTEEXBOOLRESPONSE._serialized_end=74916 + _GETTIMINGATTRIBUTEEXDOUBLEREQUEST._serialized_start=74919 + _GETTIMINGATTRIBUTEEXDOUBLEREQUEST._serialized_end=75115 + _GETTIMINGATTRIBUTEEXDOUBLERESPONSE._serialized_start=75117 + _GETTIMINGATTRIBUTEEXDOUBLERESPONSE._serialized_end=75184 + _GETTIMINGATTRIBUTEEXINT32REQUEST._serialized_start=75187 + _GETTIMINGATTRIBUTEEXINT32REQUEST._serialized_end=75381 + _GETTIMINGATTRIBUTEEXINT32RESPONSE._serialized_start=75383 + _GETTIMINGATTRIBUTEEXINT32RESPONSE._serialized_end=75510 + _GETTIMINGATTRIBUTEEXSTRINGREQUEST._serialized_start=75513 + _GETTIMINGATTRIBUTEEXSTRINGREQUEST._serialized_end=75709 + _GETTIMINGATTRIBUTEEXSTRINGRESPONSE._serialized_start=75711 + _GETTIMINGATTRIBUTEEXSTRINGRESPONSE._serialized_end=75778 + _GETTIMINGATTRIBUTEEXTIMESTAMPREQUEST._serialized_start=75781 + _GETTIMINGATTRIBUTEEXTIMESTAMPREQUEST._serialized_end=75983 + _GETTIMINGATTRIBUTEEXTIMESTAMPRESPONSE._serialized_start=75985 + _GETTIMINGATTRIBUTEEXTIMESTAMPRESPONSE._serialized_end=76083 + _GETTIMINGATTRIBUTEEXUINT32REQUEST._serialized_start=76086 + _GETTIMINGATTRIBUTEEXUINT32REQUEST._serialized_end=76282 + _GETTIMINGATTRIBUTEEXUINT32RESPONSE._serialized_start=76284 + _GETTIMINGATTRIBUTEEXUINT32RESPONSE._serialized_end=76351 + _GETTIMINGATTRIBUTEEXUINT64REQUEST._serialized_start=76354 + _GETTIMINGATTRIBUTEEXUINT64REQUEST._serialized_end=76550 + _GETTIMINGATTRIBUTEEXUINT64RESPONSE._serialized_start=76552 + _GETTIMINGATTRIBUTEEXUINT64RESPONSE._serialized_end=76619 + _GETTIMINGATTRIBUTEINT32REQUEST._serialized_start=76622 + _GETTIMINGATTRIBUTEINT32REQUEST._serialized_end=76792 + _GETTIMINGATTRIBUTEINT32RESPONSE._serialized_start=76794 + _GETTIMINGATTRIBUTEINT32RESPONSE._serialized_end=76919 + _GETTIMINGATTRIBUTESTRINGREQUEST._serialized_start=76922 + _GETTIMINGATTRIBUTESTRINGREQUEST._serialized_end=77094 + _GETTIMINGATTRIBUTESTRINGRESPONSE._serialized_start=77096 + _GETTIMINGATTRIBUTESTRINGRESPONSE._serialized_end=77161 + _GETTIMINGATTRIBUTETIMESTAMPREQUEST._serialized_start=77164 + _GETTIMINGATTRIBUTETIMESTAMPREQUEST._serialized_end=77342 + _GETTIMINGATTRIBUTETIMESTAMPRESPONSE._serialized_start=77344 + _GETTIMINGATTRIBUTETIMESTAMPRESPONSE._serialized_end=77440 + _GETTIMINGATTRIBUTEUINT32REQUEST._serialized_start=77443 + _GETTIMINGATTRIBUTEUINT32REQUEST._serialized_end=77615 + _GETTIMINGATTRIBUTEUINT32RESPONSE._serialized_start=77617 + _GETTIMINGATTRIBUTEUINT32RESPONSE._serialized_end=77682 + _GETTIMINGATTRIBUTEUINT64REQUEST._serialized_start=77685 + _GETTIMINGATTRIBUTEUINT64REQUEST._serialized_end=77857 + _GETTIMINGATTRIBUTEUINT64RESPONSE._serialized_start=77859 + _GETTIMINGATTRIBUTEUINT64RESPONSE._serialized_end=77924 + _GETTRIGATTRIBUTEBOOLREQUEST._serialized_start=77927 + _GETTRIGATTRIBUTEBOOLREQUEST._serialized_end=78094 + _GETTRIGATTRIBUTEBOOLRESPONSE._serialized_start=78096 + _GETTRIGATTRIBUTEBOOLRESPONSE._serialized_end=78157 + _GETTRIGATTRIBUTEDOUBLEREQUEST._serialized_start=78160 + _GETTRIGATTRIBUTEDOUBLEREQUEST._serialized_end=78331 + _GETTRIGATTRIBUTEDOUBLERESPONSE._serialized_start=78333 + _GETTRIGATTRIBUTEDOUBLERESPONSE._serialized_end=78396 + _GETTRIGATTRIBUTEDOUBLEARRAYREQUEST._serialized_start=78399 + _GETTRIGATTRIBUTEDOUBLEARRAYREQUEST._serialized_end=78580 + _GETTRIGATTRIBUTEDOUBLEARRAYRESPONSE._serialized_start=78582 + _GETTRIGATTRIBUTEDOUBLEARRAYRESPONSE._serialized_end=78650 + _GETTRIGATTRIBUTEINT32REQUEST._serialized_start=78653 + _GETTRIGATTRIBUTEINT32REQUEST._serialized_end=78822 + _GETTRIGATTRIBUTEINT32RESPONSE._serialized_start=78824 + _GETTRIGATTRIBUTEINT32RESPONSE._serialized_end=78948 + _GETTRIGATTRIBUTEINT32ARRAYREQUEST._serialized_start=78951 + _GETTRIGATTRIBUTEINT32ARRAYREQUEST._serialized_end=79130 + _GETTRIGATTRIBUTEINT32ARRAYRESPONSE._serialized_start=79133 + _GETTRIGATTRIBUTEINT32ARRAYRESPONSE._serialized_end=79262 + _GETTRIGATTRIBUTESTRINGREQUEST._serialized_start=79265 + _GETTRIGATTRIBUTESTRINGREQUEST._serialized_end=79436 + _GETTRIGATTRIBUTESTRINGRESPONSE._serialized_start=79438 + _GETTRIGATTRIBUTESTRINGRESPONSE._serialized_end=79501 + _GETTRIGATTRIBUTETIMESTAMPREQUEST._serialized_start=79504 + _GETTRIGATTRIBUTETIMESTAMPREQUEST._serialized_end=79681 + _GETTRIGATTRIBUTETIMESTAMPRESPONSE._serialized_start=79683 + _GETTRIGATTRIBUTETIMESTAMPRESPONSE._serialized_end=79777 + _GETTRIGATTRIBUTEUINT32REQUEST._serialized_start=79780 + _GETTRIGATTRIBUTEUINT32REQUEST._serialized_end=79951 + _GETTRIGATTRIBUTEUINT32RESPONSE._serialized_start=79953 + _GETTRIGATTRIBUTEUINT32RESPONSE._serialized_end=80016 + _GETWATCHDOGATTRIBUTEBOOLREQUEST._serialized_start=80019 + _GETWATCHDOGATTRIBUTEBOOLREQUEST._serialized_end=80206 + _GETWATCHDOGATTRIBUTEBOOLRESPONSE._serialized_start=80208 + _GETWATCHDOGATTRIBUTEBOOLRESPONSE._serialized_end=80273 + _GETWATCHDOGATTRIBUTEDOUBLEREQUEST._serialized_start=80276 + _GETWATCHDOGATTRIBUTEDOUBLEREQUEST._serialized_end=80467 + _GETWATCHDOGATTRIBUTEDOUBLERESPONSE._serialized_start=80469 + _GETWATCHDOGATTRIBUTEDOUBLERESPONSE._serialized_end=80536 + _GETWATCHDOGATTRIBUTEINT32REQUEST._serialized_start=80539 + _GETWATCHDOGATTRIBUTEINT32REQUEST._serialized_end=80728 + _GETWATCHDOGATTRIBUTEINT32RESPONSE._serialized_start=80731 + _GETWATCHDOGATTRIBUTEINT32RESPONSE._serialized_end=80860 + _GETWATCHDOGATTRIBUTESTRINGREQUEST._serialized_start=80863 + _GETWATCHDOGATTRIBUTESTRINGREQUEST._serialized_end=81054 + _GETWATCHDOGATTRIBUTESTRINGRESPONSE._serialized_start=81056 + _GETWATCHDOGATTRIBUTESTRINGRESPONSE._serialized_end=81123 + _GETWRITEATTRIBUTEBOOLREQUEST._serialized_start=81126 + _GETWRITEATTRIBUTEBOOLREQUEST._serialized_end=81292 + _GETWRITEATTRIBUTEBOOLRESPONSE._serialized_start=81294 + _GETWRITEATTRIBUTEBOOLRESPONSE._serialized_end=81356 + _GETWRITEATTRIBUTEDOUBLEREQUEST._serialized_start=81359 + _GETWRITEATTRIBUTEDOUBLEREQUEST._serialized_end=81529 + _GETWRITEATTRIBUTEDOUBLERESPONSE._serialized_start=81531 + _GETWRITEATTRIBUTEDOUBLERESPONSE._serialized_end=81595 + _GETWRITEATTRIBUTEINT32REQUEST._serialized_start=81598 + _GETWRITEATTRIBUTEINT32REQUEST._serialized_end=81766 + _GETWRITEATTRIBUTEINT32RESPONSE._serialized_start=81768 + _GETWRITEATTRIBUTEINT32RESPONSE._serialized_end=81891 + _GETWRITEATTRIBUTESTRINGREQUEST._serialized_start=81894 + _GETWRITEATTRIBUTESTRINGREQUEST._serialized_end=82064 + _GETWRITEATTRIBUTESTRINGRESPONSE._serialized_start=82066 + _GETWRITEATTRIBUTESTRINGRESPONSE._serialized_end=82130 + _GETWRITEATTRIBUTEUINT32REQUEST._serialized_start=82133 + _GETWRITEATTRIBUTEUINT32REQUEST._serialized_end=82303 + _GETWRITEATTRIBUTEUINT32RESPONSE._serialized_start=82305 + _GETWRITEATTRIBUTEUINT32RESPONSE._serialized_end=82369 + _GETWRITEATTRIBUTEUINT64REQUEST._serialized_start=82372 + _GETWRITEATTRIBUTEUINT64REQUEST._serialized_end=82542 + _GETWRITEATTRIBUTEUINT64RESPONSE._serialized_start=82544 + _GETWRITEATTRIBUTEUINT64RESPONSE._serialized_end=82608 + _ISTASKDONEREQUEST._serialized_start=82610 + _ISTASKDONEREQUEST._serialized_end=82667 + _ISTASKDONERESPONSE._serialized_start=82669 + _ISTASKDONERESPONSE._serialized_end=82727 + _LOADTASKREQUEST._serialized_start=82729 + _LOADTASKREQUEST._serialized_end=82847 + _LOADTASKRESPONSE._serialized_start=82849 + _LOADTASKRESPONSE._serialized_end=82954 + _PERFORMBRIDGEOFFSETNULLINGCALEXREQUEST._serialized_start=82957 + _PERFORMBRIDGEOFFSETNULLINGCALEXREQUEST._serialized_end=83087 + _PERFORMBRIDGEOFFSETNULLINGCALEXRESPONSE._serialized_start=83089 + _PERFORMBRIDGEOFFSETNULLINGCALEXRESPONSE._serialized_end=83146 + _PERFORMBRIDGESHUNTCALEXREQUEST._serialized_start=83149 + _PERFORMBRIDGESHUNTCALEXREQUEST._serialized_end=83730 + _PERFORMBRIDGESHUNTCALEXRESPONSE._serialized_start=83732 + _PERFORMBRIDGESHUNTCALEXRESPONSE._serialized_end=83781 + _PERFORMSTRAINSHUNTCALEXREQUEST._serialized_start=83784 + _PERFORMSTRAINSHUNTCALEXREQUEST._serialized_end=84338 + _PERFORMSTRAINSHUNTCALEXRESPONSE._serialized_start=84340 + _PERFORMSTRAINSHUNTCALEXRESPONSE._serialized_end=84389 + _PERFORMTHRMCPLLEADOFFSETNULLINGCALREQUEST._serialized_start=84392 + _PERFORMTHRMCPLLEADOFFSETNULLINGCALREQUEST._serialized_end=84525 + _PERFORMTHRMCPLLEADOFFSETNULLINGCALRESPONSE._serialized_start=84527 + _PERFORMTHRMCPLLEADOFFSETNULLINGCALRESPONSE._serialized_end=84587 + _READANALOGF64REQUEST._serialized_start=84590 + _READANALOGF64REQUEST._serialized_end=84811 + _READANALOGF64RESPONSE._serialized_start=84813 + _READANALOGF64RESPONSE._serialized_end=84901 + _BEGINREADANALOGF64REQUEST._serialized_start=84904 + _BEGINREADANALOGF64REQUEST._serialized_end=85130 + _BEGINREADANALOGF64RESPONSE._serialized_start=85132 + _BEGINREADANALOGF64RESPONSE._serialized_end=85220 + _MONIKERREADANALOGF64RESPONSE._serialized_start=85222 + _MONIKERREADANALOGF64RESPONSE._serialized_end=85317 + _READANALOGSCALARF64REQUEST._serialized_start=85319 + _READANALOGSCALARF64REQUEST._serialized_end=85402 + _READANALOGSCALARF64RESPONSE._serialized_start=85404 + _READANALOGSCALARF64RESPONSE._serialized_end=85464 + _BEGINREADANALOGSCALARF64REQUEST._serialized_start=85466 + _BEGINREADANALOGSCALARF64REQUEST._serialized_end=85554 + _BEGINREADANALOGSCALARF64RESPONSE._serialized_start=85556 + _BEGINREADANALOGSCALARF64RESPONSE._serialized_end=85650 + _MONIKERREADANALOGSCALARF64RESPONSE._serialized_start=85652 + _MONIKERREADANALOGSCALARF64RESPONSE._serialized_end=85719 + _READBINARYI16REQUEST._serialized_start=85722 + _READBINARYI16REQUEST._serialized_end=85943 + _READBINARYI16RESPONSE._serialized_start=85945 + _READBINARYI16RESPONSE._serialized_end=86033 + _BEGINREADBINARYI16REQUEST._serialized_start=86036 + _BEGINREADBINARYI16REQUEST._serialized_end=86262 + _BEGINREADBINARYI16RESPONSE._serialized_start=86264 + _BEGINREADBINARYI16RESPONSE._serialized_end=86352 + _MONIKERREADBINARYI16RESPONSE._serialized_start=86354 + _MONIKERREADBINARYI16RESPONSE._serialized_end=86449 + _READBINARYI32REQUEST._serialized_start=86452 + _READBINARYI32REQUEST._serialized_end=86673 + _READBINARYI32RESPONSE._serialized_start=86675 + _READBINARYI32RESPONSE._serialized_end=86763 + _BEGINREADBINARYI32REQUEST._serialized_start=86766 + _BEGINREADBINARYI32REQUEST._serialized_end=86992 + _BEGINREADBINARYI32RESPONSE._serialized_start=86994 + _BEGINREADBINARYI32RESPONSE._serialized_end=87082 + _MONIKERREADBINARYI32RESPONSE._serialized_start=87084 + _MONIKERREADBINARYI32RESPONSE._serialized_end=87179 + _READBINARYU16REQUEST._serialized_start=87182 + _READBINARYU16REQUEST._serialized_end=87403 + _READBINARYU16RESPONSE._serialized_start=87405 + _READBINARYU16RESPONSE._serialized_end=87493 + _BEGINREADBINARYU16REQUEST._serialized_start=87496 + _BEGINREADBINARYU16REQUEST._serialized_end=87722 + _BEGINREADBINARYU16RESPONSE._serialized_start=87724 + _BEGINREADBINARYU16RESPONSE._serialized_end=87812 + _MONIKERREADBINARYU16RESPONSE._serialized_start=87814 + _MONIKERREADBINARYU16RESPONSE._serialized_end=87909 + _READBINARYU32REQUEST._serialized_start=87912 + _READBINARYU32REQUEST._serialized_end=88133 + _READBINARYU32RESPONSE._serialized_start=88135 + _READBINARYU32RESPONSE._serialized_end=88223 + _BEGINREADBINARYU32REQUEST._serialized_start=88226 + _BEGINREADBINARYU32REQUEST._serialized_end=88452 + _BEGINREADBINARYU32RESPONSE._serialized_start=88454 + _BEGINREADBINARYU32RESPONSE._serialized_end=88542 + _MONIKERREADBINARYU32RESPONSE._serialized_start=88544 + _MONIKERREADBINARYU32RESPONSE._serialized_end=88639 + _READCOUNTERF64REQUEST._serialized_start=88642 + _READCOUNTERF64REQUEST._serialized_end=88777 + _READCOUNTERF64RESPONSE._serialized_start=88779 + _READCOUNTERF64RESPONSE._serialized_end=88868 + _BEGINREADCOUNTERF64REQUEST._serialized_start=88871 + _BEGINREADCOUNTERF64REQUEST._serialized_end=89011 + _BEGINREADCOUNTERF64RESPONSE._serialized_start=89013 + _BEGINREADCOUNTERF64RESPONSE._serialized_end=89102 + _MONIKERREADCOUNTERF64RESPONSE._serialized_start=89104 + _MONIKERREADCOUNTERF64RESPONSE._serialized_end=89200 + _READCOUNTERF64EXREQUEST._serialized_start=89203 + _READCOUNTERF64EXREQUEST._serialized_end=89427 + _READCOUNTERF64EXRESPONSE._serialized_start=89429 + _READCOUNTERF64EXRESPONSE._serialized_end=89520 + _BEGINREADCOUNTERF64EXREQUEST._serialized_start=89523 + _BEGINREADCOUNTERF64EXREQUEST._serialized_end=89752 + _BEGINREADCOUNTERF64EXRESPONSE._serialized_start=89754 + _BEGINREADCOUNTERF64EXRESPONSE._serialized_end=89845 + _MONIKERREADCOUNTERF64EXRESPONSE._serialized_start=89847 + _MONIKERREADCOUNTERF64EXRESPONSE._serialized_end=89945 + _READCOUNTERSCALARF64REQUEST._serialized_start=89947 + _READCOUNTERSCALARF64REQUEST._serialized_end=90031 + _READCOUNTERSCALARF64RESPONSE._serialized_start=90033 + _READCOUNTERSCALARF64RESPONSE._serialized_end=90094 + _BEGINREADCOUNTERSCALARF64REQUEST._serialized_start=90096 + _BEGINREADCOUNTERSCALARF64REQUEST._serialized_end=90185 + _BEGINREADCOUNTERSCALARF64RESPONSE._serialized_start=90187 + _BEGINREADCOUNTERSCALARF64RESPONSE._serialized_end=90282 + _MONIKERREADCOUNTERSCALARF64RESPONSE._serialized_start=90284 + _MONIKERREADCOUNTERSCALARF64RESPONSE._serialized_end=90352 + _READCOUNTERSCALARU32REQUEST._serialized_start=90354 + _READCOUNTERSCALARU32REQUEST._serialized_end=90438 + _READCOUNTERSCALARU32RESPONSE._serialized_start=90440 + _READCOUNTERSCALARU32RESPONSE._serialized_end=90501 + _BEGINREADCOUNTERSCALARU32REQUEST._serialized_start=90503 + _BEGINREADCOUNTERSCALARU32REQUEST._serialized_end=90592 + _BEGINREADCOUNTERSCALARU32RESPONSE._serialized_start=90594 + _BEGINREADCOUNTERSCALARU32RESPONSE._serialized_end=90689 + _MONIKERREADCOUNTERSCALARU32RESPONSE._serialized_start=90691 + _MONIKERREADCOUNTERSCALARU32RESPONSE._serialized_end=90759 + _READCOUNTERU32REQUEST._serialized_start=90762 + _READCOUNTERU32REQUEST._serialized_end=90897 + _READCOUNTERU32RESPONSE._serialized_start=90899 + _READCOUNTERU32RESPONSE._serialized_end=90988 + _BEGINREADCOUNTERU32REQUEST._serialized_start=90991 + _BEGINREADCOUNTERU32REQUEST._serialized_end=91131 + _BEGINREADCOUNTERU32RESPONSE._serialized_start=91133 + _BEGINREADCOUNTERU32RESPONSE._serialized_end=91222 + _MONIKERREADCOUNTERU32RESPONSE._serialized_start=91224 + _MONIKERREADCOUNTERU32RESPONSE._serialized_end=91320 + _READCOUNTERU32EXREQUEST._serialized_start=91323 + _READCOUNTERU32EXREQUEST._serialized_end=91547 + _READCOUNTERU32EXRESPONSE._serialized_start=91549 + _READCOUNTERU32EXRESPONSE._serialized_end=91640 + _BEGINREADCOUNTERU32EXREQUEST._serialized_start=91643 + _BEGINREADCOUNTERU32EXREQUEST._serialized_end=91872 + _BEGINREADCOUNTERU32EXRESPONSE._serialized_start=91874 + _BEGINREADCOUNTERU32EXRESPONSE._serialized_end=91965 + _MONIKERREADCOUNTERU32EXRESPONSE._serialized_start=91967 + _MONIKERREADCOUNTERU32EXRESPONSE._serialized_end=92065 + _READCTRFREQREQUEST._serialized_start=92068 + _READCTRFREQREQUEST._serialized_end=92293 + _READCTRFREQRESPONSE._serialized_start=92295 + _READCTRFREQRESPONSE._serialized_end=92422 + _BEGINREADCTRFREQREQUEST._serialized_start=92425 + _BEGINREADCTRFREQREQUEST._serialized_end=92655 + _BEGINREADCTRFREQRESPONSE._serialized_start=92657 + _BEGINREADCTRFREQRESPONSE._serialized_end=92743 + _MONIKERREADCTRFREQRESPONSE._serialized_start=92746 + _MONIKERREADCTRFREQRESPONSE._serialized_end=92880 + _READCTRFREQSCALARREQUEST._serialized_start=92882 + _READCTRFREQSCALARREQUEST._serialized_end=92963 + _READCTRFREQSCALARRESPONSE._serialized_start=92965 + _READCTRFREQSCALARRESPONSE._serialized_end=93047 + _BEGINREADCTRFREQSCALARREQUEST._serialized_start=93049 + _BEGINREADCTRFREQSCALARREQUEST._serialized_end=93135 + _BEGINREADCTRFREQSCALARRESPONSE._serialized_start=93137 + _BEGINREADCTRFREQSCALARRESPONSE._serialized_end=93229 + _MONIKERREADCTRFREQSCALARRESPONSE._serialized_start=93231 + _MONIKERREADCTRFREQSCALARRESPONSE._serialized_end=93320 + _READCTRTICKSREQUEST._serialized_start=93323 + _READCTRTICKSREQUEST._serialized_end=93549 + _READCTRTICKSRESPONSE._serialized_start=93552 + _READCTRTICKSRESPONSE._serialized_end=93680 + _BEGINREADCTRTICKSREQUEST._serialized_start=93683 + _BEGINREADCTRTICKSREQUEST._serialized_end=93914 + _BEGINREADCTRTICKSRESPONSE._serialized_start=93916 + _BEGINREADCTRTICKSRESPONSE._serialized_end=94003 + _MONIKERREADCTRTICKSRESPONSE._serialized_start=94006 + _MONIKERREADCTRTICKSRESPONSE._serialized_end=94141 + _READCTRTICKSSCALARREQUEST._serialized_start=94143 + _READCTRTICKSSCALARREQUEST._serialized_end=94225 + _READCTRTICKSSCALARRESPONSE._serialized_start=94227 + _READCTRTICKSSCALARRESPONSE._serialized_end=94310 + _BEGINREADCTRTICKSSCALARREQUEST._serialized_start=94312 + _BEGINREADCTRTICKSSCALARREQUEST._serialized_end=94399 + _BEGINREADCTRTICKSSCALARRESPONSE._serialized_start=94401 + _BEGINREADCTRTICKSSCALARRESPONSE._serialized_end=94494 + _MONIKERREADCTRTICKSSCALARRESPONSE._serialized_start=94496 + _MONIKERREADCTRTICKSSCALARRESPONSE._serialized_end=94586 + _READCTRTIMEREQUEST._serialized_start=94589 + _READCTRTIMEREQUEST._serialized_end=94814 + _READCTRTIMERESPONSE._serialized_start=94816 + _READCTRTIMERESPONSE._serialized_end=94941 + _BEGINREADCTRTIMEREQUEST._serialized_start=94944 + _BEGINREADCTRTIMEREQUEST._serialized_end=95174 + _BEGINREADCTRTIMERESPONSE._serialized_start=95176 + _BEGINREADCTRTIMERESPONSE._serialized_end=95262 + _MONIKERREADCTRTIMERESPONSE._serialized_start=95265 + _MONIKERREADCTRTIMERESPONSE._serialized_end=95397 + _READCTRTIMESCALARREQUEST._serialized_start=95399 + _READCTRTIMESCALARREQUEST._serialized_end=95480 + _READCTRTIMESCALARRESPONSE._serialized_start=95482 + _READCTRTIMESCALARRESPONSE._serialized_end=95562 + _BEGINREADCTRTIMESCALARREQUEST._serialized_start=95564 + _BEGINREADCTRTIMESCALARREQUEST._serialized_end=95650 + _BEGINREADCTRTIMESCALARRESPONSE._serialized_start=95652 + _BEGINREADCTRTIMESCALARRESPONSE._serialized_end=95744 + _MONIKERREADCTRTIMESCALARRESPONSE._serialized_start=95746 + _MONIKERREADCTRTIMESCALARRESPONSE._serialized_end=95833 + _READDIGITALLINESREQUEST._serialized_start=95836 + _READDIGITALLINESREQUEST._serialized_end=96060 + _READDIGITALLINESRESPONSE._serialized_start=96062 + _READDIGITALLINESRESPONSE._serialized_end=96181 + _BEGINREADDIGITALLINESREQUEST._serialized_start=96184 + _BEGINREADDIGITALLINESREQUEST._serialized_end=96413 + _BEGINREADDIGITALLINESRESPONSE._serialized_start=96415 + _BEGINREADDIGITALLINESRESPONSE._serialized_end=96534 + _MONIKERREADDIGITALLINESRESPONSE._serialized_start=96536 + _MONIKERREADDIGITALLINESRESPONSE._serialized_end=96662 + _READDIGITALSCALARU32REQUEST._serialized_start=96664 + _READDIGITALSCALARU32REQUEST._serialized_end=96748 + _READDIGITALSCALARU32RESPONSE._serialized_start=96750 + _READDIGITALSCALARU32RESPONSE._serialized_end=96811 + _BEGINREADDIGITALSCALARU32REQUEST._serialized_start=96813 + _BEGINREADDIGITALSCALARU32REQUEST._serialized_end=96902 + _BEGINREADDIGITALSCALARU32RESPONSE._serialized_start=96904 + _BEGINREADDIGITALSCALARU32RESPONSE._serialized_end=96999 + _MONIKERREADDIGITALSCALARU32RESPONSE._serialized_start=97001 + _MONIKERREADDIGITALSCALARU32RESPONSE._serialized_end=97069 + _READDIGITALU16REQUEST._serialized_start=97072 + _READDIGITALU16REQUEST._serialized_end=97294 + _READDIGITALU16RESPONSE._serialized_start=97296 + _READDIGITALU16RESPONSE._serialized_end=97385 + _BEGINREADDIGITALU16REQUEST._serialized_start=97388 + _BEGINREADDIGITALU16REQUEST._serialized_end=97615 + _BEGINREADDIGITALU16RESPONSE._serialized_start=97617 + _BEGINREADDIGITALU16RESPONSE._serialized_end=97706 + _MONIKERREADDIGITALU16RESPONSE._serialized_start=97708 + _MONIKERREADDIGITALU16RESPONSE._serialized_end=97804 + _READDIGITALU32REQUEST._serialized_start=97807 + _READDIGITALU32REQUEST._serialized_end=98029 + _READDIGITALU32RESPONSE._serialized_start=98031 + _READDIGITALU32RESPONSE._serialized_end=98120 + _BEGINREADDIGITALU32REQUEST._serialized_start=98123 + _BEGINREADDIGITALU32REQUEST._serialized_end=98350 + _BEGINREADDIGITALU32RESPONSE._serialized_start=98352 + _BEGINREADDIGITALU32RESPONSE._serialized_end=98441 + _MONIKERREADDIGITALU32RESPONSE._serialized_start=98443 + _MONIKERREADDIGITALU32RESPONSE._serialized_end=98539 + _READDIGITALU8REQUEST._serialized_start=98542 + _READDIGITALU8REQUEST._serialized_end=98763 + _READDIGITALU8RESPONSE._serialized_start=98765 + _READDIGITALU8RESPONSE._serialized_end=98853 + _BEGINREADDIGITALU8REQUEST._serialized_start=98856 + _BEGINREADDIGITALU8REQUEST._serialized_end=99082 + _BEGINREADDIGITALU8RESPONSE._serialized_start=99084 + _BEGINREADDIGITALU8RESPONSE._serialized_end=99172 + _MONIKERREADDIGITALU8RESPONSE._serialized_start=99174 + _MONIKERREADDIGITALU8RESPONSE._serialized_end=99269 + _READIDPINMEMORYREQUEST._serialized_start=99271 + _READIDPINMEMORYREQUEST._serialized_end=99357 + _READIDPINMEMORYRESPONSE._serialized_start=99359 + _READIDPINMEMORYRESPONSE._serialized_end=99461 + _READPOWERBINARYI16REQUEST._serialized_start=99464 + _READPOWERBINARYI16REQUEST._serialized_end=99690 + _READPOWERBINARYI16RESPONSE._serialized_start=99693 + _READPOWERBINARYI16RESPONSE._serialized_end=99822 + _BEGINREADPOWERBINARYI16REQUEST._serialized_start=99825 + _BEGINREADPOWERBINARYI16REQUEST._serialized_end=100056 + _BEGINREADPOWERBINARYI16RESPONSE._serialized_start=100058 + _BEGINREADPOWERBINARYI16RESPONSE._serialized_end=100151 + _MONIKERREADPOWERBINARYI16RESPONSE._serialized_start=100154 + _MONIKERREADPOWERBINARYI16RESPONSE._serialized_end=100290 + _READPOWERF64REQUEST._serialized_start=100293 + _READPOWERF64REQUEST._serialized_end=100513 + _READPOWERF64RESPONSE._serialized_start=100515 + _READPOWERF64RESPONSE._serialized_end=100638 + _BEGINREADPOWERF64REQUEST._serialized_start=100641 + _BEGINREADPOWERF64REQUEST._serialized_end=100866 + _BEGINREADPOWERF64RESPONSE._serialized_start=100868 + _BEGINREADPOWERF64RESPONSE._serialized_end=100955 + _MONIKERREADPOWERF64RESPONSE._serialized_start=100958 + _MONIKERREADPOWERF64RESPONSE._serialized_end=101088 + _READPOWERSCALARF64REQUEST._serialized_start=101090 + _READPOWERSCALARF64REQUEST._serialized_end=101172 + _READPOWERSCALARF64RESPONSE._serialized_start=101174 + _READPOWERSCALARF64RESPONSE._serialized_end=101252 + _BEGINREADPOWERSCALARF64REQUEST._serialized_start=101254 + _BEGINREADPOWERSCALARF64REQUEST._serialized_end=101341 + _BEGINREADPOWERSCALARF64RESPONSE._serialized_start=101343 + _BEGINREADPOWERSCALARF64RESPONSE._serialized_end=101436 + _MONIKERREADPOWERSCALARF64RESPONSE._serialized_start=101438 + _MONIKERREADPOWERSCALARF64RESPONSE._serialized_end=101523 + _READRAWREQUEST._serialized_start=101526 + _READRAWREQUEST._serialized_end=101654 + _READRAWRESPONSE._serialized_start=101656 + _READRAWRESPONSE._serialized_end=101757 + _BEGINREADRAWREQUEST._serialized_start=101760 + _BEGINREADRAWREQUEST._serialized_end=101893 + _BEGINREADRAWRESPONSE._serialized_start=101895 + _BEGINREADRAWRESPONSE._serialized_end=101977 + _MONIKERREADRAWRESPONSE._serialized_start=101979 + _MONIKERREADRAWRESPONSE._serialized_end=102087 + _REGISTERDONEEVENTREQUEST._serialized_start=102089 + _REGISTERDONEEVENTREQUEST._serialized_end=102153 + _REGISTERDONEEVENTRESPONSE._serialized_start=102155 + _REGISTERDONEEVENTRESPONSE._serialized_end=102198 + _REGISTEREVERYNSAMPLESEVENTREQUEST._serialized_start=102201 + _REGISTEREVERYNSAMPLESEVENTREQUEST._serialized_end=102446 + _REGISTEREVERYNSAMPLESEVENTRESPONSE._serialized_start=102449 + _REGISTEREVERYNSAMPLESEVENTRESPONSE._serialized_end=102634 + _REGISTERSIGNALEVENTREQUEST._serialized_start=102637 + _REGISTERSIGNALEVENTREQUEST._serialized_end=102790 + _REGISTERSIGNALEVENTRESPONSE._serialized_start=102792 + _REGISTERSIGNALEVENTRESPONSE._serialized_end=102856 + _REMOVECDAQSYNCCONNECTIONREQUEST._serialized_start=102858 + _REMOVECDAQSYNCCONNECTIONREQUEST._serialized_end=102910 + _REMOVECDAQSYNCCONNECTIONRESPONSE._serialized_start=102912 + _REMOVECDAQSYNCCONNECTIONRESPONSE._serialized_end=102962 + _RESERVENETWORKDEVICEREQUEST._serialized_start=102964 + _RESERVENETWORKDEVICEREQUEST._serialized_end=103044 + _RESERVENETWORKDEVICERESPONSE._serialized_start=103046 + _RESERVENETWORKDEVICERESPONSE._serialized_end=103092 + _RESETBUFFERATTRIBUTEREQUEST._serialized_start=103095 + _RESETBUFFERATTRIBUTEREQUEST._serialized_end=103262 + _RESETBUFFERATTRIBUTERESPONSE._serialized_start=103264 + _RESETBUFFERATTRIBUTERESPONSE._serialized_end=103310 + _RESETCHANATTRIBUTEREQUEST._serialized_start=103313 + _RESETCHANATTRIBUTEREQUEST._serialized_end=103496 + _RESETCHANATTRIBUTERESPONSE._serialized_start=103498 + _RESETCHANATTRIBUTERESPONSE._serialized_end=103542 + _RESETDEVICEREQUEST._serialized_start=103544 + _RESETDEVICEREQUEST._serialized_end=103585 + _RESETDEVICERESPONSE._serialized_start=103587 + _RESETDEVICERESPONSE._serialized_end=103624 + _RESETEXPORTEDSIGNALATTRIBUTEREQUEST._serialized_start=103627 + _RESETEXPORTEDSIGNALATTRIBUTEREQUEST._serialized_end=103808 + _RESETEXPORTEDSIGNALATTRIBUTERESPONSE._serialized_start=103810 + _RESETEXPORTEDSIGNALATTRIBUTERESPONSE._serialized_end=103864 + _RESETREADATTRIBUTEREQUEST._serialized_start=103867 + _RESETREADATTRIBUTEREQUEST._serialized_end=104030 + _RESETREADATTRIBUTERESPONSE._serialized_start=104032 + _RESETREADATTRIBUTERESPONSE._serialized_end=104076 + _RESETREALTIMEATTRIBUTEREQUEST._serialized_start=104079 + _RESETREALTIMEATTRIBUTEREQUEST._serialized_end=104250 + _RESETREALTIMEATTRIBUTERESPONSE._serialized_start=104252 + _RESETREALTIMEATTRIBUTERESPONSE._serialized_end=104300 + _RESETTIMINGATTRIBUTEREQUEST._serialized_start=104303 + _RESETTIMINGATTRIBUTEREQUEST._serialized_end=104470 + _RESETTIMINGATTRIBUTERESPONSE._serialized_start=104472 + _RESETTIMINGATTRIBUTERESPONSE._serialized_end=104518 + _RESETTIMINGATTRIBUTEEXREQUEST._serialized_start=104521 + _RESETTIMINGATTRIBUTEEXREQUEST._serialized_end=104712 + _RESETTIMINGATTRIBUTEEXRESPONSE._serialized_start=104714 + _RESETTIMINGATTRIBUTEEXRESPONSE._serialized_end=104762 + _RESETTRIGATTRIBUTEREQUEST._serialized_start=104765 + _RESETTRIGATTRIBUTEREQUEST._serialized_end=104931 + _RESETTRIGATTRIBUTERESPONSE._serialized_start=104933 + _RESETTRIGATTRIBUTERESPONSE._serialized_end=104977 + _RESETWATCHDOGATTRIBUTEREQUEST._serialized_start=104980 + _RESETWATCHDOGATTRIBUTEREQUEST._serialized_end=105166 + _RESETWATCHDOGATTRIBUTERESPONSE._serialized_start=105168 + _RESETWATCHDOGATTRIBUTERESPONSE._serialized_end=105216 + _RESETWRITEATTRIBUTEREQUEST._serialized_start=105219 + _RESETWRITEATTRIBUTEREQUEST._serialized_end=105384 + _RESETWRITEATTRIBUTERESPONSE._serialized_start=105386 + _RESETWRITEATTRIBUTERESPONSE._serialized_end=105431 + _RESTORELASTEXTCALCONSTREQUEST._serialized_start=105433 + _RESTORELASTEXTCALCONSTREQUEST._serialized_end=105485 + _RESTORELASTEXTCALCONSTRESPONSE._serialized_start=105487 + _RESTORELASTEXTCALCONSTRESPONSE._serialized_end=105535 + _SAVEGLOBALCHANREQUEST._serialized_start=105538 + _SAVEGLOBALCHANREQUEST._serialized_end=105739 + _SAVEGLOBALCHANRESPONSE._serialized_start=105741 + _SAVEGLOBALCHANRESPONSE._serialized_end=105781 + _SAVESCALEREQUEST._serialized_start=105784 + _SAVESCALEREQUEST._serialized_end=105940 + _SAVESCALERESPONSE._serialized_start=105942 + _SAVESCALERESPONSE._serialized_end=105977 + _SAVETASKREQUEST._serialized_start=105980 + _SAVETASKREQUEST._serialized_end=106153 + _SAVETASKRESPONSE._serialized_start=106155 + _SAVETASKRESPONSE._serialized_end=106189 + _SELFCALREQUEST._serialized_start=106191 + _SELFCALREQUEST._serialized_end=106228 + _SELFCALRESPONSE._serialized_start=106230 + _SELFCALRESPONSE._serialized_end=106263 + _SELFTESTDEVICEREQUEST._serialized_start=106265 + _SELFTESTDEVICEREQUEST._serialized_end=106309 + _SELFTESTDEVICERESPONSE._serialized_start=106311 + _SELFTESTDEVICERESPONSE._serialized_end=106351 + _SETAICHANCALCALDATEREQUEST._serialized_start=106354 + _SETAICHANCALCALDATEREQUEST._serialized_end=106514 + _SETAICHANCALCALDATERESPONSE._serialized_start=106516 + _SETAICHANCALCALDATERESPONSE._serialized_end=106561 + _SETAICHANCALEXPDATEREQUEST._serialized_start=106564 + _SETAICHANCALEXPDATEREQUEST._serialized_end=106724 + _SETAICHANCALEXPDATERESPONSE._serialized_start=106726 + _SETAICHANCALEXPDATERESPONSE._serialized_end=106771 + _SETANALOGPOWERUPSTATESREQUEST._serialized_start=106773 + _SETANALOGPOWERUPSTATESREQUEST._serialized_end=106895 + _SETANALOGPOWERUPSTATESRESPONSE._serialized_start=106897 + _SETANALOGPOWERUPSTATESRESPONSE._serialized_end=106945 + _SETANALOGPOWERUPSTATESWITHOUTPUTTYPEREQUEST._serialized_start=106948 + _SETANALOGPOWERUPSTATESWITHOUTPUTTYPEREQUEST._serialized_end=107099 + _SETANALOGPOWERUPSTATESWITHOUTPUTTYPERESPONSE._serialized_start=107101 + _SETANALOGPOWERUPSTATESWITHOUTPUTTYPERESPONSE._serialized_end=107163 + _SETARMSTARTTRIGTRIGWHENREQUEST._serialized_start=107165 + _SETARMSTARTTRIGTRIGWHENREQUEST._serialized_end=107277 + _SETARMSTARTTRIGTRIGWHENRESPONSE._serialized_start=107279 + _SETARMSTARTTRIGTRIGWHENRESPONSE._serialized_end=107328 + _SETBUFFERATTRIBUTEUINT32REQUEST._serialized_start=107331 + _SETBUFFERATTRIBUTEUINT32REQUEST._serialized_end=107518 + _SETBUFFERATTRIBUTEUINT32RESPONSE._serialized_start=107520 + _SETBUFFERATTRIBUTEUINT32RESPONSE._serialized_end=107570 + _SETCALINFOATTRIBUTEBOOLREQUEST._serialized_start=107573 + _SETCALINFOATTRIBUTEBOOLREQUEST._serialized_end=107749 + _SETCALINFOATTRIBUTEBOOLRESPONSE._serialized_start=107751 + _SETCALINFOATTRIBUTEBOOLRESPONSE._serialized_end=107800 + _SETCALINFOATTRIBUTEDOUBLEREQUEST._serialized_start=107803 + _SETCALINFOATTRIBUTEDOUBLEREQUEST._serialized_end=107983 + _SETCALINFOATTRIBUTEDOUBLERESPONSE._serialized_start=107985 + _SETCALINFOATTRIBUTEDOUBLERESPONSE._serialized_end=108036 + _SETCALINFOATTRIBUTESTRINGREQUEST._serialized_start=108039 + _SETCALINFOATTRIBUTESTRINGREQUEST._serialized_end=108219 + _SETCALINFOATTRIBUTESTRINGRESPONSE._serialized_start=108221 + _SETCALINFOATTRIBUTESTRINGRESPONSE._serialized_end=108272 + _SETCALINFOATTRIBUTEUINT32REQUEST._serialized_start=108275 + _SETCALINFOATTRIBUTEUINT32REQUEST._serialized_end=108455 + _SETCALINFOATTRIBUTEUINT32RESPONSE._serialized_start=108457 + _SETCALINFOATTRIBUTEUINT32RESPONSE._serialized_end=108508 + _SETCHANATTRIBUTEBOOLREQUEST._serialized_start=108511 + _SETCHANATTRIBUTEBOOLREQUEST._serialized_end=108710 + _SETCHANATTRIBUTEBOOLRESPONSE._serialized_start=108712 + _SETCHANATTRIBUTEBOOLRESPONSE._serialized_end=108758 + _SETCHANATTRIBUTEDOUBLEREQUEST._serialized_start=108761 + _SETCHANATTRIBUTEDOUBLEREQUEST._serialized_end=108964 + _SETCHANATTRIBUTEDOUBLERESPONSE._serialized_start=108966 + _SETCHANATTRIBUTEDOUBLERESPONSE._serialized_end=109014 + _SETCHANATTRIBUTEDOUBLEARRAYREQUEST._serialized_start=109017 + _SETCHANATTRIBUTEDOUBLEARRAYREQUEST._serialized_end=109230 + _SETCHANATTRIBUTEDOUBLEARRAYRESPONSE._serialized_start=109232 + _SETCHANATTRIBUTEDOUBLEARRAYRESPONSE._serialized_end=109285 + _SETCHANATTRIBUTEINT32REQUEST._serialized_start=109288 + _SETCHANATTRIBUTEINT32REQUEST._serialized_end=109569 + _SETCHANATTRIBUTEINT32RESPONSE._serialized_start=109571 + _SETCHANATTRIBUTEINT32RESPONSE._serialized_end=109618 + _SETCHANATTRIBUTESTRINGREQUEST._serialized_start=109621 + _SETCHANATTRIBUTESTRINGREQUEST._serialized_end=109824 + _SETCHANATTRIBUTESTRINGRESPONSE._serialized_start=109826 + _SETCHANATTRIBUTESTRINGRESPONSE._serialized_end=109874 + _SETCHANATTRIBUTEUINT32REQUEST._serialized_start=109877 + _SETCHANATTRIBUTEUINT32REQUEST._serialized_end=110080 + _SETCHANATTRIBUTEUINT32RESPONSE._serialized_start=110082 + _SETCHANATTRIBUTEUINT32RESPONSE._serialized_end=110130 + _SETDIGITALLOGICFAMILYPOWERUPSTATEREQUEST._serialized_start=110133 + _SETDIGITALLOGICFAMILYPOWERUPSTATEREQUEST._serialized_end=110296 + _SETDIGITALLOGICFAMILYPOWERUPSTATERESPONSE._serialized_start=110298 + _SETDIGITALLOGICFAMILYPOWERUPSTATERESPONSE._serialized_end=110357 + _SETDIGITALPOWERUPSTATESREQUEST._serialized_start=110359 + _SETDIGITALPOWERUPSTATESREQUEST._serialized_end=110483 + _SETDIGITALPOWERUPSTATESRESPONSE._serialized_start=110485 + _SETDIGITALPOWERUPSTATESRESPONSE._serialized_end=110534 + _SETDIGITALPULLUPPULLDOWNSTATESREQUEST._serialized_start=110537 + _SETDIGITALPULLUPPULLDOWNSTATESREQUEST._serialized_end=110684 + _SETDIGITALPULLUPPULLDOWNSTATESRESPONSE._serialized_start=110686 + _SETDIGITALPULLUPPULLDOWNSTATESRESPONSE._serialized_end=110742 + _SETEXPORTEDSIGNALATTRIBUTEBOOLREQUEST._serialized_start=110745 + _SETEXPORTEDSIGNALATTRIBUTEBOOLREQUEST._serialized_end=110942 + _SETEXPORTEDSIGNALATTRIBUTEBOOLRESPONSE._serialized_start=110944 + _SETEXPORTEDSIGNALATTRIBUTEBOOLRESPONSE._serialized_end=111000 + _SETEXPORTEDSIGNALATTRIBUTEDOUBLEREQUEST._serialized_start=111003 + _SETEXPORTEDSIGNALATTRIBUTEDOUBLEREQUEST._serialized_end=111204 + _SETEXPORTEDSIGNALATTRIBUTEDOUBLERESPONSE._serialized_start=111206 + _SETEXPORTEDSIGNALATTRIBUTEDOUBLERESPONSE._serialized_end=111264 + _SETEXPORTEDSIGNALATTRIBUTEINT32REQUEST._serialized_start=111267 + _SETEXPORTEDSIGNALATTRIBUTEINT32REQUEST._serialized_end=111551 + _SETEXPORTEDSIGNALATTRIBUTEINT32RESPONSE._serialized_start=111553 + _SETEXPORTEDSIGNALATTRIBUTEINT32RESPONSE._serialized_end=111610 + _SETEXPORTEDSIGNALATTRIBUTESTRINGREQUEST._serialized_start=111613 + _SETEXPORTEDSIGNALATTRIBUTESTRINGREQUEST._serialized_end=111814 + _SETEXPORTEDSIGNALATTRIBUTESTRINGRESPONSE._serialized_start=111816 + _SETEXPORTEDSIGNALATTRIBUTESTRINGRESPONSE._serialized_end=111874 + _SETEXPORTEDSIGNALATTRIBUTEUINT32REQUEST._serialized_start=111877 + _SETEXPORTEDSIGNALATTRIBUTEUINT32REQUEST._serialized_end=112078 + _SETEXPORTEDSIGNALATTRIBUTEUINT32RESPONSE._serialized_start=112080 + _SETEXPORTEDSIGNALATTRIBUTEUINT32RESPONSE._serialized_end=112138 + _SETFIRSTSAMPCLKWHENREQUEST._serialized_start=112140 + _SETFIRSTSAMPCLKWHENREQUEST._serialized_end=112248 + _SETFIRSTSAMPCLKWHENRESPONSE._serialized_start=112250 + _SETFIRSTSAMPCLKWHENRESPONSE._serialized_end=112295 + _SETREADATTRIBUTEBOOLREQUEST._serialized_start=112298 + _SETREADATTRIBUTEBOOLREQUEST._serialized_end=112477 + _SETREADATTRIBUTEBOOLRESPONSE._serialized_start=112479 + _SETREADATTRIBUTEBOOLRESPONSE._serialized_end=112525 + _SETREADATTRIBUTEDOUBLEREQUEST._serialized_start=112528 + _SETREADATTRIBUTEDOUBLEREQUEST._serialized_end=112711 + _SETREADATTRIBUTEDOUBLERESPONSE._serialized_start=112713 + _SETREADATTRIBUTEDOUBLERESPONSE._serialized_end=112761 + _SETREADATTRIBUTEINT32REQUEST._serialized_start=112764 + _SETREADATTRIBUTEINT32REQUEST._serialized_end=113022 + _SETREADATTRIBUTEINT32RESPONSE._serialized_start=113024 + _SETREADATTRIBUTEINT32RESPONSE._serialized_end=113071 + _SETREADATTRIBUTESTRINGREQUEST._serialized_start=113074 + _SETREADATTRIBUTESTRINGREQUEST._serialized_end=113257 + _SETREADATTRIBUTESTRINGRESPONSE._serialized_start=113259 + _SETREADATTRIBUTESTRINGRESPONSE._serialized_end=113307 + _SETREADATTRIBUTEUINT32REQUEST._serialized_start=113310 + _SETREADATTRIBUTEUINT32REQUEST._serialized_end=113493 + _SETREADATTRIBUTEUINT32RESPONSE._serialized_start=113495 + _SETREADATTRIBUTEUINT32RESPONSE._serialized_end=113543 + _SETREADATTRIBUTEUINT64REQUEST._serialized_start=113546 + _SETREADATTRIBUTEUINT64REQUEST._serialized_end=113729 + _SETREADATTRIBUTEUINT64RESPONSE._serialized_start=113731 + _SETREADATTRIBUTEUINT64RESPONSE._serialized_end=113779 + _SETREALTIMEATTRIBUTEBOOLREQUEST._serialized_start=113782 + _SETREALTIMEATTRIBUTEBOOLREQUEST._serialized_end=113969 + _SETREALTIMEATTRIBUTEBOOLRESPONSE._serialized_start=113971 + _SETREALTIMEATTRIBUTEBOOLRESPONSE._serialized_end=114021 + _SETREALTIMEATTRIBUTEINT32REQUEST._serialized_start=114024 + _SETREALTIMEATTRIBUTEINT32REQUEST._serialized_end=114294 + _SETREALTIMEATTRIBUTEINT32RESPONSE._serialized_start=114296 + _SETREALTIMEATTRIBUTEINT32RESPONSE._serialized_end=114347 + _SETREALTIMEATTRIBUTEUINT32REQUEST._serialized_start=114350 + _SETREALTIMEATTRIBUTEUINT32REQUEST._serialized_end=114541 + _SETREALTIMEATTRIBUTEUINT32RESPONSE._serialized_start=114543 + _SETREALTIMEATTRIBUTEUINT32RESPONSE._serialized_end=114595 + _SETSCALEATTRIBUTEDOUBLEREQUEST._serialized_start=114598 + _SETSCALEATTRIBUTEDOUBLEREQUEST._serialized_end=114765 + _SETSCALEATTRIBUTEDOUBLERESPONSE._serialized_start=114767 + _SETSCALEATTRIBUTEDOUBLERESPONSE._serialized_end=114816 + _SETSCALEATTRIBUTEDOUBLEARRAYREQUEST._serialized_start=114819 + _SETSCALEATTRIBUTEDOUBLEARRAYREQUEST._serialized_end=114996 + _SETSCALEATTRIBUTEDOUBLEARRAYRESPONSE._serialized_start=114998 + _SETSCALEATTRIBUTEDOUBLEARRAYRESPONSE._serialized_end=115052 + _SETSCALEATTRIBUTEINT32REQUEST._serialized_start=115055 + _SETSCALEATTRIBUTEINT32REQUEST._serialized_end=115298 + _SETSCALEATTRIBUTEINT32RESPONSE._serialized_start=115300 + _SETSCALEATTRIBUTEINT32RESPONSE._serialized_end=115348 + _SETSCALEATTRIBUTESTRINGREQUEST._serialized_start=115351 + _SETSCALEATTRIBUTESTRINGREQUEST._serialized_end=115518 + _SETSCALEATTRIBUTESTRINGRESPONSE._serialized_start=115520 + _SETSCALEATTRIBUTESTRINGRESPONSE._serialized_end=115569 + _SETSTARTTRIGTRIGWHENREQUEST._serialized_start=115571 + _SETSTARTTRIGTRIGWHENREQUEST._serialized_end=115680 + _SETSTARTTRIGTRIGWHENRESPONSE._serialized_start=115682 + _SETSTARTTRIGTRIGWHENRESPONSE._serialized_end=115728 + _SETSYNCPULSETIMEWHENREQUEST._serialized_start=115730 + _SETSYNCPULSETIMEWHENREQUEST._serialized_end=115839 + _SETSYNCPULSETIMEWHENRESPONSE._serialized_start=115841 + _SETSYNCPULSETIMEWHENRESPONSE._serialized_end=115887 + _SETTIMINGATTRIBUTEBOOLREQUEST._serialized_start=115890 + _SETTIMINGATTRIBUTEBOOLREQUEST._serialized_end=116073 + _SETTIMINGATTRIBUTEBOOLRESPONSE._serialized_start=116075 + _SETTIMINGATTRIBUTEBOOLRESPONSE._serialized_end=116123 + _SETTIMINGATTRIBUTEDOUBLEREQUEST._serialized_start=116126 + _SETTIMINGATTRIBUTEDOUBLEREQUEST._serialized_end=116313 + _SETTIMINGATTRIBUTEDOUBLERESPONSE._serialized_start=116315 + _SETTIMINGATTRIBUTEDOUBLERESPONSE._serialized_end=116365 + _SETTIMINGATTRIBUTEEXBOOLREQUEST._serialized_start=116368 + _SETTIMINGATTRIBUTEEXBOOLREQUEST._serialized_end=116575 + _SETTIMINGATTRIBUTEEXBOOLRESPONSE._serialized_start=116577 + _SETTIMINGATTRIBUTEEXBOOLRESPONSE._serialized_end=116627 + _SETTIMINGATTRIBUTEEXDOUBLEREQUEST._serialized_start=116630 + _SETTIMINGATTRIBUTEEXDOUBLEREQUEST._serialized_end=116841 + _SETTIMINGATTRIBUTEEXDOUBLERESPONSE._serialized_start=116843 + _SETTIMINGATTRIBUTEEXDOUBLERESPONSE._serialized_end=116895 + _SETTIMINGATTRIBUTEEXINT32REQUEST._serialized_start=116898 + _SETTIMINGATTRIBUTEEXINT32REQUEST._serialized_end=117186 + _SETTIMINGATTRIBUTEEXINT32RESPONSE._serialized_start=117188 + _SETTIMINGATTRIBUTEEXINT32RESPONSE._serialized_end=117239 + _SETTIMINGATTRIBUTEEXSTRINGREQUEST._serialized_start=117242 + _SETTIMINGATTRIBUTEEXSTRINGREQUEST._serialized_end=117453 + _SETTIMINGATTRIBUTEEXSTRINGRESPONSE._serialized_start=117455 + _SETTIMINGATTRIBUTEEXSTRINGRESPONSE._serialized_end=117507 + _SETTIMINGATTRIBUTEEXTIMESTAMPREQUEST._serialized_start=117510 + _SETTIMINGATTRIBUTEEXTIMESTAMPREQUEST._serialized_end=117755 + _SETTIMINGATTRIBUTEEXTIMESTAMPRESPONSE._serialized_start=117757 + _SETTIMINGATTRIBUTEEXTIMESTAMPRESPONSE._serialized_end=117812 + _SETTIMINGATTRIBUTEEXUINT32REQUEST._serialized_start=117815 + _SETTIMINGATTRIBUTEEXUINT32REQUEST._serialized_end=118026 + _SETTIMINGATTRIBUTEEXUINT32RESPONSE._serialized_start=118028 + _SETTIMINGATTRIBUTEEXUINT32RESPONSE._serialized_end=118080 + _SETTIMINGATTRIBUTEEXUINT64REQUEST._serialized_start=118083 + _SETTIMINGATTRIBUTEEXUINT64REQUEST._serialized_end=118294 + _SETTIMINGATTRIBUTEEXUINT64RESPONSE._serialized_start=118296 + _SETTIMINGATTRIBUTEEXUINT64RESPONSE._serialized_end=118348 + _SETTIMINGATTRIBUTEINT32REQUEST._serialized_start=118351 + _SETTIMINGATTRIBUTEINT32REQUEST._serialized_end=118615 + _SETTIMINGATTRIBUTEINT32RESPONSE._serialized_start=118617 + _SETTIMINGATTRIBUTEINT32RESPONSE._serialized_end=118666 + _SETTIMINGATTRIBUTESTRINGREQUEST._serialized_start=118669 + _SETTIMINGATTRIBUTESTRINGREQUEST._serialized_end=118856 + _SETTIMINGATTRIBUTESTRINGRESPONSE._serialized_start=118858 + _SETTIMINGATTRIBUTESTRINGRESPONSE._serialized_end=118908 + _SETTIMINGATTRIBUTETIMESTAMPREQUEST._serialized_start=118911 + _SETTIMINGATTRIBUTETIMESTAMPREQUEST._serialized_end=119132 + _SETTIMINGATTRIBUTETIMESTAMPRESPONSE._serialized_start=119134 + _SETTIMINGATTRIBUTETIMESTAMPRESPONSE._serialized_end=119187 + _SETTIMINGATTRIBUTEUINT32REQUEST._serialized_start=119190 + _SETTIMINGATTRIBUTEUINT32REQUEST._serialized_end=119377 + _SETTIMINGATTRIBUTEUINT32RESPONSE._serialized_start=119379 + _SETTIMINGATTRIBUTEUINT32RESPONSE._serialized_end=119429 + _SETTIMINGATTRIBUTEUINT64REQUEST._serialized_start=119432 + _SETTIMINGATTRIBUTEUINT64REQUEST._serialized_end=119619 + _SETTIMINGATTRIBUTEUINT64RESPONSE._serialized_start=119621 + _SETTIMINGATTRIBUTEUINT64RESPONSE._serialized_end=119671 + _SETTRIGATTRIBUTEBOOLREQUEST._serialized_start=119674 + _SETTRIGATTRIBUTEBOOLREQUEST._serialized_end=119856 + _SETTRIGATTRIBUTEBOOLRESPONSE._serialized_start=119858 + _SETTRIGATTRIBUTEBOOLRESPONSE._serialized_end=119904 + _SETTRIGATTRIBUTEDOUBLEREQUEST._serialized_start=119907 + _SETTRIGATTRIBUTEDOUBLEREQUEST._serialized_end=120093 + _SETTRIGATTRIBUTEDOUBLERESPONSE._serialized_start=120095 + _SETTRIGATTRIBUTEDOUBLERESPONSE._serialized_end=120143 + _SETTRIGATTRIBUTEDOUBLEARRAYREQUEST._serialized_start=120146 + _SETTRIGATTRIBUTEDOUBLEARRAYREQUEST._serialized_end=120342 + _SETTRIGATTRIBUTEDOUBLEARRAYRESPONSE._serialized_start=120344 + _SETTRIGATTRIBUTEDOUBLEARRAYRESPONSE._serialized_end=120397 + _SETTRIGATTRIBUTEINT32REQUEST._serialized_start=120400 + _SETTRIGATTRIBUTEINT32REQUEST._serialized_end=120664 + _SETTRIGATTRIBUTEINT32RESPONSE._serialized_start=120666 + _SETTRIGATTRIBUTEINT32RESPONSE._serialized_end=120713 + _SETTRIGATTRIBUTEINT32ARRAYREQUEST._serialized_start=120716 + _SETTRIGATTRIBUTEINT32ARRAYREQUEST._serialized_end=120910 + _SETTRIGATTRIBUTEINT32ARRAYRESPONSE._serialized_start=120912 + _SETTRIGATTRIBUTEINT32ARRAYRESPONSE._serialized_end=120964 + _SETTRIGATTRIBUTESTRINGREQUEST._serialized_start=120967 + _SETTRIGATTRIBUTESTRINGREQUEST._serialized_end=121153 + _SETTRIGATTRIBUTESTRINGRESPONSE._serialized_start=121155 + _SETTRIGATTRIBUTESTRINGRESPONSE._serialized_end=121203 + _SETTRIGATTRIBUTETIMESTAMPREQUEST._serialized_start=121206 + _SETTRIGATTRIBUTETIMESTAMPREQUEST._serialized_end=121426 + _SETTRIGATTRIBUTETIMESTAMPRESPONSE._serialized_start=121428 + _SETTRIGATTRIBUTETIMESTAMPRESPONSE._serialized_end=121479 + _SETTRIGATTRIBUTEUINT32REQUEST._serialized_start=121482 + _SETTRIGATTRIBUTEUINT32REQUEST._serialized_end=121668 + _SETTRIGATTRIBUTEUINT32RESPONSE._serialized_start=121670 + _SETTRIGATTRIBUTEUINT32RESPONSE._serialized_end=121718 + _SETWATCHDOGATTRIBUTEBOOLREQUEST._serialized_start=121721 + _SETWATCHDOGATTRIBUTEBOOLREQUEST._serialized_end=121923 + _SETWATCHDOGATTRIBUTEBOOLRESPONSE._serialized_start=121925 + _SETWATCHDOGATTRIBUTEBOOLRESPONSE._serialized_end=121975 + _SETWATCHDOGATTRIBUTEDOUBLEREQUEST._serialized_start=121978 + _SETWATCHDOGATTRIBUTEDOUBLEREQUEST._serialized_end=122184 + _SETWATCHDOGATTRIBUTEDOUBLERESPONSE._serialized_start=122186 + _SETWATCHDOGATTRIBUTEDOUBLERESPONSE._serialized_end=122238 + _SETWATCHDOGATTRIBUTEINT32REQUEST._serialized_start=122241 + _SETWATCHDOGATTRIBUTEINT32REQUEST._serialized_end=122526 + _SETWATCHDOGATTRIBUTEINT32RESPONSE._serialized_start=122528 + _SETWATCHDOGATTRIBUTEINT32RESPONSE._serialized_end=122579 + _SETWATCHDOGATTRIBUTESTRINGREQUEST._serialized_start=122582 + _SETWATCHDOGATTRIBUTESTRINGREQUEST._serialized_end=122788 + _SETWATCHDOGATTRIBUTESTRINGRESPONSE._serialized_start=122790 + _SETWATCHDOGATTRIBUTESTRINGRESPONSE._serialized_end=122842 + _SETWRITEATTRIBUTEBOOLREQUEST._serialized_start=122845 + _SETWRITEATTRIBUTEBOOLREQUEST._serialized_end=123026 + _SETWRITEATTRIBUTEBOOLRESPONSE._serialized_start=123028 + _SETWRITEATTRIBUTEBOOLRESPONSE._serialized_end=123075 + _SETWRITEATTRIBUTEDOUBLEREQUEST._serialized_start=123078 + _SETWRITEATTRIBUTEDOUBLEREQUEST._serialized_end=123263 + _SETWRITEATTRIBUTEDOUBLERESPONSE._serialized_start=123265 + _SETWRITEATTRIBUTEDOUBLERESPONSE._serialized_end=123314 + _SETWRITEATTRIBUTEINT32REQUEST._serialized_start=123317 + _SETWRITEATTRIBUTEINT32REQUEST._serialized_end=123578 + _SETWRITEATTRIBUTEINT32RESPONSE._serialized_start=123580 + _SETWRITEATTRIBUTEINT32RESPONSE._serialized_end=123628 + _SETWRITEATTRIBUTESTRINGREQUEST._serialized_start=123631 + _SETWRITEATTRIBUTESTRINGREQUEST._serialized_end=123816 + _SETWRITEATTRIBUTESTRINGRESPONSE._serialized_start=123818 + _SETWRITEATTRIBUTESTRINGRESPONSE._serialized_end=123867 + _SETWRITEATTRIBUTEUINT32REQUEST._serialized_start=123870 + _SETWRITEATTRIBUTEUINT32REQUEST._serialized_end=124055 + _SETWRITEATTRIBUTEUINT32RESPONSE._serialized_start=124057 + _SETWRITEATTRIBUTEUINT32RESPONSE._serialized_end=124106 + _SETWRITEATTRIBUTEUINT64REQUEST._serialized_start=124109 + _SETWRITEATTRIBUTEUINT64REQUEST._serialized_end=124294 + _SETWRITEATTRIBUTEUINT64RESPONSE._serialized_start=124296 + _SETWRITEATTRIBUTEUINT64RESPONSE._serialized_end=124345 + _STARTNEWFILEREQUEST._serialized_start=124347 + _STARTNEWFILEREQUEST._serialized_end=124425 + _STARTNEWFILERESPONSE._serialized_start=124427 + _STARTNEWFILERESPONSE._serialized_end=124465 + _STARTTASKREQUEST._serialized_start=124467 + _STARTTASKREQUEST._serialized_end=124523 + _STARTTASKRESPONSE._serialized_start=124525 + _STARTTASKRESPONSE._serialized_end=124560 + _STOPTASKREQUEST._serialized_start=124562 + _STOPTASKREQUEST._serialized_end=124617 + _STOPTASKRESPONSE._serialized_start=124619 + _STOPTASKRESPONSE._serialized_end=124653 + _TASKCONTROLREQUEST._serialized_start=124656 + _TASKCONTROLREQUEST._serialized_end=124802 + _TASKCONTROLRESPONSE._serialized_start=124804 + _TASKCONTROLRESPONSE._serialized_end=124841 + _TRISTATEOUTPUTTERMREQUEST._serialized_start=124843 + _TRISTATEOUTPUTTERMREQUEST._serialized_end=124895 + _TRISTATEOUTPUTTERMRESPONSE._serialized_start=124897 + _TRISTATEOUTPUTTERMRESPONSE._serialized_end=124941 + _UNREGISTERDONEEVENTREQUEST._serialized_start=124943 + _UNREGISTERDONEEVENTREQUEST._serialized_end=125009 + _UNREGISTERDONEEVENTRESPONSE._serialized_start=125011 + _UNREGISTERDONEEVENTRESPONSE._serialized_end=125056 + _UNREGISTEREVERYNSAMPLESEVENTREQUEST._serialized_start=125059 + _UNREGISTEREVERYNSAMPLESEVENTREQUEST._serialized_end=125287 + _UNREGISTEREVERYNSAMPLESEVENTRESPONSE._serialized_start=125289 + _UNREGISTEREVERYNSAMPLESEVENTRESPONSE._serialized_end=125343 + _UNREGISTERSIGNALEVENTREQUEST._serialized_start=125346 + _UNREGISTERSIGNALEVENTREQUEST._serialized_end=125501 + _UNREGISTERSIGNALEVENTRESPONSE._serialized_start=125503 + _UNREGISTERSIGNALEVENTRESPONSE._serialized_end=125550 + _UNRESERVENETWORKDEVICEREQUEST._serialized_start=125552 + _UNRESERVENETWORKDEVICEREQUEST._serialized_end=125604 + _UNRESERVENETWORKDEVICERESPONSE._serialized_start=125606 + _UNRESERVENETWORKDEVICERESPONSE._serialized_end=125654 + _WAITFORNEXTSAMPLECLOCKREQUEST._serialized_start=125656 + _WAITFORNEXTSAMPLECLOCKREQUEST._serialized_end=125742 + _WAITFORNEXTSAMPLECLOCKRESPONSE._serialized_start=125744 + _WAITFORNEXTSAMPLECLOCKRESPONSE._serialized_end=125809 + _BEGINWAITFORNEXTSAMPLECLOCKREQUEST._serialized_start=125811 + _BEGINWAITFORNEXTSAMPLECLOCKREQUEST._serialized_end=125902 + _BEGINWAITFORNEXTSAMPLECLOCKRESPONSE._serialized_start=125904 + _BEGINWAITFORNEXTSAMPLECLOCKRESPONSE._serialized_end=126001 + _MONIKERWAITFORNEXTSAMPLECLOCKRESPONSE._serialized_start=126003 + _MONIKERWAITFORNEXTSAMPLECLOCKRESPONSE._serialized_end=126075 + _WAITFORVALIDTIMESTAMPREQUEST._serialized_start=126078 + _WAITFORVALIDTIMESTAMPREQUEST._serialized_end=126275 + _WAITFORVALIDTIMESTAMPRESPONSE._serialized_start=126277 + _WAITFORVALIDTIMESTAMPRESPONSE._serialized_end=126371 + _WAITUNTILTASKDONEREQUEST._serialized_start=126373 + _WAITUNTILTASKDONEREQUEST._serialized_end=126459 + _WAITUNTILTASKDONERESPONSE._serialized_start=126461 + _WAITUNTILTASKDONERESPONSE._serialized_end=126504 + _WRITEANALOGF64REQUEST._serialized_start=126507 + _WRITEANALOGF64REQUEST._serialized_end=126747 + _WRITEANALOGF64RESPONSE._serialized_start=126749 + _WRITEANALOGF64RESPONSE._serialized_end=126821 + _BEGINWRITEANALOGF64REQUEST._serialized_start=126824 + _BEGINWRITEANALOGF64REQUEST._serialized_end=127048 + _BEGINWRITEANALOGF64RESPONSE._serialized_start=127050 + _BEGINWRITEANALOGF64RESPONSE._serialized_end=127139 + _MONIKERWRITEANALOGF64REQUEST._serialized_start=127141 + _MONIKERWRITEANALOGF64REQUEST._serialized_end=127192 + _MONIKERWRITEANALOGF64RESPONSE._serialized_start=127194 + _MONIKERWRITEANALOGF64RESPONSE._serialized_end=127273 + _WRITEANALOGSCALARF64REQUEST._serialized_start=127275 + _WRITEANALOGSCALARF64REQUEST._serialized_end=127394 + _WRITEANALOGSCALARF64RESPONSE._serialized_start=127396 + _WRITEANALOGSCALARF64RESPONSE._serialized_end=127442 + _BEGINWRITEANALOGSCALARF64REQUEST._serialized_start=127444 + _BEGINWRITEANALOGSCALARF64REQUEST._serialized_end=127553 + _BEGINWRITEANALOGSCALARF64RESPONSE._serialized_start=127555 + _BEGINWRITEANALOGSCALARF64RESPONSE._serialized_end=127650 + _MONIKERWRITEANALOGSCALARF64REQUEST._serialized_start=127652 + _MONIKERWRITEANALOGSCALARF64REQUEST._serialized_end=127703 + _MONIKERWRITEANALOGSCALARF64RESPONSE._serialized_start=127705 + _MONIKERWRITEANALOGSCALARF64RESPONSE._serialized_end=127758 + _WRITEBINARYI16REQUEST._serialized_start=127761 + _WRITEBINARYI16REQUEST._serialized_end=128001 + _WRITEBINARYI16RESPONSE._serialized_start=128003 + _WRITEBINARYI16RESPONSE._serialized_end=128075 + _BEGINWRITEBINARYI16REQUEST._serialized_start=128078 + _BEGINWRITEBINARYI16REQUEST._serialized_end=128302 + _BEGINWRITEBINARYI16RESPONSE._serialized_start=128304 + _BEGINWRITEBINARYI16RESPONSE._serialized_end=128393 + _MONIKERWRITEBINARYI16REQUEST._serialized_start=128395 + _MONIKERWRITEBINARYI16REQUEST._serialized_end=128446 + _MONIKERWRITEBINARYI16RESPONSE._serialized_start=128448 + _MONIKERWRITEBINARYI16RESPONSE._serialized_end=128527 + _WRITEBINARYI32REQUEST._serialized_start=128530 + _WRITEBINARYI32REQUEST._serialized_end=128770 + _WRITEBINARYI32RESPONSE._serialized_start=128772 + _WRITEBINARYI32RESPONSE._serialized_end=128844 + _BEGINWRITEBINARYI32REQUEST._serialized_start=128847 + _BEGINWRITEBINARYI32REQUEST._serialized_end=129071 + _BEGINWRITEBINARYI32RESPONSE._serialized_start=129073 + _BEGINWRITEBINARYI32RESPONSE._serialized_end=129162 + _MONIKERWRITEBINARYI32REQUEST._serialized_start=129164 + _MONIKERWRITEBINARYI32REQUEST._serialized_end=129215 + _MONIKERWRITEBINARYI32RESPONSE._serialized_start=129217 + _MONIKERWRITEBINARYI32RESPONSE._serialized_end=129296 + _WRITEBINARYU16REQUEST._serialized_start=129299 + _WRITEBINARYU16REQUEST._serialized_end=129539 + _WRITEBINARYU16RESPONSE._serialized_start=129541 + _WRITEBINARYU16RESPONSE._serialized_end=129613 + _BEGINWRITEBINARYU16REQUEST._serialized_start=129616 + _BEGINWRITEBINARYU16REQUEST._serialized_end=129840 + _BEGINWRITEBINARYU16RESPONSE._serialized_start=129842 + _BEGINWRITEBINARYU16RESPONSE._serialized_end=129931 + _MONIKERWRITEBINARYU16REQUEST._serialized_start=129933 + _MONIKERWRITEBINARYU16REQUEST._serialized_end=129984 + _MONIKERWRITEBINARYU16RESPONSE._serialized_start=129986 + _MONIKERWRITEBINARYU16RESPONSE._serialized_end=130065 + _WRITEBINARYU32REQUEST._serialized_start=130068 + _WRITEBINARYU32REQUEST._serialized_end=130308 + _WRITEBINARYU32RESPONSE._serialized_start=130310 + _WRITEBINARYU32RESPONSE._serialized_end=130382 + _BEGINWRITEBINARYU32REQUEST._serialized_start=130385 + _BEGINWRITEBINARYU32REQUEST._serialized_end=130609 + _BEGINWRITEBINARYU32RESPONSE._serialized_start=130611 + _BEGINWRITEBINARYU32RESPONSE._serialized_end=130700 + _MONIKERWRITEBINARYU32REQUEST._serialized_start=130702 + _MONIKERWRITEBINARYU32REQUEST._serialized_end=130753 + _MONIKERWRITEBINARYU32RESPONSE._serialized_start=130755 + _MONIKERWRITEBINARYU32RESPONSE._serialized_end=130834 + _WRITECTRFREQREQUEST._serialized_start=130837 + _WRITECTRFREQREQUEST._serialized_end=131093 + _WRITECTRFREQRESPONSE._serialized_start=131095 + _WRITECTRFREQRESPONSE._serialized_end=131169 + _BEGINWRITECTRFREQREQUEST._serialized_start=131172 + _BEGINWRITECTRFREQREQUEST._serialized_end=131394 + _BEGINWRITECTRFREQRESPONSE._serialized_start=131396 + _BEGINWRITECTRFREQRESPONSE._serialized_end=131483 + _MONIKERWRITECTRFREQREQUEST._serialized_start=131485 + _MONIKERWRITECTRFREQREQUEST._serialized_end=131552 + _MONIKERWRITECTRFREQRESPONSE._serialized_start=131554 + _MONIKERWRITECTRFREQRESPONSE._serialized_end=131635 + _WRITECTRFREQSCALARREQUEST._serialized_start=131638 + _WRITECTRFREQSCALARREQUEST._serialized_end=131779 + _WRITECTRFREQSCALARRESPONSE._serialized_start=131781 + _WRITECTRFREQSCALARRESPONSE._serialized_end=131825 + _BEGINWRITECTRFREQSCALARREQUEST._serialized_start=131827 + _BEGINWRITECTRFREQSCALARREQUEST._serialized_end=131934 + _BEGINWRITECTRFREQSCALARRESPONSE._serialized_start=131936 + _BEGINWRITECTRFREQSCALARRESPONSE._serialized_end=132029 + _MONIKERWRITECTRFREQSCALARREQUEST._serialized_start=132031 + _MONIKERWRITECTRFREQSCALARREQUEST._serialized_end=132104 + _MONIKERWRITECTRFREQSCALARRESPONSE._serialized_start=132106 + _MONIKERWRITECTRFREQSCALARRESPONSE._serialized_end=132157 + _WRITECTRTICKSREQUEST._serialized_start=132160 + _WRITECTRTICKSREQUEST._serialized_end=132417 + _WRITECTRTICKSRESPONSE._serialized_start=132419 + _WRITECTRTICKSRESPONSE._serialized_end=132494 + _BEGINWRITECTRTICKSREQUEST._serialized_start=132497 + _BEGINWRITECTRTICKSREQUEST._serialized_end=132720 + _BEGINWRITECTRTICKSRESPONSE._serialized_start=132722 + _BEGINWRITECTRTICKSRESPONSE._serialized_end=132810 + _MONIKERWRITECTRTICKSREQUEST._serialized_start=132812 + _MONIKERWRITECTRTICKSREQUEST._serialized_end=132880 + _MONIKERWRITECTRTICKSRESPONSE._serialized_start=132882 + _MONIKERWRITECTRTICKSRESPONSE._serialized_end=132964 + _WRITECTRTICKSSCALARREQUEST._serialized_start=132967 + _WRITECTRTICKSSCALARREQUEST._serialized_end=133109 + _WRITECTRTICKSSCALARRESPONSE._serialized_start=133111 + _WRITECTRTICKSSCALARRESPONSE._serialized_end=133156 + _BEGINWRITECTRTICKSSCALARREQUEST._serialized_start=133158 + _BEGINWRITECTRTICKSSCALARREQUEST._serialized_end=133266 + _BEGINWRITECTRTICKSSCALARRESPONSE._serialized_start=133268 + _BEGINWRITECTRTICKSSCALARRESPONSE._serialized_end=133362 + _MONIKERWRITECTRTICKSSCALARREQUEST._serialized_start=133364 + _MONIKERWRITECTRTICKSSCALARREQUEST._serialized_end=133438 + _MONIKERWRITECTRTICKSSCALARRESPONSE._serialized_start=133440 + _MONIKERWRITECTRTICKSSCALARRESPONSE._serialized_end=133492 + _WRITECTRTIMEREQUEST._serialized_start=133495 + _WRITECTRTIMEREQUEST._serialized_end=133749 + _WRITECTRTIMERESPONSE._serialized_start=133751 + _WRITECTRTIMERESPONSE._serialized_end=133825 + _BEGINWRITECTRTIMEREQUEST._serialized_start=133828 + _BEGINWRITECTRTIMEREQUEST._serialized_end=134050 + _BEGINWRITECTRTIMERESPONSE._serialized_start=134052 + _BEGINWRITECTRTIMERESPONSE._serialized_end=134139 + _MONIKERWRITECTRTIMEREQUEST._serialized_start=134141 + _MONIKERWRITECTRTIMEREQUEST._serialized_end=134206 + _MONIKERWRITECTRTIMERESPONSE._serialized_start=134208 + _MONIKERWRITECTRTIMERESPONSE._serialized_end=134289 + _WRITECTRTIMESCALARREQUEST._serialized_start=134292 + _WRITECTRTIMESCALARREQUEST._serialized_end=134431 + _WRITECTRTIMESCALARRESPONSE._serialized_start=134433 + _WRITECTRTIMESCALARRESPONSE._serialized_end=134477 + _BEGINWRITECTRTIMESCALARREQUEST._serialized_start=134479 + _BEGINWRITECTRTIMESCALARREQUEST._serialized_end=134586 + _BEGINWRITECTRTIMESCALARRESPONSE._serialized_start=134588 + _BEGINWRITECTRTIMESCALARRESPONSE._serialized_end=134681 + _MONIKERWRITECTRTIMESCALARREQUEST._serialized_start=134683 + _MONIKERWRITECTRTIMESCALARREQUEST._serialized_end=134754 + _MONIKERWRITECTRTIMESCALARRESPONSE._serialized_start=134756 + _MONIKERWRITECTRTIMESCALARRESPONSE._serialized_end=134807 + _WRITEDIGITALLINESREQUEST._serialized_start=134810 + _WRITEDIGITALLINESREQUEST._serialized_end=135053 + _WRITEDIGITALLINESRESPONSE._serialized_start=135055 + _WRITEDIGITALLINESRESPONSE._serialized_end=135130 + _BEGINWRITEDIGITALLINESREQUEST._serialized_start=135133 + _BEGINWRITEDIGITALLINESREQUEST._serialized_end=135360 + _BEGINWRITEDIGITALLINESRESPONSE._serialized_start=135362 + _BEGINWRITEDIGITALLINESRESPONSE._serialized_end=135454 + _MONIKERWRITEDIGITALLINESREQUEST._serialized_start=135456 + _MONIKERWRITEDIGITALLINESREQUEST._serialized_end=135510 + _MONIKERWRITEDIGITALLINESRESPONSE._serialized_start=135512 + _MONIKERWRITEDIGITALLINESRESPONSE._serialized_end=135594 + _WRITEDIGITALSCALARU32REQUEST._serialized_start=135596 + _WRITEDIGITALSCALARU32REQUEST._serialized_end=135716 + _WRITEDIGITALSCALARU32RESPONSE._serialized_start=135718 + _WRITEDIGITALSCALARU32RESPONSE._serialized_end=135765 + _BEGINWRITEDIGITALSCALARU32REQUEST._serialized_start=135767 + _BEGINWRITEDIGITALSCALARU32REQUEST._serialized_end=135877 + _BEGINWRITEDIGITALSCALARU32RESPONSE._serialized_start=135879 + _BEGINWRITEDIGITALSCALARU32RESPONSE._serialized_end=135975 + _MONIKERWRITEDIGITALSCALARU32REQUEST._serialized_start=135977 + _MONIKERWRITEDIGITALSCALARU32REQUEST._serialized_end=136029 + _MONIKERWRITEDIGITALSCALARU32RESPONSE._serialized_start=136031 + _MONIKERWRITEDIGITALSCALARU32RESPONSE._serialized_end=136085 + _WRITEDIGITALU16REQUEST._serialized_start=136088 + _WRITEDIGITALU16REQUEST._serialized_end=136329 + _WRITEDIGITALU16RESPONSE._serialized_start=136331 + _WRITEDIGITALU16RESPONSE._serialized_end=136404 + _BEGINWRITEDIGITALU16REQUEST._serialized_start=136407 + _BEGINWRITEDIGITALU16REQUEST._serialized_end=136632 + _BEGINWRITEDIGITALU16RESPONSE._serialized_start=136634 + _BEGINWRITEDIGITALU16RESPONSE._serialized_end=136724 + _MONIKERWRITEDIGITALU16REQUEST._serialized_start=136726 + _MONIKERWRITEDIGITALU16REQUEST._serialized_end=136778 + _MONIKERWRITEDIGITALU16RESPONSE._serialized_start=136780 + _MONIKERWRITEDIGITALU16RESPONSE._serialized_end=136860 + _WRITEDIGITALU32REQUEST._serialized_start=136863 + _WRITEDIGITALU32REQUEST._serialized_end=137104 + _WRITEDIGITALU32RESPONSE._serialized_start=137106 + _WRITEDIGITALU32RESPONSE._serialized_end=137179 + _BEGINWRITEDIGITALU32REQUEST._serialized_start=137182 + _BEGINWRITEDIGITALU32REQUEST._serialized_end=137407 + _BEGINWRITEDIGITALU32RESPONSE._serialized_start=137409 + _BEGINWRITEDIGITALU32RESPONSE._serialized_end=137499 + _MONIKERWRITEDIGITALU32REQUEST._serialized_start=137501 + _MONIKERWRITEDIGITALU32REQUEST._serialized_end=137553 + _MONIKERWRITEDIGITALU32RESPONSE._serialized_start=137555 + _MONIKERWRITEDIGITALU32RESPONSE._serialized_end=137635 + _WRITEDIGITALU8REQUEST._serialized_start=137638 + _WRITEDIGITALU8REQUEST._serialized_end=137878 + _WRITEDIGITALU8RESPONSE._serialized_start=137880 + _WRITEDIGITALU8RESPONSE._serialized_end=137952 + _BEGINWRITEDIGITALU8REQUEST._serialized_start=137955 + _BEGINWRITEDIGITALU8REQUEST._serialized_end=138179 + _BEGINWRITEDIGITALU8RESPONSE._serialized_start=138181 + _BEGINWRITEDIGITALU8RESPONSE._serialized_end=138270 + _MONIKERWRITEDIGITALU8REQUEST._serialized_start=138272 + _MONIKERWRITEDIGITALU8REQUEST._serialized_end=138323 + _MONIKERWRITEDIGITALU8RESPONSE._serialized_start=138325 + _MONIKERWRITEDIGITALU8RESPONSE._serialized_end=138404 + _WRITEIDPINMEMORYREQUEST._serialized_start=138406 + _WRITEIDPINMEMORYREQUEST._serialized_end=138508 + _WRITEIDPINMEMORYRESPONSE._serialized_start=138510 + _WRITEIDPINMEMORYRESPONSE._serialized_end=138552 + _WRITERAWREQUEST._serialized_start=138555 + _WRITERAWREQUEST._serialized_end=138687 + _WRITERAWRESPONSE._serialized_start=138689 + _WRITERAWRESPONSE._serialized_end=138755 + _BEGINWRITERAWREQUEST._serialized_start=138757 + _BEGINWRITERAWREQUEST._serialized_end=138873 + _BEGINWRITERAWRESPONSE._serialized_start=138875 + _BEGINWRITERAWRESPONSE._serialized_end=138958 + _MONIKERWRITERAWREQUEST._serialized_start=138960 + _MONIKERWRITERAWREQUEST._serialized_end=139005 + _MONIKERWRITERAWRESPONSE._serialized_start=139007 + _MONIKERWRITERAWRESPONSE._serialized_end=139080 + _WRITETOTEDSFROMARRAYREQUEST._serialized_start=139083 + _WRITETOTEDSFROMARRAYREQUEST._serialized_end=139286 + _WRITETOTEDSFROMARRAYRESPONSE._serialized_start=139288 + _WRITETOTEDSFROMARRAYRESPONSE._serialized_end=139334 + _WRITETOTEDSFROMFILEREQUEST._serialized_start=139337 + _WRITETOTEDSFROMFILEREQUEST._serialized_end=139538 + _WRITETOTEDSFROMFILERESPONSE._serialized_start=139540 + _WRITETOTEDSFROMFILERESPONSE._serialized_end=139585 + _READANALOGWAVEFORMSREQUEST._serialized_start=139588 + _READANALOGWAVEFORMSREQUEST._serialized_end=139842 + _READANALOGWAVEFORMSRESPONSE._serialized_start=139845 + _READANALOGWAVEFORMSRESPONSE._serialized_end=139979 + _READDIGITALWAVEFORMSREQUEST._serialized_start=139982 + _READDIGITALWAVEFORMSREQUEST._serialized_end=140237 + _READDIGITALWAVEFORMSRESPONSE._serialized_start=140240 + _READDIGITALWAVEFORMSRESPONSE._serialized_end=140370 + _WRITEANALOGWAVEFORMSREQUEST._serialized_start=140373 + _WRITEANALOGWAVEFORMSREQUEST._serialized_end=140537 + _WRITEANALOGWAVEFORMSRESPONSE._serialized_start=140539 + _WRITEANALOGWAVEFORMSRESPONSE._serialized_end=140617 + _WRITEDIGITALWAVEFORMSREQUEST._serialized_start=140620 + _WRITEDIGITALWAVEFORMSREQUEST._serialized_end=140780 + _WRITEDIGITALWAVEFORMSRESPONSE._serialized_start=140782 + _WRITEDIGITALWAVEFORMSRESPONSE._serialized_end=140861 + _NIDAQMX._serialized_start=313516 + _NIDAQMX._serialized_end=366033 # @@protoc_insertion_point(module_scope) diff --git a/generated/nidaqmx/_stubs/nidaqmx_pb2.pyi b/generated/nidaqmx/_stubs/nidaqmx_pb2.pyi index 78fc18957..21c01bcdd 100644 --- a/generated/nidaqmx/_stubs/nidaqmx_pb2.pyi +++ b/generated/nidaqmx/_stubs/nidaqmx_pb2.pyi @@ -16,6 +16,7 @@ import google.protobuf.internal.containers import google.protobuf.internal.enum_type_wrapper import google.protobuf.message import google.protobuf.timestamp_pb2 +import ni.protobuf.types.waveform_pb2 import session_pb2 import sys import typing @@ -7094,6 +7095,23 @@ WRITE_BASIC_TEDS_OPTIONS_WRITE_TO_PROM: WriteBasicTEDSOptions.ValueType # 12539 WRITE_BASIC_TEDS_OPTIONS_DO_NOT_WRITE: WriteBasicTEDSOptions.ValueType # 12540 global___WriteBasicTEDSOptions = WriteBasicTEDSOptions +class _WaveformAttributeMode: + ValueType = typing.NewType("ValueType", builtins.int) + V: typing_extensions.TypeAlias = ValueType + +class _WaveformAttributeModeEnumTypeWrapper(google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[_WaveformAttributeMode.ValueType], builtins.type): + DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor + WAVEFORM_ATTRIBUTE_MODE_NONE: _WaveformAttributeMode.ValueType # 0 + WAVEFORM_ATTRIBUTE_MODE_TIMING: _WaveformAttributeMode.ValueType # 1 + WAVEFORM_ATTRIBUTE_MODE_EXTENDED_PROPERTIES: _WaveformAttributeMode.ValueType # 2 + +class WaveformAttributeMode(_WaveformAttributeMode, metaclass=_WaveformAttributeModeEnumTypeWrapper): ... + +WAVEFORM_ATTRIBUTE_MODE_NONE: WaveformAttributeMode.ValueType # 0 +WAVEFORM_ATTRIBUTE_MODE_TIMING: WaveformAttributeMode.ValueType # 1 +WAVEFORM_ATTRIBUTE_MODE_EXTENDED_PROPERTIES: WaveformAttributeMode.ValueType # 2 +global___WaveformAttributeMode = WaveformAttributeMode + class _ChannelInt32AttributeValues: ValueType = typing.NewType("ValueType", builtins.int) V: typing_extensions.TypeAlias = ValueType @@ -31883,3 +31901,197 @@ class WriteToTEDSFromFileResponse(google.protobuf.message.Message): def ClearField(self, field_name: typing.Literal["status", b"status"]) -> None: ... global___WriteToTEDSFromFileResponse = WriteToTEDSFromFileResponse + +@typing.final +class ReadAnalogWaveformsRequest(google.protobuf.message.Message): + DESCRIPTOR: google.protobuf.descriptor.Descriptor + + TASK_FIELD_NUMBER: builtins.int + NUM_SAMPS_PER_CHAN_FIELD_NUMBER: builtins.int + TIMEOUT_FIELD_NUMBER: builtins.int + WAVEFORM_ATTRIBUTE_MODE_FIELD_NUMBER: builtins.int + WAVEFORM_ATTRIBUTE_MODE_RAW_FIELD_NUMBER: builtins.int + num_samps_per_chan: builtins.int + timeout: builtins.float + waveform_attribute_mode: global___WaveformAttributeMode.ValueType + waveform_attribute_mode_raw: builtins.int + @property + def task(self) -> session_pb2.Session: ... + def __init__( + self, + *, + task: session_pb2.Session | None = ..., + num_samps_per_chan: builtins.int = ..., + timeout: builtins.float = ..., + waveform_attribute_mode: global___WaveformAttributeMode.ValueType = ..., + waveform_attribute_mode_raw: builtins.int = ..., + ) -> None: ... + def HasField(self, field_name: typing.Literal["task", b"task", "waveform_attribute_mode", b"waveform_attribute_mode", "waveform_attribute_mode_enum", b"waveform_attribute_mode_enum", "waveform_attribute_mode_raw", b"waveform_attribute_mode_raw"]) -> builtins.bool: ... + def ClearField(self, field_name: typing.Literal["num_samps_per_chan", b"num_samps_per_chan", "task", b"task", "timeout", b"timeout", "waveform_attribute_mode", b"waveform_attribute_mode", "waveform_attribute_mode_enum", b"waveform_attribute_mode_enum", "waveform_attribute_mode_raw", b"waveform_attribute_mode_raw"]) -> None: ... + def WhichOneof(self, oneof_group: typing.Literal["waveform_attribute_mode_enum", b"waveform_attribute_mode_enum"]) -> typing.Literal["waveform_attribute_mode", "waveform_attribute_mode_raw"] | None: ... + +global___ReadAnalogWaveformsRequest = ReadAnalogWaveformsRequest + +@typing.final +class ReadAnalogWaveformsResponse(google.protobuf.message.Message): + DESCRIPTOR: google.protobuf.descriptor.Descriptor + + STATUS_FIELD_NUMBER: builtins.int + WAVEFORMS_FIELD_NUMBER: builtins.int + SAMPS_PER_CHAN_READ_FIELD_NUMBER: builtins.int + status: builtins.int + samps_per_chan_read: builtins.int + @property + def waveforms(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[ni.protobuf.types.waveform_pb2.DoubleAnalogWaveform]: ... + def __init__( + self, + *, + status: builtins.int = ..., + waveforms: collections.abc.Iterable[ni.protobuf.types.waveform_pb2.DoubleAnalogWaveform] | None = ..., + samps_per_chan_read: builtins.int = ..., + ) -> None: ... + def ClearField(self, field_name: typing.Literal["samps_per_chan_read", b"samps_per_chan_read", "status", b"status", "waveforms", b"waveforms"]) -> None: ... + +global___ReadAnalogWaveformsResponse = ReadAnalogWaveformsResponse + +@typing.final +class ReadDigitalWaveformsRequest(google.protobuf.message.Message): + DESCRIPTOR: google.protobuf.descriptor.Descriptor + + TASK_FIELD_NUMBER: builtins.int + NUM_SAMPS_PER_CHAN_FIELD_NUMBER: builtins.int + TIMEOUT_FIELD_NUMBER: builtins.int + WAVEFORM_ATTRIBUTE_MODE_FIELD_NUMBER: builtins.int + WAVEFORM_ATTRIBUTE_MODE_RAW_FIELD_NUMBER: builtins.int + num_samps_per_chan: builtins.int + timeout: builtins.float + waveform_attribute_mode: global___WaveformAttributeMode.ValueType + waveform_attribute_mode_raw: builtins.int + @property + def task(self) -> session_pb2.Session: ... + def __init__( + self, + *, + task: session_pb2.Session | None = ..., + num_samps_per_chan: builtins.int = ..., + timeout: builtins.float = ..., + waveform_attribute_mode: global___WaveformAttributeMode.ValueType = ..., + waveform_attribute_mode_raw: builtins.int = ..., + ) -> None: ... + def HasField(self, field_name: typing.Literal["task", b"task", "waveform_attribute_mode", b"waveform_attribute_mode", "waveform_attribute_mode_enum", b"waveform_attribute_mode_enum", "waveform_attribute_mode_raw", b"waveform_attribute_mode_raw"]) -> builtins.bool: ... + def ClearField(self, field_name: typing.Literal["num_samps_per_chan", b"num_samps_per_chan", "task", b"task", "timeout", b"timeout", "waveform_attribute_mode", b"waveform_attribute_mode", "waveform_attribute_mode_enum", b"waveform_attribute_mode_enum", "waveform_attribute_mode_raw", b"waveform_attribute_mode_raw"]) -> None: ... + def WhichOneof(self, oneof_group: typing.Literal["waveform_attribute_mode_enum", b"waveform_attribute_mode_enum"]) -> typing.Literal["waveform_attribute_mode", "waveform_attribute_mode_raw"] | None: ... + +global___ReadDigitalWaveformsRequest = ReadDigitalWaveformsRequest + +@typing.final +class ReadDigitalWaveformsResponse(google.protobuf.message.Message): + DESCRIPTOR: google.protobuf.descriptor.Descriptor + + STATUS_FIELD_NUMBER: builtins.int + WAVEFORMS_FIELD_NUMBER: builtins.int + SAMPS_PER_CHAN_READ_FIELD_NUMBER: builtins.int + status: builtins.int + samps_per_chan_read: builtins.int + @property + def waveforms(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[ni.protobuf.types.waveform_pb2.DigitalWaveform]: ... + def __init__( + self, + *, + status: builtins.int = ..., + waveforms: collections.abc.Iterable[ni.protobuf.types.waveform_pb2.DigitalWaveform] | None = ..., + samps_per_chan_read: builtins.int = ..., + ) -> None: ... + def ClearField(self, field_name: typing.Literal["samps_per_chan_read", b"samps_per_chan_read", "status", b"status", "waveforms", b"waveforms"]) -> None: ... + +global___ReadDigitalWaveformsResponse = ReadDigitalWaveformsResponse + +@typing.final +class WriteAnalogWaveformsRequest(google.protobuf.message.Message): + DESCRIPTOR: google.protobuf.descriptor.Descriptor + + TASK_FIELD_NUMBER: builtins.int + AUTO_START_FIELD_NUMBER: builtins.int + TIMEOUT_FIELD_NUMBER: builtins.int + WAVEFORMS_FIELD_NUMBER: builtins.int + auto_start: builtins.bool + timeout: builtins.float + @property + def task(self) -> session_pb2.Session: ... + @property + def waveforms(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[ni.protobuf.types.waveform_pb2.DoubleAnalogWaveform]: ... + def __init__( + self, + *, + task: session_pb2.Session | None = ..., + auto_start: builtins.bool = ..., + timeout: builtins.float = ..., + waveforms: collections.abc.Iterable[ni.protobuf.types.waveform_pb2.DoubleAnalogWaveform] | None = ..., + ) -> None: ... + def HasField(self, field_name: typing.Literal["task", b"task"]) -> builtins.bool: ... + def ClearField(self, field_name: typing.Literal["auto_start", b"auto_start", "task", b"task", "timeout", b"timeout", "waveforms", b"waveforms"]) -> None: ... + +global___WriteAnalogWaveformsRequest = WriteAnalogWaveformsRequest + +@typing.final +class WriteAnalogWaveformsResponse(google.protobuf.message.Message): + DESCRIPTOR: google.protobuf.descriptor.Descriptor + + STATUS_FIELD_NUMBER: builtins.int + SAMPS_PER_CHAN_WRITTEN_FIELD_NUMBER: builtins.int + status: builtins.int + samps_per_chan_written: builtins.int + def __init__( + self, + *, + status: builtins.int = ..., + samps_per_chan_written: builtins.int = ..., + ) -> None: ... + def ClearField(self, field_name: typing.Literal["samps_per_chan_written", b"samps_per_chan_written", "status", b"status"]) -> None: ... + +global___WriteAnalogWaveformsResponse = WriteAnalogWaveformsResponse + +@typing.final +class WriteDigitalWaveformsRequest(google.protobuf.message.Message): + DESCRIPTOR: google.protobuf.descriptor.Descriptor + + TASK_FIELD_NUMBER: builtins.int + AUTO_START_FIELD_NUMBER: builtins.int + TIMEOUT_FIELD_NUMBER: builtins.int + WAVEFORMS_FIELD_NUMBER: builtins.int + auto_start: builtins.bool + timeout: builtins.float + @property + def task(self) -> session_pb2.Session: ... + @property + def waveforms(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[ni.protobuf.types.waveform_pb2.DigitalWaveform]: ... + def __init__( + self, + *, + task: session_pb2.Session | None = ..., + auto_start: builtins.bool = ..., + timeout: builtins.float = ..., + waveforms: collections.abc.Iterable[ni.protobuf.types.waveform_pb2.DigitalWaveform] | None = ..., + ) -> None: ... + def HasField(self, field_name: typing.Literal["task", b"task"]) -> builtins.bool: ... + def ClearField(self, field_name: typing.Literal["auto_start", b"auto_start", "task", b"task", "timeout", b"timeout", "waveforms", b"waveforms"]) -> None: ... + +global___WriteDigitalWaveformsRequest = WriteDigitalWaveformsRequest + +@typing.final +class WriteDigitalWaveformsResponse(google.protobuf.message.Message): + DESCRIPTOR: google.protobuf.descriptor.Descriptor + + STATUS_FIELD_NUMBER: builtins.int + SAMPS_PER_CHAN_WRITTEN_FIELD_NUMBER: builtins.int + status: builtins.int + samps_per_chan_written: builtins.int + def __init__( + self, + *, + status: builtins.int = ..., + samps_per_chan_written: builtins.int = ..., + ) -> None: ... + def ClearField(self, field_name: typing.Literal["samps_per_chan_written", b"samps_per_chan_written", "status", b"status"]) -> None: ... + +global___WriteDigitalWaveformsResponse = WriteDigitalWaveformsResponse diff --git a/generated/nidaqmx/_stubs/nidaqmx_pb2_grpc.py b/generated/nidaqmx/_stubs/nidaqmx_pb2_grpc.py index 216b8da89..5d66e1178 100644 --- a/generated/nidaqmx/_stubs/nidaqmx_pb2_grpc.py +++ b/generated/nidaqmx/_stubs/nidaqmx_pb2_grpc.py @@ -2244,6 +2244,26 @@ def __init__(self, channel): request_serializer=nidaqmx__pb2.WriteToTEDSFromFileRequest.SerializeToString, response_deserializer=nidaqmx__pb2.WriteToTEDSFromFileResponse.FromString, ) + self.ReadAnalogWaveforms = channel.unary_unary( + '/nidaqmx_grpc.NiDAQmx/ReadAnalogWaveforms', + request_serializer=nidaqmx__pb2.ReadAnalogWaveformsRequest.SerializeToString, + response_deserializer=nidaqmx__pb2.ReadAnalogWaveformsResponse.FromString, + ) + self.ReadDigitalWaveforms = channel.unary_unary( + '/nidaqmx_grpc.NiDAQmx/ReadDigitalWaveforms', + request_serializer=nidaqmx__pb2.ReadDigitalWaveformsRequest.SerializeToString, + response_deserializer=nidaqmx__pb2.ReadDigitalWaveformsResponse.FromString, + ) + self.WriteAnalogWaveforms = channel.unary_unary( + '/nidaqmx_grpc.NiDAQmx/WriteAnalogWaveforms', + request_serializer=nidaqmx__pb2.WriteAnalogWaveformsRequest.SerializeToString, + response_deserializer=nidaqmx__pb2.WriteAnalogWaveformsResponse.FromString, + ) + self.WriteDigitalWaveforms = channel.unary_unary( + '/nidaqmx_grpc.NiDAQmx/WriteDigitalWaveforms', + request_serializer=nidaqmx__pb2.WriteDigitalWaveformsRequest.SerializeToString, + response_deserializer=nidaqmx__pb2.WriteDigitalWaveformsResponse.FromString, + ) class NiDAQmxServicer(object): @@ -4925,6 +4945,30 @@ def WriteToTEDSFromFile(self, request, context): context.set_details('Method not implemented!') raise NotImplementedError('Method not implemented!') + def ReadAnalogWaveforms(self, request, context): + """Missing associated documentation comment in .proto file.""" + context.set_code(grpc.StatusCode.UNIMPLEMENTED) + context.set_details('Method not implemented!') + raise NotImplementedError('Method not implemented!') + + def ReadDigitalWaveforms(self, request, context): + """Missing associated documentation comment in .proto file.""" + context.set_code(grpc.StatusCode.UNIMPLEMENTED) + context.set_details('Method not implemented!') + raise NotImplementedError('Method not implemented!') + + def WriteAnalogWaveforms(self, request, context): + """Missing associated documentation comment in .proto file.""" + context.set_code(grpc.StatusCode.UNIMPLEMENTED) + context.set_details('Method not implemented!') + raise NotImplementedError('Method not implemented!') + + def WriteDigitalWaveforms(self, request, context): + """Missing associated documentation comment in .proto file.""" + context.set_code(grpc.StatusCode.UNIMPLEMENTED) + context.set_details('Method not implemented!') + raise NotImplementedError('Method not implemented!') + def add_NiDAQmxServicer_to_server(servicer, server): rpc_method_handlers = { @@ -7158,6 +7202,26 @@ def add_NiDAQmxServicer_to_server(servicer, server): request_deserializer=nidaqmx__pb2.WriteToTEDSFromFileRequest.FromString, response_serializer=nidaqmx__pb2.WriteToTEDSFromFileResponse.SerializeToString, ), + 'ReadAnalogWaveforms': grpc.unary_unary_rpc_method_handler( + servicer.ReadAnalogWaveforms, + request_deserializer=nidaqmx__pb2.ReadAnalogWaveformsRequest.FromString, + response_serializer=nidaqmx__pb2.ReadAnalogWaveformsResponse.SerializeToString, + ), + 'ReadDigitalWaveforms': grpc.unary_unary_rpc_method_handler( + servicer.ReadDigitalWaveforms, + request_deserializer=nidaqmx__pb2.ReadDigitalWaveformsRequest.FromString, + response_serializer=nidaqmx__pb2.ReadDigitalWaveformsResponse.SerializeToString, + ), + 'WriteAnalogWaveforms': grpc.unary_unary_rpc_method_handler( + servicer.WriteAnalogWaveforms, + request_deserializer=nidaqmx__pb2.WriteAnalogWaveformsRequest.FromString, + response_serializer=nidaqmx__pb2.WriteAnalogWaveformsResponse.SerializeToString, + ), + 'WriteDigitalWaveforms': grpc.unary_unary_rpc_method_handler( + servicer.WriteDigitalWaveforms, + request_deserializer=nidaqmx__pb2.WriteDigitalWaveformsRequest.FromString, + response_serializer=nidaqmx__pb2.WriteDigitalWaveformsResponse.SerializeToString, + ), } generic_handler = grpc.method_handlers_generic_handler( 'nidaqmx_grpc.NiDAQmx', rpc_method_handlers) @@ -14749,3 +14813,71 @@ def WriteToTEDSFromFile(request, nidaqmx__pb2.WriteToTEDSFromFileResponse.FromString, options, channel_credentials, insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def ReadAnalogWaveforms(request, + target, + options=(), + channel_credentials=None, + call_credentials=None, + insecure=False, + compression=None, + wait_for_ready=None, + timeout=None, + metadata=None): + return grpc.experimental.unary_unary(request, target, '/nidaqmx_grpc.NiDAQmx/ReadAnalogWaveforms', + nidaqmx__pb2.ReadAnalogWaveformsRequest.SerializeToString, + nidaqmx__pb2.ReadAnalogWaveformsResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def ReadDigitalWaveforms(request, + target, + options=(), + channel_credentials=None, + call_credentials=None, + insecure=False, + compression=None, + wait_for_ready=None, + timeout=None, + metadata=None): + return grpc.experimental.unary_unary(request, target, '/nidaqmx_grpc.NiDAQmx/ReadDigitalWaveforms', + nidaqmx__pb2.ReadDigitalWaveformsRequest.SerializeToString, + nidaqmx__pb2.ReadDigitalWaveformsResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def WriteAnalogWaveforms(request, + target, + options=(), + channel_credentials=None, + call_credentials=None, + insecure=False, + compression=None, + wait_for_ready=None, + timeout=None, + metadata=None): + return grpc.experimental.unary_unary(request, target, '/nidaqmx_grpc.NiDAQmx/WriteAnalogWaveforms', + nidaqmx__pb2.WriteAnalogWaveformsRequest.SerializeToString, + nidaqmx__pb2.WriteAnalogWaveformsResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def WriteDigitalWaveforms(request, + target, + options=(), + channel_credentials=None, + call_credentials=None, + insecure=False, + compression=None, + wait_for_ready=None, + timeout=None, + metadata=None): + return grpc.experimental.unary_unary(request, target, '/nidaqmx_grpc.NiDAQmx/WriteDigitalWaveforms', + nidaqmx__pb2.WriteDigitalWaveformsRequest.SerializeToString, + nidaqmx__pb2.WriteDigitalWaveformsResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) diff --git a/generated/nidaqmx/_stubs/nidaqmx_pb2_grpc.pyi b/generated/nidaqmx/_stubs/nidaqmx_pb2_grpc.pyi index 656123446..7d0f1c887 100644 --- a/generated/nidaqmx/_stubs/nidaqmx_pb2_grpc.pyi +++ b/generated/nidaqmx/_stubs/nidaqmx_pb2_grpc.pyi @@ -2254,6 +2254,26 @@ class NiDAQmxStub: nidaqmx_pb2.WriteToTEDSFromFileResponse, ] + ReadAnalogWaveforms: grpc.UnaryUnaryMultiCallable[ + nidaqmx_pb2.ReadAnalogWaveformsRequest, + nidaqmx_pb2.ReadAnalogWaveformsResponse, + ] + + ReadDigitalWaveforms: grpc.UnaryUnaryMultiCallable[ + nidaqmx_pb2.ReadDigitalWaveformsRequest, + nidaqmx_pb2.ReadDigitalWaveformsResponse, + ] + + WriteAnalogWaveforms: grpc.UnaryUnaryMultiCallable[ + nidaqmx_pb2.WriteAnalogWaveformsRequest, + nidaqmx_pb2.WriteAnalogWaveformsResponse, + ] + + WriteDigitalWaveforms: grpc.UnaryUnaryMultiCallable[ + nidaqmx_pb2.WriteDigitalWaveformsRequest, + nidaqmx_pb2.WriteDigitalWaveformsResponse, + ] + class NiDAQmxAsyncStub: AddCDAQSyncConnection: grpc.aio.UnaryUnaryMultiCallable[ nidaqmx_pb2.AddCDAQSyncConnectionRequest, @@ -4485,6 +4505,26 @@ class NiDAQmxAsyncStub: nidaqmx_pb2.WriteToTEDSFromFileResponse, ] + ReadAnalogWaveforms: grpc.aio.UnaryUnaryMultiCallable[ + nidaqmx_pb2.ReadAnalogWaveformsRequest, + nidaqmx_pb2.ReadAnalogWaveformsResponse, + ] + + ReadDigitalWaveforms: grpc.aio.UnaryUnaryMultiCallable[ + nidaqmx_pb2.ReadDigitalWaveformsRequest, + nidaqmx_pb2.ReadDigitalWaveformsResponse, + ] + + WriteAnalogWaveforms: grpc.aio.UnaryUnaryMultiCallable[ + nidaqmx_pb2.WriteAnalogWaveformsRequest, + nidaqmx_pb2.WriteAnalogWaveformsResponse, + ] + + WriteDigitalWaveforms: grpc.aio.UnaryUnaryMultiCallable[ + nidaqmx_pb2.WriteDigitalWaveformsRequest, + nidaqmx_pb2.WriteDigitalWaveformsResponse, + ] + class NiDAQmxServicer(metaclass=abc.ABCMeta): @abc.abstractmethod def AddCDAQSyncConnection( @@ -7608,4 +7648,32 @@ class NiDAQmxServicer(metaclass=abc.ABCMeta): context: _ServicerContext, ) -> typing.Union[nidaqmx_pb2.WriteToTEDSFromFileResponse, collections.abc.Awaitable[nidaqmx_pb2.WriteToTEDSFromFileResponse]]: ... + @abc.abstractmethod + def ReadAnalogWaveforms( + self, + request: nidaqmx_pb2.ReadAnalogWaveformsRequest, + context: _ServicerContext, + ) -> typing.Union[nidaqmx_pb2.ReadAnalogWaveformsResponse, collections.abc.Awaitable[nidaqmx_pb2.ReadAnalogWaveformsResponse]]: ... + + @abc.abstractmethod + def ReadDigitalWaveforms( + self, + request: nidaqmx_pb2.ReadDigitalWaveformsRequest, + context: _ServicerContext, + ) -> typing.Union[nidaqmx_pb2.ReadDigitalWaveformsResponse, collections.abc.Awaitable[nidaqmx_pb2.ReadDigitalWaveformsResponse]]: ... + + @abc.abstractmethod + def WriteAnalogWaveforms( + self, + request: nidaqmx_pb2.WriteAnalogWaveformsRequest, + context: _ServicerContext, + ) -> typing.Union[nidaqmx_pb2.WriteAnalogWaveformsResponse, collections.abc.Awaitable[nidaqmx_pb2.WriteAnalogWaveformsResponse]]: ... + + @abc.abstractmethod + def WriteDigitalWaveforms( + self, + request: nidaqmx_pb2.WriteDigitalWaveformsRequest, + context: _ServicerContext, + ) -> typing.Union[nidaqmx_pb2.WriteDigitalWaveformsResponse, collections.abc.Awaitable[nidaqmx_pb2.WriteDigitalWaveformsResponse]]: ... + def add_NiDAQmxServicer_to_server(servicer: NiDAQmxServicer, server: typing.Union[grpc.Server, grpc.aio.Server]) -> None: ... diff --git a/generated/nidaqmx/_waveform_utils.py b/generated/nidaqmx/_waveform_utils.py new file mode 100644 index 000000000..003b5aab1 --- /dev/null +++ b/generated/nidaqmx/_waveform_utils.py @@ -0,0 +1,18 @@ +from __future__ import annotations + +from collections.abc import Sequence +from typing import Any + +from nitypes.waveform import AnalogWaveform, DigitalWaveform + + +def get_num_samps_per_chan(waveforms: Sequence[AnalogWaveform[Any] | DigitalWaveform[Any]]) -> int: + """Validate that all waveforms have the same sample count and return it.""" + if len(waveforms) == 0: + raise ValueError("At least one waveform must be provided") + + num_samps_per_chan = waveforms[0].sample_count + for i, waveform in enumerate(waveforms): + if waveform.sample_count != num_samps_per_chan: + raise ValueError("The waveforms must all have the same sample count.") + return num_samps_per_chan diff --git a/poetry.lock b/poetry.lock index 0ff0fbc8a..a96024a17 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 2.1.4 and should not be changed by hand. +# This file is automatically @generated by Poetry 2.2.1 and should not be changed by hand. [[package]] name = "alabaster" @@ -1740,6 +1740,23 @@ files = [ grpcio = ">=1.49.0,<2.0" protobuf = ">=4.21" +[[package]] +name = "ni-protobuf-types" +version = "1.0.0" +description = "Protobuf data types for NI gRPC APIs" +optional = true +python-versions = "<4.0,>=3.9" +groups = ["main"] +markers = "extra == \"grpc\"" +files = [ + {file = "ni_protobuf_types-1.0.0-py3-none-any.whl", hash = "sha256:a88d5e517ef825ef70734aab00e6fb44f78ceb7d40b5c1592af450b87e3745ae"}, + {file = "ni_protobuf_types-1.0.0.tar.gz", hash = "sha256:d2b6dfbd57729e80a7f9fa23a446635eee5ad771dbb70045b88412d163e7d732"}, +] + +[package.dependencies] +nitypes = ">=0.1.0dev8" +protobuf = ">=4.21" + [[package]] name = "ni-python-styleguide" version = "0.4.7" @@ -3097,9 +3114,9 @@ docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.2,!=7.3)", "s test = ["covdefaults (>=2.3)", "coverage (>=7.2.7)", "coverage-enable-subprocess (>=1)", "flaky (>=3.7)", "packaging (>=23.1)", "pytest (>=7.4)", "pytest-env (>=0.8.2)", "pytest-freezer (>=0.4.8) ; platform_python_implementation == \"PyPy\" or platform_python_implementation == \"GraalVM\" or platform_python_implementation == \"CPython\" and sys_platform == \"win32\" and python_version >= \"3.13\"", "pytest-mock (>=3.11.1)", "pytest-randomly (>=3.12)", "pytest-timeout (>=2.1)", "setuptools (>=68)", "time-machine (>=2.10) ; platform_python_implementation == \"CPython\""] [extras] -grpc = ["grpcio", "ni-grpcdevice-v1-proto", "protobuf"] +grpc = ["grpcio", "ni-grpcdevice-v1-proto", "ni-protobuf-types", "protobuf"] [metadata] lock-version = "2.1" python-versions = ">=3.10,<4.0" -content-hash = "bda5af552d7a8f2471fc2111d0b330d112ec9193800369a4190ff3f4aef6608a" +content-hash = "3cc0e2b7926844135ce80270ec3184d9e24a0968fcdaa4333805b9a21e92de6e" diff --git a/pyproject.toml b/pyproject.toml index f82e0ea7d..9767adcfb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -40,7 +40,7 @@ documentation = "https://nidaqmx-python.readthedocs.io" nidaqmx = 'nidaqmx.__main__:main' [project.optional-dependencies] -grpc = ['grpcio (>=1.49.0,<2.0)', 'protobuf (>=4.21)', 'ni-grpcdevice-v1-proto (>=1.0.0)'] +grpc = ['grpcio (>=1.49.0,<2.0)', 'protobuf (>=4.21)', 'ni-grpcdevice-v1-proto (>=1.0.0)', 'ni-protobuf-types (>=1.0.0)'] [tool.poetry] diff --git a/src/codegen/protos/nidaqmx.proto b/src/codegen/protos/nidaqmx.proto index eb2ba1d25..6bc77a825 100644 --- a/src/codegen/protos/nidaqmx.proto +++ b/src/codegen/protos/nidaqmx.proto @@ -16,6 +16,7 @@ package nidaqmx_grpc; import "session.proto"; import "data_moniker.proto"; +import "ni/protobuf/types/waveform.proto"; import "google/protobuf/timestamp.proto"; service NiDAQmx { @@ -465,6 +466,10 @@ service NiDAQmx { rpc BeginWriteRaw(BeginWriteRawRequest) returns (BeginWriteRawResponse); rpc WriteToTEDSFromArray(WriteToTEDSFromArrayRequest) returns (WriteToTEDSFromArrayResponse); rpc WriteToTEDSFromFile(WriteToTEDSFromFileRequest) returns (WriteToTEDSFromFileResponse); + rpc ReadAnalogWaveforms(ReadAnalogWaveformsRequest) returns (ReadAnalogWaveformsResponse); + rpc ReadDigitalWaveforms(ReadDigitalWaveformsRequest) returns (ReadDigitalWaveformsResponse); + rpc WriteAnalogWaveforms(WriteAnalogWaveformsRequest) returns (WriteAnalogWaveformsResponse); + rpc WriteDigitalWaveforms(WriteDigitalWaveformsRequest) returns (WriteDigitalWaveformsResponse); } enum BufferUInt32Attribute { @@ -3558,6 +3563,12 @@ enum WriteBasicTEDSOptions { WRITE_BASIC_TEDS_OPTIONS_DO_NOT_WRITE = 12540; } +enum WaveformAttributeMode { + WAVEFORM_ATTRIBUTE_MODE_NONE = 0; + WAVEFORM_ATTRIBUTE_MODE_TIMING = 1; + WAVEFORM_ATTRIBUTE_MODE_EXTENDED_PROPERTIES = 2; +} + enum ChannelInt32AttributeValues { option allow_alias = true; CHANNEL_INT32_UNSPECIFIED = 0; @@ -11511,3 +11522,58 @@ message WriteToTEDSFromFileResponse { int32 status = 1; } +message ReadAnalogWaveformsRequest { + nidevice_grpc.Session task = 1; + int32 num_samps_per_chan = 2; + double timeout = 3; + oneof waveform_attribute_mode_enum { + WaveformAttributeMode waveform_attribute_mode = 4; + int32 waveform_attribute_mode_raw = 5; + } +} + +message ReadAnalogWaveformsResponse { + int32 status = 1; + repeated ni.protobuf.types.DoubleAnalogWaveform waveforms = 2; + int32 samps_per_chan_read = 3; +} + +message ReadDigitalWaveformsRequest { + nidevice_grpc.Session task = 1; + int32 num_samps_per_chan = 2; + double timeout = 3; + oneof waveform_attribute_mode_enum { + WaveformAttributeMode waveform_attribute_mode = 4; + int32 waveform_attribute_mode_raw = 5; + } +} + +message ReadDigitalWaveformsResponse { + int32 status = 1; + repeated ni.protobuf.types.DigitalWaveform waveforms = 2; + int32 samps_per_chan_read = 3; +} + +message WriteAnalogWaveformsRequest { + nidevice_grpc.Session task = 1; + bool auto_start = 2; + double timeout = 3; + repeated ni.protobuf.types.DoubleAnalogWaveform waveforms = 4; +} + +message WriteAnalogWaveformsResponse { + int32 status = 1; + int32 samps_per_chan_written = 2; +} + +message WriteDigitalWaveformsRequest { + nidevice_grpc.Session task = 1; + bool auto_start = 2; + double timeout = 3; + repeated ni.protobuf.types.DigitalWaveform waveforms = 4; +} + +message WriteDigitalWaveformsResponse { + int32 status = 1; + int32 samps_per_chan_written = 2; +} diff --git a/src/codegen/stub_generator.py b/src/codegen/stub_generator.py index 5a0316a06..30f8ff8a9 100644 --- a/src/codegen/stub_generator.py +++ b/src/codegen/stub_generator.py @@ -42,6 +42,7 @@ def generate_python_files( arguments = [ "protoc", f"--proto_path={str(proto_path)}", + f"--proto_path={str(NI_APIS_PATH)}", # ni-apis root path for ni.protobuf.types import resolution f"--proto_path={str(NI_APIS_PATH / 'ni' / 'grpcdevice' / 'v1')}", # ni-apis session.proto location for import resolution f"--proto_path={pkg_resources.resource_filename('grpc_tools', '_proto')}", f"--python_out={str(stubs_path)}", diff --git a/src/codegen/templates/_base_interpreter.py.mako b/src/codegen/templates/_base_interpreter.py.mako index 76f65813b..dc427f1ec 100644 --- a/src/codegen/templates/_base_interpreter.py.mako +++ b/src/codegen/templates/_base_interpreter.py.mako @@ -84,7 +84,7 @@ class BaseInterpreter(abc.ABC): waveform_attribute_mode: WaveformAttributeMode ) -> int: raise NotImplementedError - + @abc.abstractmethod def read_digital_waveform( self, @@ -140,7 +140,7 @@ class BaseInterpreter(abc.ABC): timeout: float ) -> int: raise NotImplementedError - + @abc.abstractmethod def write_digital_waveform( self, @@ -150,7 +150,7 @@ class BaseInterpreter(abc.ABC): timeout: float, ) -> int: raise NotImplementedError - + def write_digital_waveforms( self, task_handle: object, diff --git a/src/codegen/templates/_grpc_interpreter.py.mako b/src/codegen/templates/_grpc_interpreter.py.mako index 1ca5fae19..69126683b 100644 --- a/src/codegen/templates/_grpc_interpreter.py.mako +++ b/src/codegen/templates/_grpc_interpreter.py.mako @@ -35,9 +35,17 @@ from . import errors as errors from nidaqmx._base_interpreter import BaseEventHandler, BaseInterpreter from nidaqmx._stubs import nidaqmx_pb2 as grpc_types from nidaqmx._stubs import nidaqmx_pb2_grpc as nidaqmx_grpc +from ni.protobuf.types.waveform_conversion import ( + digital_waveform_from_protobuf, + digital_waveform_to_protobuf, + float64_analog_waveform_from_protobuf, + float64_analog_waveform_to_protobuf +) from nidaqmx.constants import WaveformAttributeMode from nidaqmx.error_codes import DAQmxErrors from nidaqmx._grpc_time import convert_time_to_timestamp, convert_timestamp_to_time +from nidaqmx._waveform_utils import get_num_samps_per_chan +from session_pb2 import Session _logger = logging.getLogger(__name__) @@ -255,7 +263,13 @@ class GrpcStubInterpreter(BaseInterpreter): waveform: AnalogWaveform[numpy.float64], waveform_attribute_mode: WaveformAttributeMode ) -> int: - raise NotImplementedError + return self.read_analog_waveforms( + task_handle, + number_of_samples_per_channel, + timeout, + [waveform], + waveform_attribute_mode + ) def read_analog_waveforms( self, @@ -265,7 +279,30 @@ class GrpcStubInterpreter(BaseInterpreter): waveforms: Sequence[AnalogWaveform[numpy.float64]], waveform_attribute_mode: WaveformAttributeMode ) -> int: - raise NotImplementedError + assert isinstance(task_handle, Session) + response = self._invoke( + self._client.ReadAnalogWaveforms, + grpc_types.ReadAnalogWaveformsRequest( + task=task_handle, + num_samps_per_chan=number_of_samples_per_channel, + timeout=timeout, + waveform_attribute_mode_raw=waveform_attribute_mode.value + )) + + if len(response.waveforms) != len(waveforms): + raise ValueError(f"Expected {len(waveforms)} waveforms but received {len(response.waveforms)} from server") + + for i, grpc_waveform in enumerate(response.waveforms): + temp_waveform = float64_analog_waveform_from_protobuf(grpc_waveform) + waveforms[i].load_data(temp_waveform.scaled_data) + + waveforms[i].scale_mode = temp_waveform.scale_mode + waveforms[i].timing = temp_waveform.timing + waveforms[i].extended_properties.clear() + waveforms[i].extended_properties.update(temp_waveform.extended_properties) + + self._check_for_error_from_response(response.status, samps_per_chan_read=response.samps_per_chan_read) + return response.samps_per_chan_read def read_digital_waveform( self, @@ -275,7 +312,15 @@ class GrpcStubInterpreter(BaseInterpreter): waveform: DigitalWaveform[Any], waveform_attribute_mode: WaveformAttributeMode ) -> int: - raise NotImplementedError + return self.read_digital_waveforms( + task_handle, + 1, # channel_count + number_of_samples_per_channel, + waveform.signal_count, # number_of_signals_per_sample + timeout, + [waveform], + waveform_attribute_mode + ) def read_digital_waveforms( self, @@ -287,7 +332,32 @@ class GrpcStubInterpreter(BaseInterpreter): waveforms: Sequence[DigitalWaveform[Any]], waveform_attribute_mode: WaveformAttributeMode, ) -> int: - raise NotImplementedError + assert isinstance(task_handle, Session) + response = self._invoke( + self._client.ReadDigitalWaveforms, + grpc_types.ReadDigitalWaveformsRequest( + task=task_handle, + num_samps_per_chan=number_of_samples_per_channel, + timeout=timeout, + waveform_attribute_mode_raw=waveform_attribute_mode.value + )) + + if len(response.waveforms) != len(waveforms): + raise ValueError(f"Expected {len(waveforms)} waveforms but received {len(response.waveforms)} from server") + + for i, grpc_waveform in enumerate(response.waveforms): + temp_waveform = digital_waveform_from_protobuf(grpc_waveform) + data = temp_waveform.data + if data.dtype != waveforms[i].dtype: + data = data.view(waveforms[i].dtype) + waveforms[i].load_data(data) + + waveforms[i].timing = temp_waveform.timing + waveforms[i].extended_properties.clear() + waveforms[i].extended_properties.update(temp_waveform.extended_properties) + + self._check_for_error_from_response(response.status, samps_per_chan_read=response.samps_per_chan_read) + return response.samps_per_chan_read def read_new_digital_waveforms( self, @@ -298,7 +368,20 @@ class GrpcStubInterpreter(BaseInterpreter): timeout: float, waveform_attribute_mode: WaveformAttributeMode, ) -> Sequence[DigitalWaveform[numpy.uint8]]: - raise NotImplementedError + assert isinstance(task_handle, Session) + response = self._invoke( + self._client.ReadDigitalWaveforms, + grpc_types.ReadDigitalWaveformsRequest( + task=task_handle, + num_samps_per_chan=number_of_samples_per_channel, + timeout=timeout, + waveform_attribute_mode_raw=waveform_attribute_mode.value + )) + + waveforms = [digital_waveform_from_protobuf(grpc_waveform) for grpc_waveform in response.waveforms] + + self._check_for_error_from_response(response.status, samps_per_chan_read=response.samps_per_chan_read) + return waveforms def write_analog_waveform( self, @@ -307,7 +390,7 @@ class GrpcStubInterpreter(BaseInterpreter): auto_start: bool, timeout: float ) -> int: - raise NotImplementedError + return self.write_analog_waveforms(task_handle, [waveform], auto_start, timeout) def write_analog_waveforms( self, @@ -316,7 +399,22 @@ class GrpcStubInterpreter(BaseInterpreter): auto_start: bool, timeout: float ) -> int: - raise NotImplementedError + assert isinstance(task_handle, Session) + num_samps_per_chan = get_num_samps_per_chan(waveforms) + + grpc_waveforms = [float64_analog_waveform_to_protobuf(waveform) for waveform in waveforms] + + response = self._invoke( + self._client.WriteAnalogWaveforms, + grpc_types.WriteAnalogWaveformsRequest( + task=task_handle, + auto_start=auto_start, + timeout=timeout, + waveforms=grpc_waveforms + )) + + self._check_for_error_from_response(response.status, samps_per_chan_written=response.samps_per_chan_written) + return response.samps_per_chan_written def write_digital_waveform( self, @@ -325,16 +423,31 @@ class GrpcStubInterpreter(BaseInterpreter): auto_start: bool, timeout: float, ) -> int: - raise NotImplementedError + return self.write_digital_waveforms(task_handle, [waveform], auto_start, timeout) def write_digital_waveforms( self, task_handle: object, - waveform: Sequence[DigitalWaveform[Any]], + waveforms: Sequence[DigitalWaveform[Any]], auto_start: bool, timeout: float, ) -> int: - raise NotImplementedError + assert isinstance(task_handle, Session) + num_samps_per_chan = get_num_samps_per_chan(waveforms) + + grpc_waveforms = [digital_waveform_to_protobuf(waveform) for waveform in waveforms] + + response = self._invoke( + self._client.WriteDigitalWaveforms, + grpc_types.WriteDigitalWaveformsRequest( + task=task_handle, + auto_start=auto_start, + timeout=timeout, + waveforms=grpc_waveforms + )) + + self._check_for_error_from_response(response.status, samps_per_chan_written=response.samps_per_chan_written) + return response.samps_per_chan_written def _assign_numpy_array(numpy_array, grpc_array): """ diff --git a/src/codegen/templates/_library_interpreter.py.mako b/src/codegen/templates/_library_interpreter.py.mako index 02d3bdd54..2a33f486a 100644 --- a/src/codegen/templates/_library_interpreter.py.mako +++ b/src/codegen/templates/_library_interpreter.py.mako @@ -37,6 +37,7 @@ from nidaqmx.constants import FillMode, WaveformAttributeMode from nidaqmx.error_codes import DAQmxErrors, DAQmxWarnings from nidaqmx.errors import DaqError, DaqFunctionNotSupportedError, DaqReadError, DaqWarning, DaqWriteError from nidaqmx._lib_time import AbsoluteTime +from nidaqmx._waveform_utils import get_num_samps_per_chan from nitypes.waveform.typing import ExtendedPropertyValue from nitypes.waveform import AnalogWaveform, DigitalWaveform, SampleIntervalMode, Timing, ExtendedPropertyDictionary @@ -824,15 +825,7 @@ class LibraryInterpreter(BaseInterpreter): timeout: float ) -> int: """Write analog waveforms.""" - assert len(waveforms) > 0 - num_samps_per_chan = waveforms[0].sample_count - - for waveform in waveforms: - if waveform.sample_count != num_samps_per_chan: - raise DaqError( - "The waveforms must all have the same sample count.", - DAQmxErrors.UNKNOWN - ) + num_samps_per_chan = get_num_samps_per_chan(waveforms) write_arrays = [self._get_analog_write_array(waveform) for waveform in waveforms] @@ -943,15 +936,7 @@ class LibraryInterpreter(BaseInterpreter): ) -> int: """Write digital waveforms.""" channel_count = len(waveforms) - assert channel_count > 0 - sample_count = waveforms[0].sample_count - - for waveform in waveforms: - if waveform.sample_count != sample_count: - raise DaqError( - "The waveforms must all have the same sample count.", - DAQmxErrors.UNKNOWN - ) + sample_count = get_num_samps_per_chan(waveforms) bytes_per_chan_array = numpy.array([wf.signal_count for wf in waveforms], dtype=numpy.uint32) diff --git a/src/handwritten/_waveform_utils.py b/src/handwritten/_waveform_utils.py new file mode 100644 index 000000000..003b5aab1 --- /dev/null +++ b/src/handwritten/_waveform_utils.py @@ -0,0 +1,18 @@ +from __future__ import annotations + +from collections.abc import Sequence +from typing import Any + +from nitypes.waveform import AnalogWaveform, DigitalWaveform + + +def get_num_samps_per_chan(waveforms: Sequence[AnalogWaveform[Any] | DigitalWaveform[Any]]) -> int: + """Validate that all waveforms have the same sample count and return it.""" + if len(waveforms) == 0: + raise ValueError("At least one waveform must be provided") + + num_samps_per_chan = waveforms[0].sample_count + for i, waveform in enumerate(waveforms): + if waveform.sample_count != num_samps_per_chan: + raise ValueError("The waveforms must all have the same sample count.") + return num_samps_per_chan diff --git a/tests/benchmark/test_analog_stream_readers.py b/tests/benchmark/test_analog_stream_readers.py index 2e3e29b3d..fc15f20a1 100644 --- a/tests/benchmark/test_analog_stream_readers.py +++ b/tests/benchmark/test_analog_stream_readers.py @@ -56,7 +56,6 @@ def test___analog_single_channel_reader___read_all_available( @pytest.mark.parametrize( "waveform_attribute_mode", _WAVEFORM_BENCHMARK_MODES, ids=_WAVEFORM_BENCHMARK_MODE_IDS ) -@pytest.mark.grpc_skip(reason="read_analog_waveform not implemented in GRPC") def test___analog_single_channel_reader___read_waveform( benchmark: BenchmarkFixture, ai_benchmark_task: Task, @@ -112,7 +111,6 @@ def test___analog_multi_channel_reader___read_all_available( @pytest.mark.parametrize( "waveform_attribute_mode", _WAVEFORM_BENCHMARK_MODES, ids=_WAVEFORM_BENCHMARK_MODE_IDS ) -@pytest.mark.grpc_skip(reason="read_analog_waveforms not implemented in GRPC") def test___analog_multi_channel_reader___read_waveform( benchmark: BenchmarkFixture, ai_benchmark_task: Task, diff --git a/tests/benchmark/test_analog_stream_writers.py b/tests/benchmark/test_analog_stream_writers.py index feb3b994f..9ce63f7ca 100644 --- a/tests/benchmark/test_analog_stream_writers.py +++ b/tests/benchmark/test_analog_stream_writers.py @@ -37,7 +37,6 @@ def test___analog_single_channel_writer___write_many_sample( @pytest.mark.benchmark(group="analog_writers") @pytest.mark.parametrize("num_samples", [1, 1000]) -@pytest.mark.grpc_skip(reason="write_analog_waveform not implemented in GRPC") def test___analog_single_channel_writer___write_waveform( benchmark: BenchmarkFixture, ao_benchmark_task: nidaqmx.Task, @@ -80,7 +79,6 @@ def test___analog_multi_channel_writer___write_many_sample( @pytest.mark.benchmark(group="analog_writers") @pytest.mark.parametrize("num_channels", [1, 2]) @pytest.mark.parametrize("num_samples", [1, 1000]) -@pytest.mark.grpc_skip(reason="write_analog_waveform not implemented in GRPC") def test___analog_multi_channel_writer___write_waveform( benchmark: BenchmarkFixture, ao_benchmark_task: nidaqmx.Task, diff --git a/tests/benchmark/test_digital_stream_readers.py b/tests/benchmark/test_digital_stream_readers.py index c6262393c..a6a350c6d 100644 --- a/tests/benchmark/test_digital_stream_readers.py +++ b/tests/benchmark/test_digital_stream_readers.py @@ -53,7 +53,6 @@ def test___digital_single_channel_reader___read_many_sample_port_uint32( @pytest.mark.benchmark(group="digital_readers") @pytest.mark.parametrize("num_samples", [1, 100]) @pytest.mark.parametrize("num_lines", [1, 2, 8]) -@pytest.mark.grpc_skip(reason="read_digital_waveform not implemented in GRPC") def test___digital_single_channel_reader___read_waveform_lines( benchmark: BenchmarkFixture, di_lines_benchmark_task: nidaqmx.Task, @@ -68,7 +67,6 @@ def test___digital_single_channel_reader___read_waveform_lines( @pytest.mark.benchmark(group="digital_readers") @pytest.mark.parametrize("num_samples", [1, 100]) -@pytest.mark.grpc_skip(reason="read_digital_waveform not implemented in GRPC") def test___digital_single_channel_reader___read_waveform_port( benchmark: BenchmarkFixture, di_port32_benchmark_task: nidaqmx.Task, @@ -125,7 +123,6 @@ def test___digital_multi_channel_reader___read_many_sample_port_uint32( @pytest.mark.parametrize("num_channels", [1, 2]) @pytest.mark.parametrize("num_samples", [1, 100]) @pytest.mark.parametrize("num_lines", [1, 2, 8]) -@pytest.mark.grpc_skip(reason="read_digital_waveform not implemented in GRPC") def test___digital_multi_channel_reader___read_waveform_lines( benchmark: BenchmarkFixture, di_lines_benchmark_task: nidaqmx.Task, @@ -141,7 +138,6 @@ def test___digital_multi_channel_reader___read_waveform_lines( @pytest.mark.benchmark(group="digital_readers") @pytest.mark.parametrize("num_samples", [1, 100]) -@pytest.mark.grpc_skip(reason="read_digital_waveform not implemented in GRPC") def test___digital_multi_channel_reader___read_waveform_port( benchmark: BenchmarkFixture, di_port32_benchmark_task: nidaqmx.Task, diff --git a/tests/benchmark/test_digital_stream_writers.py b/tests/benchmark/test_digital_stream_writers.py index 14081326b..88b61bd33 100644 --- a/tests/benchmark/test_digital_stream_writers.py +++ b/tests/benchmark/test_digital_stream_writers.py @@ -53,7 +53,6 @@ def test___digital_single_channel_writer___write_many_sample_port_uint32( @pytest.mark.benchmark(group="digital_writers") @pytest.mark.parametrize("num_samples", [1, 100]) @pytest.mark.parametrize("num_lines", [1, 2, 8]) -@pytest.mark.grpc_skip(reason="write_digital_waveform not implemented in GRPC") def test___digital_single_channel_writer___write_waveform_lines( benchmark: BenchmarkFixture, do_lines_benchmark_task: nidaqmx.Task, @@ -68,7 +67,6 @@ def test___digital_single_channel_writer___write_waveform_lines( @pytest.mark.benchmark(group="digital_writers") @pytest.mark.parametrize("num_samples", [1, 100]) -@pytest.mark.grpc_skip(reason="write_digital_waveform not implemented in GRPC") def test___digital_single_channel_writer___write_waveform_port( benchmark: BenchmarkFixture, do_port32_benchmark_task: nidaqmx.Task, @@ -125,7 +123,6 @@ def test___digital_multi_channel_writer___write_many_sample_port_uint32( @pytest.mark.parametrize("num_channels", [1, 2]) @pytest.mark.parametrize("num_samples", [1, 100]) @pytest.mark.parametrize("num_lines", [1, 2, 8]) -@pytest.mark.grpc_skip(reason="write_digital_waveform not implemented in GRPC") def test___digital_multi_channel_writer___write_waveform_lines( benchmark: BenchmarkFixture, do_lines_benchmark_task: nidaqmx.Task, @@ -141,7 +138,6 @@ def test___digital_multi_channel_writer___write_waveform_lines( @pytest.mark.benchmark(group="digital_writers") @pytest.mark.parametrize("num_samples", [1, 100]) -@pytest.mark.grpc_skip(reason="write_digital_waveform not implemented in GRPC") def test___digital_multi_channel_writer___write_waveform_port( benchmark: BenchmarkFixture, do_port32_benchmark_task: nidaqmx.Task, diff --git a/tests/benchmark/test_task.py b/tests/benchmark/test_task.py index 90ad446ec..ab3428195 100644 --- a/tests/benchmark/test_task.py +++ b/tests/benchmark/test_task.py @@ -55,7 +55,6 @@ def test___task___read_analog( @pytest.mark.parametrize( "waveform_attribute_mode", _WAVEFORM_BENCHMARK_MODES, ids=_WAVEFORM_BENCHMARK_MODE_IDS ) -@pytest.mark.grpc_skip(reason="read_analog_waveforms not implemented in GRPC") def test___task___read_analog_waveform( benchmark: BenchmarkFixture, ai_benchmark_task: Task, @@ -84,7 +83,6 @@ def test___task___write_analog( @pytest.mark.benchmark(group="analog_writers") @pytest.mark.parametrize("num_channels", [1, 2]) @pytest.mark.parametrize("num_samples", [1, 1000]) -@pytest.mark.grpc_skip(reason="write_analog_waveform not implemented in GRPC") def test___task___write_analog_waveform( benchmark: BenchmarkFixture, ao_benchmark_task: Task, @@ -124,7 +122,6 @@ def test___task___read_digital_port( @pytest.mark.parametrize("num_channels", [1, 2]) @pytest.mark.parametrize("num_samples", [1, 100]) @pytest.mark.parametrize("num_lines", [1, 2, 8]) -@pytest.mark.grpc_skip(reason="read_digital_waveform not implemented in GRPC") def test___task___read_digital_lines_waveform( benchmark: BenchmarkFixture, di_lines_benchmark_task: Task, @@ -137,7 +134,6 @@ def test___task___read_digital_lines_waveform( @pytest.mark.benchmark(group="digital_readers") @pytest.mark.parametrize("num_samples", [1, 100]) -@pytest.mark.grpc_skip(reason="read_digital_waveform not implemented in GRPC") def test___task___read_digital_port_waveform( benchmark: BenchmarkFixture, di_port32_benchmark_task: Task, @@ -176,7 +172,6 @@ def test___task___write_digital_port( @pytest.mark.parametrize("num_channels", [1, 2]) @pytest.mark.parametrize("num_samples", [1, 100]) @pytest.mark.parametrize("num_lines", [1, 2, 8]) -@pytest.mark.grpc_skip(reason="write_digital_waveform not implemented in GRPC") def test___task___write_digital_lines_waveform( benchmark: BenchmarkFixture, do_lines_benchmark_task: Task, @@ -190,7 +185,6 @@ def test___task___write_digital_lines_waveform( @pytest.mark.benchmark(group="digital_writers") @pytest.mark.parametrize("num_samples", [1, 100]) -@pytest.mark.grpc_skip(reason="write_digital_waveform not implemented in GRPC") def test___task___write_digital_port_waveform( benchmark: BenchmarkFixture, do_port32_benchmark_task: Task, diff --git a/tests/component/stream_readers/test_analog_multi_channel_reader.py b/tests/component/stream_readers/test_analog_multi_channel_reader.py index bfaac86ef..cb01f3d74 100644 --- a/tests/component/stream_readers/test_analog_multi_channel_reader.py +++ b/tests/component/stream_readers/test_analog_multi_channel_reader.py @@ -6,7 +6,7 @@ import numpy import pytest -from hightime import datetime as ht_datetime, timedelta as ht_timedelta +from hightime import timedelta as ht_timedelta from nitypes.waveform import AnalogWaveform, SampleIntervalMode import nidaqmx @@ -94,7 +94,6 @@ def test___analog_multi_channel_reader___read_waveforms_feature_disabled___raise assert "NIDAQMX_ENABLE_WAVEFORM_SUPPORT" in error_message -@pytest.mark.grpc_skip(reason="read_analog_waveforms not implemented in GRPC") def test___analog_multi_channel_reader___read_waveforms___returns_valid_waveforms( ai_multi_channel_task_with_timing: nidaqmx.Task, ) -> None: @@ -113,7 +112,6 @@ def test___analog_multi_channel_reader___read_waveforms___returns_valid_waveform assert isinstance(waveform, AnalogWaveform) expected = _get_voltage_offset_for_chan(chan_index) assert waveform.scaled_data == pytest.approx(expected, abs=AI_VOLTAGE_EPSILON) - assert isinstance(waveform.timing.timestamp, ht_datetime) assert _is_timestamp_close_to_now(waveform.timing.timestamp) assert waveform.timing.sample_interval == ht_timedelta(seconds=1 / 1000) assert ( @@ -123,7 +121,6 @@ def test___analog_multi_channel_reader___read_waveforms___returns_valid_waveform assert waveform.sample_count == samples_to_read -@pytest.mark.grpc_skip(reason="read_analog_waveforms not implemented in GRPC") def test___analog_multi_channel_reader___read_waveforms_no_args___returns_valid_waveforms( ai_multi_channel_task_with_timing: nidaqmx.Task, ) -> None: @@ -141,7 +138,6 @@ def test___analog_multi_channel_reader___read_waveforms_no_args___returns_valid_ assert isinstance(waveform, AnalogWaveform) expected = _get_voltage_offset_for_chan(chan_index) assert waveform.scaled_data == pytest.approx(expected, abs=AI_VOLTAGE_EPSILON) - assert isinstance(waveform.timing.timestamp, ht_datetime) assert _is_timestamp_close_to_now(waveform.timing.timestamp) assert waveform.timing.sample_interval == ht_timedelta(seconds=1 / 1000) assert ( @@ -151,7 +147,6 @@ def test___analog_multi_channel_reader___read_waveforms_no_args___returns_valid_ assert waveform.sample_count == 50 -@pytest.mark.grpc_skip(reason="read_analog_waveforms not implemented in GRPC") def test___analog_multi_channel_reader___read_waveforms_in_place___populates_valid_waveforms( ai_multi_channel_task_with_timing: nidaqmx.Task, ) -> None: @@ -174,7 +169,6 @@ def test___analog_multi_channel_reader___read_waveforms_in_place___populates_val assert isinstance(waveform, AnalogWaveform) expected = _get_voltage_offset_for_chan(chan_index) assert waveform.scaled_data == pytest.approx(expected, abs=AI_VOLTAGE_EPSILON) - assert isinstance(waveform.timing.timestamp, ht_datetime) assert _is_timestamp_close_to_now(waveform.timing.timestamp) assert waveform.timing.sample_interval == ht_timedelta(seconds=1 / 1000) assert ( @@ -184,7 +178,6 @@ def test___analog_multi_channel_reader___read_waveforms_in_place___populates_val assert waveform.sample_count == samples_to_read -@pytest.mark.grpc_skip(reason="read_analog_waveforms not implemented in GRPC") def test___analog_multi_channel_reader___read_into_undersized_waveforms_without_reallocation___throws_exception( ai_multi_channel_task_with_timing: nidaqmx.Task, ) -> None: @@ -203,7 +196,6 @@ def test___analog_multi_channel_reader___read_into_undersized_waveforms_without_ assert exc_info.value.args[0].startswith("The waveform at index 1 does not have enough space") -@pytest.mark.grpc_skip(reason="read_analog_waveforms not implemented in GRPC") def test___analog_multi_channel_reader___read_into_undersized_waveforms___returns_valid_waveforms( ai_multi_channel_task_with_timing: nidaqmx.Task, ) -> None: @@ -226,7 +218,6 @@ def test___analog_multi_channel_reader___read_into_undersized_waveforms___return assert isinstance(waveform, AnalogWaveform) expected = _get_voltage_offset_for_chan(chan_index) assert waveform.scaled_data == pytest.approx(expected, abs=AI_VOLTAGE_EPSILON) - assert isinstance(waveform.timing.timestamp, ht_datetime) assert _is_timestamp_close_to_now(waveform.timing.timestamp) assert waveform.timing.sample_interval == ht_timedelta(seconds=1 / 1000) assert ( @@ -236,7 +227,6 @@ def test___analog_multi_channel_reader___read_into_undersized_waveforms___return assert waveform.sample_count == samples_to_read -@pytest.mark.grpc_skip(reason="read_analog_waveform not implemented in GRPC") def test___analog_multi_channel_reader___reuse_waveform_in_place_with_different_sample_counts___populates_valid_waveforms( generate_task: Callable[[], nidaqmx.Task], sim_6363_device: nidaqmx.system.Device ) -> None: @@ -290,7 +280,6 @@ def _make_multi_channel_reader(chan_a_index, chan_b_index, samps_per_chan): assert waveforms[1].channel_name == f"{sim_6363_device.name}/ai5" -@pytest.mark.grpc_skip(reason="read_analog_waveforms not implemented in GRPC") def test___analog_multi_channel_reader___read_with_wrong_number_of_waveforms___throws_exception( ai_multi_channel_task_with_timing: nidaqmx.Task, ) -> None: @@ -308,7 +297,6 @@ def test___analog_multi_channel_reader___read_with_wrong_number_of_waveforms___t assert "does not match the number of channels" in exc_info.value.args[0] -@pytest.mark.grpc_skip(reason="read_analog_waveforms not implemented in GRPC") def test___analog_multi_channel_reader_with_timing_flag___read_waveforms___only_includes_timing_data( ai_multi_channel_task_with_timing: nidaqmx.Task, ) -> None: @@ -329,7 +317,6 @@ def test___analog_multi_channel_reader_with_timing_flag___read_waveforms___only_ assert isinstance(waveform, AnalogWaveform) expected = _get_voltage_offset_for_chan(chan_index) assert waveform.scaled_data == pytest.approx(expected, abs=AI_VOLTAGE_EPSILON) - assert isinstance(waveform.timing.timestamp, ht_datetime) assert _is_timestamp_close_to_now(waveform.timing.timestamp) assert waveform.timing.sample_interval_mode == SampleIntervalMode.REGULAR assert waveform.timing.sample_interval == ht_timedelta(seconds=1 / 1000) @@ -338,7 +325,6 @@ def test___analog_multi_channel_reader_with_timing_flag___read_waveforms___only_ assert waveform.sample_count == samples_to_read -@pytest.mark.grpc_skip(reason="read_analog_waveforms not implemented in GRPC") def test___analog_multi_channel_reader_with_extended_properties_flag___read_waveforms___only_includes_extended_properties( ai_multi_channel_task_with_timing: nidaqmx.Task, ) -> None: @@ -367,7 +353,6 @@ def test___analog_multi_channel_reader_with_extended_properties_flag___read_wave assert waveform.sample_count == samples_to_read -@pytest.mark.grpc_skip(reason="read_analog_waveforms not implemented in GRPC") def test___analog_multi_channel_reader_with_both_flags___read_waveforms___includes_both_timing_and_extended_properties( ai_multi_channel_task_with_timing: nidaqmx.Task, ) -> None: @@ -390,7 +375,6 @@ def test___analog_multi_channel_reader_with_both_flags___read_waveforms___includ assert isinstance(waveform, AnalogWaveform) expected = _get_voltage_offset_for_chan(chan_index) assert waveform.scaled_data == pytest.approx(expected, abs=AI_VOLTAGE_EPSILON) - assert isinstance(waveform.timing.timestamp, ht_datetime) assert _is_timestamp_close_to_now(waveform.timing.timestamp) assert waveform.timing.sample_interval_mode == SampleIntervalMode.REGULAR assert waveform.timing.sample_interval == ht_timedelta(seconds=1 / 1000) @@ -401,7 +385,6 @@ def test___analog_multi_channel_reader_with_both_flags___read_waveforms___includ assert waveform.sample_count == samples_to_read -@pytest.mark.grpc_skip(reason="read_analog_waveforms not implemented in GRPC") def test___analog_multi_channel_reader_with_none_flag___read_waveforms___minimal_waveform_data( ai_multi_channel_task_with_timing: nidaqmx.Task, ) -> None: diff --git a/tests/component/stream_readers/test_analog_single_channel_reader.py b/tests/component/stream_readers/test_analog_single_channel_reader.py index ce0f032a6..d7e7c5c5a 100644 --- a/tests/component/stream_readers/test_analog_single_channel_reader.py +++ b/tests/component/stream_readers/test_analog_single_channel_reader.py @@ -6,7 +6,7 @@ import numpy import pytest -from hightime import datetime as ht_datetime, timedelta as ht_timedelta +from hightime import timedelta as ht_timedelta from nitypes.waveform import AnalogWaveform, SampleIntervalMode import nidaqmx @@ -75,7 +75,6 @@ def test___analog_single_channel_reader___read_waveform_feature_disabled___raise assert "NIDAQMX_ENABLE_WAVEFORM_SUPPORT" in error_message -@pytest.mark.grpc_skip(reason="read_analog_waveform not implemented in GRPC") def test___analog_single_channel_reader___read_waveform___returns_valid_waveform( ai_single_channel_task_with_timing: nidaqmx.Task, ) -> None: @@ -89,7 +88,6 @@ def test___analog_single_channel_reader___read_waveform___returns_valid_waveform assert isinstance(waveform, AnalogWaveform) expected = _get_voltage_offset_for_chan(0) assert waveform.scaled_data == pytest.approx(expected, abs=AI_VOLTAGE_EPSILON) - assert isinstance(waveform.timing.timestamp, ht_datetime) assert _is_timestamp_close_to_now(waveform.timing.timestamp) assert waveform.timing.sample_interval == ht_timedelta(seconds=1 / 1000) assert waveform.channel_name == ai_single_channel_task_with_timing.ai_channels[0].name @@ -97,7 +95,6 @@ def test___analog_single_channel_reader___read_waveform___returns_valid_waveform assert waveform.sample_count == samples_to_read -@pytest.mark.grpc_skip(reason="read_analog_waveform not implemented in GRPC") def test___analog_single_channel_reader___read_waveform_no_args___returns_valid_waveform( ai_single_channel_task_with_timing: nidaqmx.Task, ) -> None: @@ -110,7 +107,6 @@ def test___analog_single_channel_reader___read_waveform_no_args___returns_valid_ assert isinstance(waveform, AnalogWaveform) expected = _get_voltage_offset_for_chan(0) assert waveform.scaled_data == pytest.approx(expected, abs=AI_VOLTAGE_EPSILON) - assert isinstance(waveform.timing.timestamp, ht_datetime) assert _is_timestamp_close_to_now(waveform.timing.timestamp) assert waveform.timing.sample_interval == ht_timedelta(seconds=1 / 1000) assert waveform.channel_name == ai_single_channel_task_with_timing.ai_channels[0].name @@ -118,7 +114,6 @@ def test___analog_single_channel_reader___read_waveform_no_args___returns_valid_ assert waveform.sample_count == 50 -@pytest.mark.grpc_skip(reason="read_analog_waveform not implemented in GRPC") def test___analog_single_channel_reader___read_waveform_in_place___populates_valid_waveform( ai_single_channel_task_with_timing: nidaqmx.Task, ) -> None: @@ -132,7 +127,6 @@ def test___analog_single_channel_reader___read_waveform_in_place___populates_val assert isinstance(waveform, AnalogWaveform) expected = _get_voltage_offset_for_chan(0) assert waveform.scaled_data == pytest.approx(expected, abs=AI_VOLTAGE_EPSILON) - assert isinstance(waveform.timing.timestamp, ht_datetime) assert _is_timestamp_close_to_now(waveform.timing.timestamp) assert waveform.timing.sample_interval == ht_timedelta(seconds=1 / 1000) assert waveform.channel_name == ai_single_channel_task_with_timing.ai_channels[0].name @@ -140,7 +134,6 @@ def test___analog_single_channel_reader___read_waveform_in_place___populates_val assert waveform.sample_count == samples_to_read -@pytest.mark.grpc_skip(reason="read_analog_waveform not implemented in GRPC") def test___analog_single_channel_reader___reuse_waveform_in_place___overwrites_data_timing_and_attributes( generate_task: Callable[[], nidaqmx.Task], sim_6363_device: nidaqmx.system.Device ) -> None: @@ -173,7 +166,6 @@ def _make_single_channel_reader(chan_index, offset, rate): assert timestamp2 > timestamp1 -@pytest.mark.grpc_skip(reason="read_analog_waveform not implemented in GRPC") def test___analog_single_channel_reader___read_into_undersized_waveform_without_reallocation___throws_exception( ai_single_channel_task_with_timing: nidaqmx.Task, ) -> None: @@ -188,7 +180,6 @@ def test___analog_single_channel_reader___read_into_undersized_waveform_without_ assert exc_info.value.args[0].startswith("The provided waveform does not have enough space") -@pytest.mark.grpc_skip(reason="read_analog_waveform not implemented in GRPC") def test___analog_single_channel_reader___read_into_undersized_waveform___returns_valid_waveform( ai_single_channel_task_with_timing: nidaqmx.Task, ) -> None: @@ -202,7 +193,6 @@ def test___analog_single_channel_reader___read_into_undersized_waveform___return assert isinstance(waveform, AnalogWaveform) expected = _get_voltage_offset_for_chan(0) assert waveform.scaled_data == pytest.approx(expected, abs=AI_VOLTAGE_EPSILON) - assert isinstance(waveform.timing.timestamp, ht_datetime) assert _is_timestamp_close_to_now(waveform.timing.timestamp) assert waveform.timing.sample_interval == ht_timedelta(seconds=1 / 1000) assert waveform.channel_name == ai_single_channel_task_with_timing.ai_channels[0].name @@ -210,7 +200,6 @@ def test___analog_single_channel_reader___read_into_undersized_waveform___return assert waveform.sample_count == samples_to_read -@pytest.mark.grpc_skip(reason="read_analog_waveform not implemented in GRPC") def test___analog_single_channel_reader___reuse_waveform_in_place_with_different_sample_counts___populates_valid_waveforms( generate_task: Callable[[], nidaqmx.Task], sim_6363_device: nidaqmx.system.Device ) -> None: @@ -247,7 +236,6 @@ def _make_single_channel_reader(chan_index, offset, samps_per_chan): assert waveform.channel_name == f"{sim_6363_device.name}/ai2" -@pytest.mark.grpc_skip(reason="read_analog_waveform not implemented in GRPC") def test___analog_single_channel_reader___read_waveform_high_sample_rate___returns_correct_sample_interval( ai_single_channel_task_with_high_rate: nidaqmx.Task, ) -> None: @@ -261,7 +249,6 @@ def test___analog_single_channel_reader___read_waveform_high_sample_rate___retur assert isinstance(waveform, AnalogWaveform) expected = _get_voltage_offset_for_chan(0) assert waveform.scaled_data == pytest.approx(expected, abs=AI_VOLTAGE_EPSILON) - assert isinstance(waveform.timing.timestamp, ht_datetime) assert _is_timestamp_close_to_now(waveform.timing.timestamp) assert waveform.timing.sample_interval == ht_timedelta(seconds=1 / 10_000_000) assert waveform.channel_name == ai_single_channel_task_with_high_rate.ai_channels[0].name @@ -269,7 +256,6 @@ def test___analog_single_channel_reader___read_waveform_high_sample_rate___retur assert waveform.sample_count == samples_to_read -@pytest.mark.grpc_skip(reason="read_analog_waveform not implemented in GRPC") def test___analog_single_channel_reader_with_timing_flag___read_waveform___only_includes_timing_data( ai_single_channel_task_with_timing: nidaqmx.Task, ) -> None: @@ -286,7 +272,6 @@ def test___analog_single_channel_reader_with_timing_flag___read_waveform___only_ assert waveform.sample_count == samples_to_read expected = _get_voltage_offset_for_chan(0) assert waveform.scaled_data == pytest.approx(expected, abs=AI_VOLTAGE_EPSILON) - assert isinstance(waveform.timing.timestamp, ht_datetime) assert _is_timestamp_close_to_now(waveform.timing.timestamp) assert waveform.timing.sample_interval_mode == SampleIntervalMode.REGULAR assert waveform.timing.sample_interval == ht_timedelta(seconds=1 / 1000) @@ -294,7 +279,6 @@ def test___analog_single_channel_reader_with_timing_flag___read_waveform___only_ assert waveform.units == "" -@pytest.mark.grpc_skip(reason="read_analog_waveform not implemented in GRPC") def test___analog_single_channel_reader_with_extended_properties_flag___read_waveform___only_includes_extended_properties( ai_single_channel_task_with_timing: nidaqmx.Task, ) -> None: @@ -316,7 +300,6 @@ def test___analog_single_channel_reader_with_extended_properties_flag___read_wav assert waveform.units == "Volts" -@pytest.mark.grpc_skip(reason="read_analog_waveform not implemented in GRPC") def test___analog_single_channel_reader_with_both_flags___read_waveform___includes_both_timing_and_extended_properties( ai_single_channel_task_with_timing: nidaqmx.Task, ) -> None: @@ -335,7 +318,6 @@ def test___analog_single_channel_reader_with_both_flags___read_waveform___includ assert waveform.sample_count == samples_to_read expected = _get_voltage_offset_for_chan(0) assert waveform.scaled_data == pytest.approx(expected, abs=AI_VOLTAGE_EPSILON) - assert isinstance(waveform.timing.timestamp, ht_datetime) assert _is_timestamp_close_to_now(waveform.timing.timestamp) assert waveform.timing.sample_interval_mode == SampleIntervalMode.REGULAR assert waveform.timing.sample_interval == ht_timedelta(seconds=1 / 1000) @@ -343,7 +325,6 @@ def test___analog_single_channel_reader_with_both_flags___read_waveform___includ assert waveform.units == "Volts" -@pytest.mark.grpc_skip(reason="read_analog_waveform not implemented in GRPC") def test___analog_single_channel_reader_with_none_flag___read_waveform___minimal_waveform_data( ai_single_channel_task_with_timing: nidaqmx.Task, ) -> None: diff --git a/tests/component/stream_readers/test_digital_multi_channel_reader.py b/tests/component/stream_readers/test_digital_multi_channel_reader.py index 5398a79e7..9d6569daf 100644 --- a/tests/component/stream_readers/test_digital_multi_channel_reader.py +++ b/tests/component/stream_readers/test_digital_multi_channel_reader.py @@ -327,7 +327,6 @@ def test___digital_multi_channel_multi_line_reader___read_waveforms_feature_disa assert "NIDAQMX_ENABLE_WAVEFORM_SUPPORT" in error_message -@pytest.mark.grpc_skip(reason="read_digital_waveforms not implemented in GRPC") def test___digital_multi_channel_multi_line_reader___read_waveforms___returns_valid_waveforms( di_multi_chan_multi_line_timing_task: nidaqmx.Task, ) -> None: @@ -352,7 +351,6 @@ def test___digital_multi_channel_multi_line_reader___read_waveforms___returns_va assert waveform.sample_count == samples_to_read -@pytest.mark.grpc_skip(reason="read_digital_waveforms not implemented in GRPC") def test___digital_multi_channel_different_lines_reader___read_waveforms___returns_valid_waveforms( di_multi_chan_diff_lines_timing_task: nidaqmx.Task, sim_6363_device: nidaqmx.system.Device, @@ -404,7 +402,6 @@ def test___digital_multi_channel_different_lines_reader___read_waveforms___retur ] -@pytest.mark.grpc_skip(reason="read_digital_waveforms not implemented in GRPC") def test___digital_multi_channel_lines_and_port_reader___read_waveforms___returns_valid_waveforms( di_multi_chan_lines_and_port_task: nidaqmx.Task, sim_6363_device: nidaqmx.system.Device, @@ -470,7 +467,6 @@ def test___digital_multi_channel_lines_and_port_reader___read_waveforms___return ] -@pytest.mark.grpc_skip(reason="read_digital_waveforms not implemented in GRPC") def test___digital_multi_channel_different_lines_reader___read_mismatched_waveforms___throws_exception( di_multi_chan_diff_lines_timing_task: nidaqmx.Task, ) -> None: @@ -488,10 +484,9 @@ def test___digital_multi_channel_different_lines_reader___read_mismatched_wavefo reader.read_waveforms(waveforms, samples_to_read) error_message = exc_info.value.args[0] - assert "waveforms[1].data has 3 signals, but expected 2" in error_message + assert "2" in error_message -@pytest.mark.grpc_skip(reason="read_digital_waveforms not implemented in GRPC") def test___digital_multi_channel_multi_line_reader___read_waveforms_no_args___returns_valid_waveforms( di_multi_chan_multi_line_timing_task: nidaqmx.Task, ) -> None: @@ -515,7 +510,6 @@ def test___digital_multi_channel_multi_line_reader___read_waveforms_no_args___re assert waveform.sample_count == 50 -@pytest.mark.grpc_skip(reason="read_digital_waveforms not implemented in GRPC") def test___digital_multi_channel_multi_line_reader___read_waveforms_in_place___populates_valid_waveforms( di_multi_chan_multi_line_timing_task: nidaqmx.Task, ) -> None: @@ -540,7 +534,6 @@ def test___digital_multi_channel_multi_line_reader___read_waveforms_in_place___p assert waveform.sample_count == samples_to_read -@pytest.mark.grpc_skip(reason="read_digital_waveforms not implemented in GRPC") def test___digital_multi_channel_multi_line_reader___reuse_waveform_in_place___overwrites_data_timing_and_attributes( generate_task: Callable[[], nidaqmx.Task], sim_6363_device: nidaqmx.system.Device ) -> None: @@ -579,7 +572,6 @@ def _make_multi_channel_multi_line_reader(lines_start, rate): assert ts1 > ts0 -@pytest.mark.grpc_skip(reason="read_digital_waveforms not implemented in GRPC") def test___digital_multi_channel_multi_line_reader___read_into_undersized_waveforms_without_reallocation___throws_exception( di_multi_chan_multi_line_timing_task: nidaqmx.Task, ) -> None: @@ -595,7 +587,6 @@ def test___digital_multi_channel_multi_line_reader___read_into_undersized_wavefo assert exc_info.value.args[0].startswith("The waveform at index 0 does not have enough space") -@pytest.mark.grpc_skip(reason="read_digital_waveforms not implemented in GRPC") def test___digital_multi_channel_multi_line_reader___read_into_undersized_waveforms___returns_valid_waveforms( di_multi_chan_multi_line_timing_task: nidaqmx.Task, ) -> None: @@ -620,7 +611,6 @@ def test___digital_multi_channel_multi_line_reader___read_into_undersized_wavefo assert waveform.sample_count == samples_to_read -@pytest.mark.grpc_skip(reason="read_digital_waveform not implemented in GRPC") def test___digital_multi_channel_reader___reuse_waveform_in_place_with_different_sample_counts___populates_valid_waveforms( generate_task: Callable[[], nidaqmx.Task], sim_6363_device: nidaqmx.system.Device ) -> None: @@ -672,7 +662,6 @@ def _make_multi_channel_reader(chan_a_index, chan_b_index, samps_per_chan): assert waveforms[1].channel_name == f"{sim_6363_device.name}/port0/line5" -@pytest.mark.grpc_skip(reason="read_digital_waveforms not implemented in GRPC") def test___digital_multi_channel_multi_line_reader___read_with_wrong_number_of_waveforms___throws_exception( di_multi_chan_multi_line_timing_task: nidaqmx.Task, ) -> None: @@ -688,7 +677,6 @@ def test___digital_multi_channel_multi_line_reader___read_with_wrong_number_of_w assert "does not match the number of channels" in exc_info.value.args[0] -@pytest.mark.grpc_skip(reason="read_digital_waveforms not implemented in GRPC") def test___digital_multi_channel_multi_line_reader_with_timing_flag___read_waveforms___only_includes_timing_data( di_multi_chan_multi_line_timing_task: nidaqmx.Task, ) -> None: @@ -716,7 +704,6 @@ def test___digital_multi_channel_multi_line_reader_with_timing_flag___read_wavef assert waveform.sample_count == samples_to_read -@pytest.mark.grpc_skip(reason="read_digital_waveforms not implemented in GRPC") def test___digital_multi_channel_multi_line_reader_with_extended_properties_flag___read_waveforms___only_includes_extended_properties( di_multi_chan_multi_line_timing_task: nidaqmx.Task, ) -> None: @@ -742,7 +729,6 @@ def test___digital_multi_channel_multi_line_reader_with_extended_properties_flag assert waveform.sample_count == samples_to_read -@pytest.mark.grpc_skip(reason="read_digital_waveforms not implemented in GRPC") def test___digital_multi_channel_multi_line_reader_with_both_flags___read_waveforms___includes_both_timing_and_extended_properties( di_multi_chan_multi_line_timing_task: nidaqmx.Task, ) -> None: @@ -772,7 +758,6 @@ def test___digital_multi_channel_multi_line_reader_with_both_flags___read_wavefo assert waveform.sample_count == samples_to_read -@pytest.mark.grpc_skip(reason="read_digital_waveforms not implemented in GRPC") def test___digital_multi_channel_multi_line_reader_with_none_flag___read_waveforms___minimal_waveform_data( di_multi_chan_multi_line_timing_task: nidaqmx.Task, ) -> None: @@ -798,7 +783,6 @@ def test___digital_multi_channel_multi_line_reader_with_none_flag___read_wavefor assert waveform.sample_count == samples_to_read -@pytest.mark.grpc_skip(reason="write_digital_waveform not implemented in GRPC") @pytest.mark.parametrize( "dtype", [ diff --git a/tests/component/stream_readers/test_digital_single_channel_reader.py b/tests/component/stream_readers/test_digital_single_channel_reader.py index 2b68d455a..6745e9c2a 100644 --- a/tests/component/stream_readers/test_digital_single_channel_reader.py +++ b/tests/component/stream_readers/test_digital_single_channel_reader.py @@ -213,7 +213,6 @@ def test___digital_single_line_reader___read_waveform_feature_disabled___raises_ assert "NIDAQMX_ENABLE_WAVEFORM_SUPPORT" in error_message -@pytest.mark.grpc_skip(reason="read_digital_waveform not implemented in GRPC") def test___digital_single_line_reader___read_waveform___returns_valid_waveform( di_single_line_timing_task: nidaqmx.Task, ) -> None: @@ -231,7 +230,6 @@ def test___digital_single_line_reader___read_waveform___returns_valid_waveform( assert waveform.channel_name == di_single_line_timing_task.di_channels[0].name -@pytest.mark.grpc_skip(reason="read_digital_waveform not implemented in GRPC") def test___digital_single_channel_multi_line_reader___read_waveform___returns_valid_waveform( di_single_channel_multi_line_timing_task: nidaqmx.Task, ) -> None: @@ -250,7 +248,6 @@ def test___digital_single_channel_multi_line_reader___read_waveform___returns_va assert waveform.channel_name == di_single_channel_multi_line_timing_task.di_channels[0].name -@pytest.mark.grpc_skip(reason="read_digital_waveform not implemented in GRPC") def test___digital_single_line_reader___read_waveform_no_args___returns_valid_waveform( di_single_line_timing_task: nidaqmx.Task, ) -> None: @@ -267,7 +264,6 @@ def test___digital_single_line_reader___read_waveform_no_args___returns_valid_wa assert waveform.channel_name == di_single_line_timing_task.di_channels[0].name -@pytest.mark.grpc_skip(reason="read_digital_waveform not implemented in GRPC") def test___digital_single_channel_multi_line_reader___read_waveform_no_args___returns_valid_waveform( di_single_channel_multi_line_timing_task: nidaqmx.Task, ) -> None: @@ -285,7 +281,6 @@ def test___digital_single_channel_multi_line_reader___read_waveform_no_args___re assert waveform.channel_name == di_single_channel_multi_line_timing_task.di_channels[0].name -@pytest.mark.grpc_skip(reason="read_digital_waveform not implemented in GRPC") def test___digital_single_line_reader___read_waveform_in_place___returns_valid_waveform( di_single_line_timing_task: nidaqmx.Task, ) -> None: @@ -301,7 +296,6 @@ def test___digital_single_line_reader___read_waveform_in_place___returns_valid_w assert waveform.channel_name == di_single_line_timing_task.di_channels[0].name -@pytest.mark.grpc_skip(reason="read_digital_waveform not implemented in GRPC") def test___digital_single_channel_multi_line_reader___read_waveform_in_place___returns_valid_waveform( di_single_channel_multi_line_timing_task: nidaqmx.Task, ) -> None: @@ -318,7 +312,6 @@ def test___digital_single_channel_multi_line_reader___read_waveform_in_place___r assert waveform.channel_name == di_single_channel_multi_line_timing_task.di_channels[0].name -@pytest.mark.grpc_skip(reason="read_digital_waveform not implemented in GRPC") def test___digital_single_line_reader___reuse_waveform_in_place___overwrites_data_timing_and_attributes( generate_task: Callable[[], nidaqmx.Task], sim_6363_device: nidaqmx.system.Device ) -> None: @@ -351,7 +344,6 @@ def _make_single_line_reader(chan_index, rate): assert timestamp1 > timestamp0 -@pytest.mark.grpc_skip(reason="read_digital_waveform not implemented in GRPC") def test___digital_single_channel_multi_line_reader___reuse_waveform_in_place___overwrites_data_timing_and_attributes( generate_task: Callable[[], nidaqmx.Task], sim_6363_device: nidaqmx.system.Device ) -> None: @@ -387,7 +379,6 @@ def _make_single_channel_multi_line_reader(lines_start, rate): assert timestamp1 > timestamp0 -@pytest.mark.grpc_skip(reason="read_digital_waveform not implemented in GRPC") def test___digital_single_line_reader___read_into_undersized_waveform_without_reallocation___throws_exception( di_single_line_timing_task: nidaqmx.Task, ) -> None: @@ -404,7 +395,6 @@ def test___digital_single_line_reader___read_into_undersized_waveform_without_re ) -@pytest.mark.grpc_skip(reason="read_digital_waveform not implemented in GRPC") def test___digital_single_line_reader___read_into_undersized_waveform___returns_valid_waveform( di_single_line_timing_task: nidaqmx.Task, ) -> None: @@ -422,7 +412,6 @@ def test___digital_single_line_reader___read_into_undersized_waveform___returns_ assert waveform.channel_name == di_single_line_timing_task.di_channels[0].name -@pytest.mark.grpc_skip(reason="read_digital_waveform not implemented in GRPC") def test___digital_single_channel_reader___reuse_waveform_in_place_with_different_sample_counts___populates_valid_waveforms( generate_task: Callable[[], nidaqmx.Task], sim_6363_device: nidaqmx.system.Device ) -> None: @@ -457,7 +446,6 @@ def _make_single_channel_reader(chan_index, samps_per_chan): assert waveform.channel_name == f"{sim_6363_device.name}/port0/line2" -@pytest.mark.grpc_skip(reason="read_digital_waveform not implemented in GRPC") def test___digital_single_line_reader___read_waveform_high_sample_rate___returns_correct_sample_interval( di_single_line_high_rate_task: nidaqmx.Task, ) -> None: @@ -475,7 +463,6 @@ def test___digital_single_line_reader___read_waveform_high_sample_rate___returns assert waveform.channel_name == di_single_line_high_rate_task.di_channels[0].name -@pytest.mark.grpc_skip(reason="read_digital_waveform not implemented in GRPC") def test___digital_single_line_reader_with_timing_flag___read_waveform___only_includes_timing_data( di_single_line_timing_task: nidaqmx.Task, ) -> None: @@ -494,7 +481,6 @@ def test___digital_single_line_reader_with_timing_flag___read_waveform___only_in assert waveform.channel_name == "" -@pytest.mark.grpc_skip(reason="read_digital_waveform not implemented in GRPC") def test___digital_single_line_reader_with_extended_properties_flag___read_waveform___only_includes_extended_properties( di_single_line_timing_task: nidaqmx.Task, ) -> None: @@ -511,7 +497,6 @@ def test___digital_single_line_reader_with_extended_properties_flag___read_wavef assert waveform.channel_name == di_single_line_timing_task.di_channels[0].name -@pytest.mark.grpc_skip(reason="read_digital_waveform not implemented in GRPC") def test___digital_single_line_reader_with_both_flags___read_waveform___includes_both_timing_and_extended_properties( di_single_line_timing_task: nidaqmx.Task, ) -> None: @@ -532,7 +517,6 @@ def test___digital_single_line_reader_with_both_flags___read_waveform___includes assert waveform.channel_name == di_single_line_timing_task.di_channels[0].name -@pytest.mark.grpc_skip(reason="read_digital_waveform not implemented in GRPC") def test___digital_single_line_reader_with_none_flag___read_waveform___minimal_waveform_data( di_single_line_timing_task: nidaqmx.Task, ) -> None: @@ -549,7 +533,6 @@ def test___digital_single_line_reader_with_none_flag___read_waveform___minimal_w assert waveform.channel_name == "" -@pytest.mark.grpc_skip(reason="read_digital_waveform not implemented in GRPC") def test___digital_single_channel_port_uint32_reader___read_waveform___returns_valid_waveform( di_single_channel_port_uint32_timing_task: nidaqmx.Task, ) -> None: @@ -570,7 +553,6 @@ def test___digital_single_channel_port_uint32_reader___read_waveform___returns_v assert waveform.channel_name == di_single_channel_port_uint32_timing_task.di_channels[0].name -@pytest.mark.grpc_skip(reason="read_digital_waveforms not implemented in GRPC") def test___digital_single_channel_lines_and_port___read_waveform___returns_valid_waveform( di_single_chan_lines_and_port_task: nidaqmx.Task, sim_6363_device: nidaqmx.system.Device, @@ -603,7 +585,6 @@ def test___digital_single_channel_lines_and_port___read_waveform___returns_valid ] -@pytest.mark.grpc_skip(reason="write_digital_waveform not implemented in GRPC") @pytest.mark.parametrize( "dtype", [ diff --git a/tests/component/stream_writers/test_analog_multi_channel_writer.py b/tests/component/stream_writers/test_analog_multi_channel_writer.py index 28acb41c5..ce444f571 100644 --- a/tests/component/stream_writers/test_analog_multi_channel_writer.py +++ b/tests/component/stream_writers/test_analog_multi_channel_writer.py @@ -106,7 +106,6 @@ def test___analog_multi_channel_writer___write_waveforms_feature_disabled___rais assert "NIDAQMX_ENABLE_WAVEFORM_SUPPORT" in error_message -@pytest.mark.grpc_skip(reason="write_analog_waveforms not implemented in GRPC") def test___analog_multi_channel_writer___write_waveforms___output_matches_final_values( ao_multi_channel_task: nidaqmx.Task, ai_multi_channel_loopback_task: nidaqmx.Task, @@ -126,7 +125,6 @@ def test___analog_multi_channel_writer___write_waveforms___output_matches_final_ assert read_data[i] == _get_approx_final_value(waveform, AO_VOLTAGE_EPSILON) -@pytest.mark.grpc_skip(reason="write_analog_waveforms not implemented in GRPC") def test___analog_multi_channel_writer___write_waveforms_with_float32_dtype___output_matches_final_values( ao_multi_channel_task: nidaqmx.Task, ai_multi_channel_loopback_task: nidaqmx.Task, @@ -146,7 +144,6 @@ def test___analog_multi_channel_writer___write_waveforms_with_float32_dtype___ou assert read_data[i] == _get_approx_final_value(waveform, AO_VOLTAGE_EPSILON) -@pytest.mark.grpc_skip(reason="write_analog_waveforms not implemented in GRPC") def test___analog_multi_channel_writer___write_waveforms_with_scaling___output_matches_final_values( ao_multi_channel_task: nidaqmx.Task, ai_multi_channel_loopback_task: nidaqmx.Task, @@ -166,7 +163,6 @@ def test___analog_multi_channel_writer___write_waveforms_with_scaling___output_m assert read_data[i] == _get_approx_final_value(waveform, AO_VOLTAGE_EPSILON) -@pytest.mark.grpc_skip(reason="write_analog_waveforms not implemented in GRPC") def test___analog_multi_channel_writer___write_waveforms_with_non_contiguous_data___output_matches_final_values( ao_multi_channel_task: nidaqmx.Task, ai_multi_channel_loopback_task: nidaqmx.Task, @@ -186,8 +182,7 @@ def test___analog_multi_channel_writer___write_waveforms_with_non_contiguous_dat assert read_data[i] == _get_approx_final_value(waveform, AO_VOLTAGE_EPSILON) -@pytest.mark.grpc_skip(reason="write_analog_waveforms not implemented in GRPC") -def test___analog_multi_channel_writer___write_waveforms_with_different_lengths___raises_daq_error( +def test___analog_multi_channel_writer___write_waveforms_with_different_lengths___raises_error( ao_multi_channel_task: nidaqmx.Task, ) -> None: writer = AnalogMultiChannelWriter(ao_multi_channel_task.out_stream) @@ -196,14 +191,13 @@ def test___analog_multi_channel_writer___write_waveforms_with_different_lengths_ _create_constant_waveform(20), ] - with pytest.raises(nidaqmx.DaqError) as exc_info: + with pytest.raises(ValueError) as exc_info: writer.write_waveforms(waveforms) error_message = exc_info.value.args[0] assert "The waveforms must all have the same sample count" in error_message -@pytest.mark.grpc_skip(reason="write_analog_waveforms not implemented in GRPC") def test___analog_multi_channel_writer___write_waveforms_with_wrong_number_of_channels___raises_daq_error( ao_multi_channel_task: nidaqmx.Task, ) -> None: diff --git a/tests/component/stream_writers/test_analog_single_channel_writer.py b/tests/component/stream_writers/test_analog_single_channel_writer.py index 3c8661776..0a05df259 100644 --- a/tests/component/stream_writers/test_analog_single_channel_writer.py +++ b/tests/component/stream_writers/test_analog_single_channel_writer.py @@ -76,7 +76,6 @@ def test___analog_single_channel_reader___read_waveform_feature_disabled___raise assert "NIDAQMX_ENABLE_WAVEFORM_SUPPORT" in error_message -@pytest.mark.grpc_skip(reason="write_analog_waveform not implemented in GRPC") def test___analog_single_channel_writer___write_waveform___output_matches_final_value( ao_single_channel_task: nidaqmx.Task, ai_single_channel_loopback_task: nidaqmx.Task, @@ -94,7 +93,6 @@ def test___analog_single_channel_writer___write_waveform___output_matches_final_ assert actual_value == _get_approx_final_value(waveform, AO_VOLTAGE_EPSILON) -@pytest.mark.grpc_skip(reason="write_analog_waveform not implemented in GRPC") def test___analog_single_channel_writer___write_waveform_with_float32_dtype___output_matches_final_value( ao_single_channel_task: nidaqmx.Task, ai_single_channel_loopback_task: nidaqmx.Task, @@ -112,7 +110,6 @@ def test___analog_single_channel_writer___write_waveform_with_float32_dtype___ou assert actual_value == _get_approx_final_value(waveform, AO_VOLTAGE_EPSILON) -@pytest.mark.grpc_skip(reason="write_analog_waveform not implemented in GRPC") def test___analog_single_channel_writer___write_waveform_with_scaling___output_matches_final_value( ao_single_channel_task: nidaqmx.Task, ai_single_channel_loopback_task: nidaqmx.Task, @@ -128,7 +125,6 @@ def test___analog_single_channel_writer___write_waveform_with_scaling___output_m assert actual_value == _get_approx_final_value(waveform, AO_VOLTAGE_EPSILON) -@pytest.mark.grpc_skip(reason="write_analog_waveform not implemented in GRPC") def test___analog_single_channel_writer___write_waveform_with_non_contiguous_data___output_matches_final_value( ao_single_channel_task: nidaqmx.Task, ai_single_channel_loopback_task: nidaqmx.Task, diff --git a/tests/component/stream_writers/test_digital_multi_channel_writer.py b/tests/component/stream_writers/test_digital_multi_channel_writer.py index c2a76e277..22c520c72 100644 --- a/tests/component/stream_writers/test_digital_multi_channel_writer.py +++ b/tests/component/stream_writers/test_digital_multi_channel_writer.py @@ -288,7 +288,6 @@ def test___digital_multi_channel_writer___write_waveforms_feature_disabled___rai assert "NIDAQMX_ENABLE_WAVEFORM_SUPPORT" in error_message -@pytest.mark.grpc_skip(reason="write_digital_waveform not implemented in GRPC") def test___digital_multi_channel_writer___write_waveforms_single_lines___outputs_match_final_values( do_multi_channel_multi_line_task: nidaqmx.Task, di_multi_line_loopback_task: nidaqmx.Task, @@ -310,7 +309,6 @@ def test___digital_multi_channel_writer___write_waveforms_single_lines___outputs assert actual_value == _get_digital_data(num_channels, num_samples)[i - 1] -@pytest.mark.grpc_skip(reason="write_digital_waveform not implemented in GRPC") def test___digital_multi_channel_writer___write_waveforms_mixed_lines___outputs_match_final_values( do_multi_channel_mixed_line_task: nidaqmx.Task, di_multi_line_loopback_task: nidaqmx.Task, @@ -331,7 +329,6 @@ def test___digital_multi_channel_writer___write_waveforms_mixed_lines___outputs_ assert actual_value == _get_digital_data(num_channels, num_samples)[i - 1] -@pytest.mark.grpc_skip(reason="write_digital_waveform not implemented in GRPC") def test___digital_multi_channel_writer___write_waveforms_with_auto_start___output_matches_final_value( do_multi_channel_multi_line_task_with_timing: nidaqmx.Task, di_multi_line_loopback_task: nidaqmx.Task, @@ -350,7 +347,6 @@ def test___digital_multi_channel_writer___write_waveforms_with_auto_start___outp assert actual_value == _get_digital_data(num_channels, num_samples)[-1] -@pytest.mark.grpc_skip(reason="write_digital_waveform not implemented in GRPC") def test___digital_multi_channel_writer___write_waveforms_ports___outputs_match_final_values( do_multi_channel_port_task: nidaqmx.Task, di_multi_channel_port_loopback_task: nidaqmx.Task, @@ -378,7 +374,6 @@ def test___digital_multi_channel_writer___write_waveforms_ports___outputs_match_ ] # TODO: AB#3178052 - change to _get_waveform_data() -@pytest.mark.grpc_skip(reason="write_digital_waveform not implemented in GRPC") def test___digital_multi_channel_writer___write_waveforms_port_and_lines___outputs_match_final_values( do_multi_channel_port_and_lines_task: nidaqmx.Task, di_multi_channel_port_and_lines_loopback_task: nidaqmx.Task, @@ -405,7 +400,6 @@ def test___digital_multi_channel_writer___write_waveforms_port_and_lines___outpu ] # TODO: AB#3178052 - change to _get_waveform_data() -@pytest.mark.grpc_skip(reason="write_digital_waveform not implemented in GRPC") def test___digital_multi_channel_writer___write_waveforms_with_non_contiguous_data___outputs_match_final_values( do_multi_channel_multi_line_task: nidaqmx.Task, di_multi_line_loopback_task: nidaqmx.Task, @@ -429,8 +423,7 @@ def test___digital_multi_channel_writer___write_waveforms_with_non_contiguous_da assert actual_value == _get_digital_data(num_lines, num_samples)[-1] -@pytest.mark.grpc_skip(reason="write_digital_waveform not implemented in GRPC") -def test___digital_multi_channel_writer___write_waveforms_with_different_sample_counts___raises_daq_error( +def test___digital_multi_channel_writer___write_waveforms_with_different_sample_counts___raises_error( do_multi_channel_port_task: nidaqmx.Task, ) -> None: writer = DigitalMultiChannelWriter(do_multi_channel_port_task.out_stream) @@ -440,14 +433,13 @@ def test___digital_multi_channel_writer___write_waveforms_with_different_sample_ _create_digital_waveform_uint8(11, num_lines), ] - with pytest.raises(DaqError) as exc_info: + with pytest.raises(ValueError) as exc_info: writer.write_waveforms(waveforms) error_message = exc_info.value.args[0] assert "The waveforms must all have the same sample count." in error_message -@pytest.mark.grpc_skip(reason="write_digital_waveform not implemented in GRPC") def test___digital_multi_channel_writer___write_waveforms_with_too_many___raises_daq_error( do_multi_channel_port_task: nidaqmx.Task, ) -> None: @@ -466,7 +458,6 @@ def test___digital_multi_channel_writer___write_waveforms_with_too_many___raises assert "Write cannot be performed, because the number of channels" in error_message -@pytest.mark.grpc_skip(reason="write_digital_waveform not implemented in GRPC") def test___digital_multi_channel_writer___write_waveforms_with_too_many_signals___raises_daq_error( do_multi_channel_port_task: nidaqmx.Task, ) -> None: diff --git a/tests/component/stream_writers/test_digital_single_channel_writer.py b/tests/component/stream_writers/test_digital_single_channel_writer.py index e88466e4b..a786463c4 100644 --- a/tests/component/stream_writers/test_digital_single_channel_writer.py +++ b/tests/component/stream_writers/test_digital_single_channel_writer.py @@ -206,7 +206,6 @@ def test___digital_single_channel_writer___write_waveform_feature_disabled___rai assert "NIDAQMX_ENABLE_WAVEFORM_SUPPORT" in error_message -@pytest.mark.grpc_skip(reason="write_digital_waveform not implemented in GRPC") def test___digital_single_channel_writer___write_waveform_single_line___outputs_match_final_values( do_single_line_task: nidaqmx.Task, di_single_line_loopback_task: nidaqmx.Task, @@ -225,7 +224,6 @@ def test___digital_single_channel_writer___write_waveform_single_line___outputs_ assert di_single_line_loopback_task.read() == _get_waveform_data(waveform)[i - 1] -@pytest.mark.grpc_skip(reason="write_digital_waveform not implemented in GRPC") def test___digital_single_channel_writer___write_waveform_single_line_with_auto_start___output_matches_final_value( do_single_line_task_with_timing: nidaqmx.Task, di_single_line_loopback_task: nidaqmx.Task, @@ -242,7 +240,6 @@ def test___digital_single_channel_writer___write_waveform_single_line_with_auto_ assert actual_value == _get_waveform_data(waveform)[-1] -@pytest.mark.grpc_skip(reason="write_digital_waveform not implemented in GRPC") def test___digital_single_channel_writer___write_waveform_single_line_with_non_contiguous_data___outputs_match_final_values( do_single_line_task: nidaqmx.Task, di_single_line_loopback_task: nidaqmx.Task, @@ -261,7 +258,6 @@ def test___digital_single_channel_writer___write_waveform_single_line_with_non_c assert di_single_line_loopback_task.read() == _get_waveform_data(waveform)[i - 1] -@pytest.mark.grpc_skip(reason="write_digital_waveform not implemented in GRPC") def test___digital_single_channel_writer___write_waveform_single_line_signal_count_mismatch___raises_daq_error( do_single_line_task: nidaqmx.Task, ) -> None: @@ -280,7 +276,6 @@ def test___digital_single_channel_writer___write_waveform_single_line_signal_cou ) -@pytest.mark.grpc_skip(reason="write_digital_waveform not implemented in GRPC") @pytest.mark.parametrize( "dtype", [ @@ -308,7 +303,6 @@ def test___digital_single_channel_writer___write_waveform_single_line_all_dtypes assert di_single_line_loopback_task.read() == _get_waveform_data(waveform)[i - 1] -@pytest.mark.grpc_skip(reason="write_digital_waveform not implemented in GRPC") def test___digital_single_channel_writer___write_waveform_multi_line___outputs_match_final_values( do_single_channel_multi_line_task: nidaqmx.Task, di_multi_line_loopback_task: nidaqmx.Task, @@ -328,7 +322,6 @@ def test___digital_single_channel_writer___write_waveform_multi_line___outputs_m assert di_multi_line_loopback_task.read() == _get_waveform_data(waveform)[i - 1] -@pytest.mark.grpc_skip(reason="write_digital_waveform not implemented in GRPC") def test___digital_single_channel_writer___write_waveform_multi_line_with_auto_start___output_matches_final_value( do_single_channel_multi_line_task_with_timing: nidaqmx.Task, di_multi_line_loopback_task: nidaqmx.Task, @@ -348,7 +341,6 @@ def test___digital_single_channel_writer___write_waveform_multi_line_with_auto_s assert actual_value == _get_waveform_data(waveform)[-1] -@pytest.mark.grpc_skip(reason="write_digital_waveform not implemented in GRPC") def test___digital_single_channel_writer___write_waveform_multi_line_with_non_contiguous_data___outputs_match_final_values( do_single_channel_multi_line_task: nidaqmx.Task, di_multi_line_loopback_task: nidaqmx.Task, @@ -369,7 +361,6 @@ def test___digital_single_channel_writer___write_waveform_multi_line_with_non_co assert actual_value == _get_waveform_data(waveform)[i - 1] -@pytest.mark.grpc_skip(reason="write_digital_waveform not implemented in GRPC") @pytest.mark.parametrize( "dtype", [ @@ -398,7 +389,6 @@ def test___digital_single_channel_writer___write_waveform_multi_line_all_dtypes_ assert di_multi_line_loopback_task.read() == _get_waveform_data(waveform)[i - 1] -@pytest.mark.grpc_skip(reason="write_digital_waveform not implemented in GRPC") def test___digital_single_channel_writer___write_waveform_multi_line_signal_count_mismatch___raises_daq_error( do_single_channel_multi_line_task: nidaqmx.Task, ) -> None: @@ -417,7 +407,6 @@ def test___digital_single_channel_writer___write_waveform_multi_line_signal_coun ) -@pytest.mark.grpc_skip(reason="write_digital_waveform not implemented in GRPC") def test___digital_single_channel_writer___write_waveform_port_uint8___outputs_match_final_values( do_port1_task: nidaqmx.Task, di_port1_loopback_task: nidaqmx.Task, @@ -442,7 +431,6 @@ def test___digital_single_channel_writer___write_waveform_port_uint8___outputs_m ) # TODO: AB#3178052 - change to _get_waveform_data() -@pytest.mark.grpc_skip(reason="write_digital_waveform not implemented in GRPC") def test___digital_single_channel_writer___write_waveform_port_uint32___outputs_match_final_values( do_port0_task: nidaqmx.Task, di_port0_loopback_task: nidaqmx.Task, diff --git a/tests/component/task/test_task_read_waveform_ai.py b/tests/component/task/test_task_read_waveform_ai.py index d017f7a91..3dfe19179 100644 --- a/tests/component/task/test_task_read_waveform_ai.py +++ b/tests/component/task/test_task_read_waveform_ai.py @@ -10,7 +10,6 @@ ) -@pytest.mark.grpc_skip(reason="read_analog_waveform not implemented in GRPC") def test___analog_single_channel___read_waveform___returns_valid_waveform( ai_single_channel_task_with_timing: nidaqmx.Task, ) -> None: @@ -22,7 +21,6 @@ def test___analog_single_channel___read_waveform___returns_valid_waveform( assert waveform.raw_data[0] == pytest.approx(expected, abs=AI_VOLTAGE_EPSILON) -@pytest.mark.grpc_skip(reason="read_analog_waveform not implemented in GRPC") def test___analog_single_channel___read_waveform_one_sample___returns_waveform_with_one_sample( ai_single_channel_task_with_timing: nidaqmx.Task, ) -> None: @@ -34,7 +32,6 @@ def test___analog_single_channel___read_waveform_one_sample___returns_waveform_w assert waveform.raw_data[0] == pytest.approx(expected, abs=AI_VOLTAGE_EPSILON) -@pytest.mark.grpc_skip(reason="read_analog_waveform not implemented in GRPC") def test___analog_single_channel___read_waveform_many_sample___returns_waveform_with_many_samples( ai_single_channel_task_with_timing: nidaqmx.Task, ) -> None: @@ -48,7 +45,6 @@ def test___analog_single_channel___read_waveform_many_sample___returns_waveform_ assert waveform.raw_data[0] == pytest.approx(expected, abs=AI_VOLTAGE_EPSILON) -@pytest.mark.grpc_skip(reason="read_analog_waveform not implemented in GRPC") def test___analog_single_channel_finite___read_waveform_too_many_samples___returns_waveform_with_correct_number_of_samples( ai_single_channel_task_with_timing: nidaqmx.Task, ) -> None: @@ -63,7 +59,6 @@ def test___analog_single_channel_finite___read_waveform_too_many_samples___retur assert waveform.raw_data[0] == pytest.approx(expected, abs=AI_VOLTAGE_EPSILON) -@pytest.mark.grpc_skip(reason="read_analog_waveform not implemented in GRPC") def test___analog_multi_channel___read_waveform___returns_valid_waveforms( ai_multi_channel_task_with_timing: nidaqmx.Task, ) -> None: @@ -80,7 +75,6 @@ def test___analog_multi_channel___read_waveform___returns_valid_waveforms( assert waveform.raw_data[0] == pytest.approx(expected, abs=AI_VOLTAGE_EPSILON) -@pytest.mark.grpc_skip(reason="read_analog_waveform not implemented in GRPC") def test___analog_multi_channel___read_waveform_one_sample___returns_waveforms_with_single_sample( ai_multi_channel_task_with_timing: nidaqmx.Task, ) -> None: @@ -97,7 +91,6 @@ def test___analog_multi_channel___read_waveform_one_sample___returns_waveforms_w assert waveform.raw_data[0] == pytest.approx(expected, abs=AI_VOLTAGE_EPSILON) -@pytest.mark.grpc_skip(reason="read_analog_waveform not implemented in GRPC") def test___analog_multi_channel___read_waveform_many_samples___returns_waveforms_with_many_samples( ai_multi_channel_task_with_timing: nidaqmx.Task, ) -> None: @@ -115,7 +108,6 @@ def test___analog_multi_channel___read_waveform_many_samples___returns_waveforms assert waveform.raw_data[0] == pytest.approx(expected, abs=AI_VOLTAGE_EPSILON) -@pytest.mark.grpc_skip(reason="read_analog_waveform not implemented in GRPC") def test___analog_multi_channel_finite___read_waveform_too_many_samples___returns_waveforms_with_correct_number_of_samples( ai_multi_channel_task_with_timing: nidaqmx.Task, ) -> None: diff --git a/tests/component/task/test_task_read_waveform_di.py b/tests/component/task/test_task_read_waveform_di.py index 2b4872e83..73494ff7f 100644 --- a/tests/component/task/test_task_read_waveform_di.py +++ b/tests/component/task/test_task_read_waveform_di.py @@ -1,6 +1,5 @@ from __future__ import annotations -import pytest from nitypes.waveform import DigitalWaveform import nidaqmx @@ -11,7 +10,6 @@ ) -@pytest.mark.grpc_skip(reason="read_digital_waveform not implemented in GRPC") def test___digital_single_channel___read_waveform___returns_valid_waveform( di_single_channel_timing_task: nidaqmx.Task, ) -> None: @@ -21,7 +19,6 @@ def test___digital_single_channel___read_waveform___returns_valid_waveform( assert _get_waveform_data(waveform) == _get_expected_data_for_line(50, 0) -@pytest.mark.grpc_skip(reason="read_digital_waveform not implemented in GRPC") def test___digital_single_channel___read_waveform_one_sample___returns_waveform_with_one_sample( di_single_channel_timing_task: nidaqmx.Task, ) -> None: @@ -31,7 +28,6 @@ def test___digital_single_channel___read_waveform_one_sample___returns_waveform_ assert _get_waveform_data(waveform) == _get_expected_data_for_line(1, 0) -@pytest.mark.grpc_skip(reason="read_digital_waveform not implemented in GRPC") def test___digital_single_channel___read_waveform_many_sample___returns_waveform_with_many_samples( di_single_channel_timing_task: nidaqmx.Task, ) -> None: @@ -43,7 +39,6 @@ def test___digital_single_channel___read_waveform_many_sample___returns_waveform assert _get_waveform_data(waveform) == _get_expected_data_for_line(samples_to_read, 0) -@pytest.mark.grpc_skip(reason="read_digital_waveform not implemented in GRPC") def test___digital_single_channel___read_waveform_too_many_samples___returns_waveform_with_correct_number_of_samples( di_single_channel_timing_task: nidaqmx.Task, ) -> None: @@ -57,7 +52,6 @@ def test___digital_single_channel___read_waveform_too_many_samples___returns_wav assert _get_waveform_data(waveform) == _get_expected_data_for_line(samples_available, 0) -@pytest.mark.grpc_skip(reason="read_digital_waveforms not implemented in GRPC") def test___digital_single_channel___read_waveform_lines_and_port___returns_valid_waveform( di_single_chan_lines_and_port_task: nidaqmx.Task, sim_6363_device: nidaqmx.system.Device, @@ -86,7 +80,6 @@ def test___digital_single_channel___read_waveform_lines_and_port___returns_valid ] -@pytest.mark.grpc_skip(reason="read_digital_waveform not implemented in GRPC") def test___digital_multi_channel___read_waveform___returns_valid_waveforms( di_multi_channel_timing_task: nidaqmx.Task, ) -> None: @@ -101,7 +94,6 @@ def test___digital_multi_channel___read_waveform___returns_valid_waveforms( assert _get_waveform_data(waveform) == _get_expected_data_for_line(50, chan_index) -@pytest.mark.grpc_skip(reason="read_digital_waveform not implemented in GRPC") def test___digital_multi_channel___read_waveform_one_sample___returns_waveforms_with_single_sample( di_multi_channel_timing_task: nidaqmx.Task, ) -> None: @@ -116,7 +108,6 @@ def test___digital_multi_channel___read_waveform_one_sample___returns_waveforms_ assert _get_waveform_data(waveform) == _get_expected_data_for_line(1, chan_index) -@pytest.mark.grpc_skip(reason="read_digital_waveform not implemented in GRPC") def test___digital_multi_channel___read_waveform_many_samples___returns_waveforms_with_many_samples( di_multi_channel_timing_task: nidaqmx.Task, ) -> None: @@ -132,7 +123,6 @@ def test___digital_multi_channel___read_waveform_many_samples___returns_waveform assert _get_waveform_data(waveform) == _get_expected_data_for_line(10, chan_index) -@pytest.mark.grpc_skip(reason="read_digital_waveform not implemented in GRPC") def test___digital_multi_channel___read_waveform_too_many_samples___returns_waveforms_with_correct_number_of_samples( di_multi_channel_timing_task: nidaqmx.Task, ) -> None: @@ -150,7 +140,6 @@ def test___digital_multi_channel___read_waveform_too_many_samples___returns_wave assert _get_waveform_data(waveform) == _get_expected_data_for_line(samples_available, chan) -@pytest.mark.grpc_skip(reason="read_digital_waveform not implemented in GRPC") def test___digital_multi_channel___read_waveform_different_lines___returns_valid_waveforms( di_multi_chan_diff_lines_timing_task: nidaqmx.Task, sim_6363_device: nidaqmx.system.Device, @@ -185,7 +174,6 @@ def test___digital_multi_channel___read_waveform_different_lines___returns_valid ] -@pytest.mark.grpc_skip(reason="read_digital_waveforms not implemented in GRPC") def test___digital_multi_channel___read_waveform_lines_and_port___returns_valid_waveforms( di_multi_chan_lines_and_port_task: nidaqmx.Task, sim_6363_device: nidaqmx.system.Device, diff --git a/tests/component/task/test_task_write_waveform_ao.py b/tests/component/task/test_task_write_waveform_ao.py index f12598d76..de5e6f90f 100644 --- a/tests/component/task/test_task_write_waveform_ao.py +++ b/tests/component/task/test_task_write_waveform_ao.py @@ -19,7 +19,6 @@ @pytest.mark.disable_feature_toggle(WAVEFORM_SUPPORT) -@pytest.mark.grpc_skip(reason="write_analog_waveform not implemented in GRPC") def test___task___write_waveform_feature_disabled___raises_feature_not_supported_error( ao_single_channel_task: nidaqmx.Task, ) -> None: @@ -33,7 +32,6 @@ def test___task___write_waveform_feature_disabled___raises_feature_not_supported assert "NIDAQMX_ENABLE_WAVEFORM_SUPPORT" in error_message -@pytest.mark.grpc_skip(reason="write_analog_waveform not implemented in GRPC") def test___task___write_linear_ramp_waveform___output_matches_final_value( ao_single_channel_task: nidaqmx.Task, ai_single_channel_loopback_task: nidaqmx.Task, @@ -48,7 +46,6 @@ def test___task___write_linear_ramp_waveform___output_matches_final_value( assert actual_value == _get_approx_final_value(waveform, AO_VOLTAGE_EPSILON) -@pytest.mark.grpc_skip(reason="write_analog_waveform not implemented in GRPC") def test___task___write_waveform_as_list___output_matches_final_value( ao_single_channel_task: nidaqmx.Task, ai_single_channel_loopback_task: nidaqmx.Task, @@ -63,7 +60,6 @@ def test___task___write_waveform_as_list___output_matches_final_value( assert actual_value == _get_approx_final_value(waveform, AO_VOLTAGE_EPSILON) -@pytest.mark.grpc_skip(reason="write_analog_waveform not implemented in GRPC") def test___task___write_waveform_with_write___output_matches_final_value( ao_single_channel_task: nidaqmx.Task, ai_single_channel_loopback_task: nidaqmx.Task, @@ -78,7 +74,6 @@ def test___task___write_waveform_with_write___output_matches_final_value( assert actual_value == _get_approx_final_value(waveform, AO_VOLTAGE_EPSILON) -@pytest.mark.grpc_skip(reason="write_analog_waveform not implemented in GRPC") def test___task___write_waveform_with_auto_start___output_matches_final_value( ao_single_channel_task_with_timing: nidaqmx.Task, ai_single_channel_loopback_task: nidaqmx.Task, @@ -94,7 +89,6 @@ def test___task___write_waveform_with_auto_start___output_matches_final_value( assert actual_value == _get_approx_final_value(waveform, AO_VOLTAGE_EPSILON) -@pytest.mark.grpc_skip(reason="write_analog_waveform not implemented in GRPC") def test___task_with_multiple_channels___write_single_channel_waveform___raises_daq_error( ao_multi_channel_task: nidaqmx.Task, ) -> None: @@ -110,7 +104,6 @@ def test___task_with_multiple_channels___write_single_channel_waveform___raises_ ) -@pytest.mark.grpc_skip(reason="write_analog_waveform not implemented in GRPC") def test___task___write_waveform_with_float32_dtype___output_matches_final_value( ao_single_channel_task: nidaqmx.Task, ai_single_channel_loopback_task: nidaqmx.Task, @@ -125,7 +118,6 @@ def test___task___write_waveform_with_float32_dtype___output_matches_final_value assert actual_value == _get_approx_final_value(waveform, AO_VOLTAGE_EPSILON) -@pytest.mark.grpc_skip(reason="write_analog_waveform not implemented in GRPC") def test___task___write_waveform_with_scaling___output_matches_final_value( ao_single_channel_task: nidaqmx.Task, ai_single_channel_loopback_task: nidaqmx.Task, @@ -140,7 +132,6 @@ def test___task___write_waveform_with_scaling___output_matches_final_value( assert actual_value == _get_approx_final_value(waveform, AO_VOLTAGE_EPSILON) -@pytest.mark.grpc_skip(reason="write_analog_waveform not implemented in GRPC") def test___task___write_waveform_with_non_contiguous_data___output_matches_final_value( ao_single_channel_task: nidaqmx.Task, ai_single_channel_loopback_task: nidaqmx.Task, @@ -155,7 +146,6 @@ def test___task___write_waveform_with_non_contiguous_data___output_matches_final assert actual_value == _get_approx_final_value(waveform, AO_VOLTAGE_EPSILON) -@pytest.mark.grpc_skip(reason="write_analog_waveform not implemented in GRPC") def test___task___write_waveform_with_timing___all_samples_match_waveform_data( generate_task, real_x_series_multiplexed_device: nidaqmx.system.Device, @@ -178,7 +168,6 @@ def test___task___write_waveform_with_timing___all_samples_match_waveform_data( @pytest.mark.disable_feature_toggle(WAVEFORM_SUPPORT) -@pytest.mark.grpc_skip(reason="write_analog_waveforms not implemented in GRPC") def test___task___write_waveforms_feature_disabled___raises_feature_not_supported_error( ao_multi_channel_task: nidaqmx.Task, ) -> None: @@ -195,7 +184,6 @@ def test___task___write_waveforms_feature_disabled___raises_feature_not_supporte assert "WAVEFORM_SUPPORT feature is not supported" in error_message -@pytest.mark.grpc_skip(reason="write_analog_waveforms not implemented in GRPC") def test___task___write_waveforms___output_matches_final_values( ao_multi_channel_task: nidaqmx.Task, ai_multi_channel_loopback_task: nidaqmx.Task, @@ -214,7 +202,6 @@ def test___task___write_waveforms___output_matches_final_values( assert actual_values[i] == _get_approx_final_value(waveform, AO_VOLTAGE_EPSILON) -@pytest.mark.grpc_skip(reason="write_analog_waveforms not implemented in GRPC") def test___task___write_waveforms_with_write___output_matches_final_values( ao_multi_channel_task: nidaqmx.Task, ai_multi_channel_loopback_task: nidaqmx.Task, @@ -233,7 +220,6 @@ def test___task___write_waveforms_with_write___output_matches_final_values( assert actual_values[i] == _get_approx_final_value(waveform, AO_VOLTAGE_EPSILON) -@pytest.mark.grpc_skip(reason="write_analog_waveforms not implemented in GRPC") def test___task___write_waveforms_with_different_formulas___output_matches_final_values( ao_multi_channel_task: nidaqmx.Task, ai_multi_channel_loopback_task: nidaqmx.Task, @@ -252,7 +238,6 @@ def test___task___write_waveforms_with_different_formulas___output_matches_final assert actual_values[i] == _get_approx_final_value(waveform, AO_VOLTAGE_EPSILON) -@pytest.mark.grpc_skip(reason="write_analog_waveforms not implemented in GRPC") def test___task_with_single_channel___write_multiple_waveforms___raises_daq_error( ao_single_channel_task: nidaqmx.Task, ) -> None: @@ -272,7 +257,6 @@ def test___task_with_single_channel___write_multiple_waveforms___raises_daq_erro ) -@pytest.mark.grpc_skip(reason="write_analog_waveforms not implemented in GRPC") def test___task___write_waveform_and_array___raises_value_error( ao_multi_channel_task: nidaqmx.Task, ) -> None: @@ -288,20 +272,18 @@ def test___task___write_waveform_and_array___raises_value_error( ) -@pytest.mark.grpc_skip(reason="write_analog_waveforms not implemented in GRPC") -def test___task___write_waveforms_with_different_lengths___raises_daq_error( +def test___task___write_waveforms_with_different_lengths___raises_error( ao_multi_channel_task: nidaqmx.Task, ) -> None: waveforms_different_lengths = [_create_constant_waveform(10), _create_constant_waveform(20)] - with pytest.raises((nidaqmx.errors.DaqError, AssertionError)) as exc_info: + with pytest.raises(ValueError) as exc_info: ao_multi_channel_task.write_waveform(waveforms_different_lengths) error_message = exc_info.value.args[0] assert "The waveforms must all have the same sample count." in error_message -@pytest.mark.grpc_skip(reason="write_analog_waveforms not implemented in GRPC") def test___task___write_waveforms_with_auto_start___output_matches_final_values( ao_multi_channel_task_with_timing: nidaqmx.Task, ai_multi_channel_loopback_task: nidaqmx.Task, @@ -321,7 +303,6 @@ def test___task___write_waveforms_with_auto_start___output_matches_final_values( assert actual_values[i] == _get_approx_final_value(waveform, AO_VOLTAGE_EPSILON) -@pytest.mark.grpc_skip(reason="write_analog_waveforms not implemented in GRPC") def test___task___write_waveforms_with_float32_dtype___output_matches_final_values( ao_multi_channel_task: nidaqmx.Task, ai_multi_channel_loopback_task: nidaqmx.Task, @@ -340,7 +321,6 @@ def test___task___write_waveforms_with_float32_dtype___output_matches_final_valu assert actual_values[i] == _get_approx_final_value(waveform, AO_VOLTAGE_EPSILON) -@pytest.mark.grpc_skip(reason="write_analog_waveforms not implemented in GRPC") def test___task___write_waveforms_with_scaling___output_matches_final_values( ao_multi_channel_task: nidaqmx.Task, ai_multi_channel_loopback_task: nidaqmx.Task, @@ -359,7 +339,6 @@ def test___task___write_waveforms_with_scaling___output_matches_final_values( assert actual_values[i] == _get_approx_final_value(waveform, AO_VOLTAGE_EPSILON) -@pytest.mark.grpc_skip(reason="write_analog_waveforms not implemented in GRPC") def test___task___write_waveforms_with_non_contiguous_data___output_matches_final_values( ao_multi_channel_task: nidaqmx.Task, ai_multi_channel_loopback_task: nidaqmx.Task, @@ -378,7 +357,6 @@ def test___task___write_waveforms_with_non_contiguous_data___output_matches_fina assert actual_values[i] == _get_approx_final_value(waveform, AO_VOLTAGE_EPSILON) -@pytest.mark.grpc_skip(reason="write_analog_waveforms not implemented in GRPC") def test___task___write_waveforms_with_timing___all_samples_match_waveform_data( generate_task, real_x_series_multiplexed_device: nidaqmx.system.Device, diff --git a/tests/component/task/test_task_write_waveform_do.py b/tests/component/task/test_task_write_waveform_do.py index 0600f861d..b07d991ee 100644 --- a/tests/component/task/test_task_write_waveform_do.py +++ b/tests/component/task/test_task_write_waveform_do.py @@ -19,7 +19,6 @@ @pytest.mark.disable_feature_toggle(WAVEFORM_SUPPORT) -@pytest.mark.grpc_skip(reason="write_digital_waveform not implemented in GRPC") def test___task___write_waveform_feature_disabled___raises_feature_not_supported_error( do_single_line_task: nidaqmx.Task, ) -> None: @@ -33,7 +32,6 @@ def test___task___write_waveform_feature_disabled___raises_feature_not_supported assert "NIDAQMX_ENABLE_WAVEFORM_SUPPORT" in error_message -@pytest.mark.grpc_skip(reason="write_digital_waveform not implemented in GRPC") def test___task___write_waveform_single_line___outputs_match_final_values( do_single_line_task: nidaqmx.Task, di_single_line_loopback_task: nidaqmx.Task, @@ -52,7 +50,6 @@ def test___task___write_waveform_single_line___outputs_match_final_values( assert actual_value == _get_waveform_data(waveform)[i - 1] -@pytest.mark.grpc_skip(reason="write_digital_waveform not implemented in GRPC") def test___task___write_waveform_single_line_with_write___outputs_match_final_values( do_single_line_task: nidaqmx.Task, di_single_line_loopback_task: nidaqmx.Task, @@ -71,7 +68,6 @@ def test___task___write_waveform_single_line_with_write___outputs_match_final_va assert actual_value == _get_waveform_data(waveform)[i - 1] -@pytest.mark.grpc_skip(reason="write_digital_waveform not implemented in GRPC") def test___task___write_waveform_single_line_with_auto_start___output_matches_final_value( do_single_line_task_with_timing: nidaqmx.Task, di_single_line_loopback_task: nidaqmx.Task, @@ -87,7 +83,6 @@ def test___task___write_waveform_single_line_with_auto_start___output_matches_fi assert actual_value == _get_waveform_data(waveform)[-1] -@pytest.mark.grpc_skip(reason="write_digital_waveform not implemented in GRPC") def test___task___write_waveform_single_line_with_non_contiguous_data___outputs_match_final_values( do_single_line_task: nidaqmx.Task, di_single_line_loopback_task: nidaqmx.Task, @@ -106,7 +101,6 @@ def test___task___write_waveform_single_line_with_non_contiguous_data___outputs_ assert actual_value == _get_waveform_data(waveform)[i - 1] -@pytest.mark.grpc_skip(reason="write_digital_waveform not implemented in GRPC") @pytest.mark.parametrize( "dtype", [ @@ -133,7 +127,6 @@ def test___task___write_waveform_single_line_all_dtypes___outputs_match_final_va assert di_single_line_loopback_task.read() == _get_waveform_data(waveform)[i - 1] -@pytest.mark.grpc_skip(reason="write_digital_waveform not implemented in GRPC") def test___task___write_waveform_single_line_signal_count_mismatch___raises_daq_error( do_single_line_task: nidaqmx.Task, ) -> None: @@ -151,7 +144,6 @@ def test___task___write_waveform_single_line_signal_count_mismatch___raises_daq_ ) -@pytest.mark.grpc_skip(reason="write_digital_waveform not implemented in GRPC") def test___task___write_waveform_multi_line___outputs_match_final_values( do_single_channel_multi_line_task: nidaqmx.Task, di_multi_line_loopback_task: nidaqmx.Task, @@ -171,7 +163,6 @@ def test___task___write_waveform_multi_line___outputs_match_final_values( assert actual_value == _get_waveform_data(waveform)[i - 1] -@pytest.mark.grpc_skip(reason="write_digital_waveform not implemented in GRPC") def test___task___write_waveform_multi_line_with_write___outputs_match_final_values( do_single_channel_multi_line_task: nidaqmx.Task, di_multi_line_loopback_task: nidaqmx.Task, @@ -191,7 +182,6 @@ def test___task___write_waveform_multi_line_with_write___outputs_match_final_val assert actual_value == _get_waveform_data(waveform)[i - 1] -@pytest.mark.grpc_skip(reason="write_digital_waveform not implemented in GRPC") def test___task___write_waveform_multi_line_with_auto_start___output_matches_final_value( do_single_channel_multi_line_task_with_timing: nidaqmx.Task, di_multi_line_loopback_task: nidaqmx.Task, @@ -210,7 +200,6 @@ def test___task___write_waveform_multi_line_with_auto_start___output_matches_fin assert actual_value == _get_waveform_data(waveform)[-1] -@pytest.mark.grpc_skip(reason="write_digital_waveform not implemented in GRPC") def test___task___write_waveform_multi_line_with_non_contiguous_data___outputs_match_final_values( do_single_channel_multi_line_task: nidaqmx.Task, di_multi_line_loopback_task: nidaqmx.Task, @@ -230,7 +219,6 @@ def test___task___write_waveform_multi_line_with_non_contiguous_data___outputs_m assert actual_value == _get_waveform_data(waveform)[i - 1] -@pytest.mark.grpc_skip(reason="write_digital_waveform not implemented in GRPC") @pytest.mark.parametrize( "dtype", [ @@ -258,7 +246,6 @@ def test___task___write_waveform_multi_line_all_dtypes___outputs_match_final_val assert di_multi_line_loopback_task.read() == _get_waveform_data(waveform)[i - 1] -@pytest.mark.grpc_skip(reason="write_digital_waveform not implemented in GRPC") def test___task___write_waveform_multi_line_signal_count_mismatch___raises_daq_error( do_single_channel_multi_line_task: nidaqmx.Task, ) -> None: @@ -276,7 +263,6 @@ def test___task___write_waveform_multi_line_signal_count_mismatch___raises_daq_e ) -@pytest.mark.grpc_skip(reason="write_digital_waveform not implemented in GRPC") def test___task___write_waveform_port_uint8___outputs_match_final_values( do_port1_task: nidaqmx.Task, di_port1_loopback_task: nidaqmx.Task, @@ -298,7 +284,6 @@ def test___task___write_waveform_port_uint8___outputs_match_final_values( ) # TODO: AB#3178052 - change to _get_waveform_data() -@pytest.mark.grpc_skip(reason="write_digital_waveform not implemented in GRPC") def test___task___write_waveform_port_uint32___outputs_match_final_values( do_port0_task: nidaqmx.Task, di_port0_loopback_task: nidaqmx.Task, @@ -334,7 +319,6 @@ def test___task___write_waveforms_feature_disabled___raises_feature_not_supporte assert "NIDAQMX_ENABLE_WAVEFORM_SUPPORT" in error_message -@pytest.mark.grpc_skip(reason="write_digital_waveform not implemented in GRPC") def test___task___write_waveforms_single_lines___outputs_match_final_values( do_multi_channel_multi_line_task: nidaqmx.Task, di_multi_line_loopback_task: nidaqmx.Task, @@ -355,7 +339,6 @@ def test___task___write_waveforms_single_lines___outputs_match_final_values( assert actual_value == _get_digital_data(num_channels, num_samples)[i - 1] -@pytest.mark.grpc_skip(reason="write_digital_waveform not implemented in GRPC") def test___task___write_waveforms_with_write___outputs_match_final_values( do_multi_channel_multi_line_task: nidaqmx.Task, di_multi_line_loopback_task: nidaqmx.Task, @@ -376,7 +359,6 @@ def test___task___write_waveforms_with_write___outputs_match_final_values( assert actual_value == _get_digital_data(num_channels, num_samples)[i - 1] -@pytest.mark.grpc_skip(reason="write_digital_waveform not implemented in GRPC") def test___task___write_waveforms_with_auto_start___output_matches_final_value( do_multi_channel_multi_line_task_with_timing: nidaqmx.Task, di_multi_line_loopback_task: nidaqmx.Task, @@ -395,7 +377,6 @@ def test___task___write_waveforms_with_auto_start___output_matches_final_value( assert actual_value == _get_digital_data(num_channels, num_samples)[-1] -@pytest.mark.grpc_skip(reason="write_digital_waveform not implemented in GRPC") def test___task___write_waveforms_mixed_lines___outputs_match_final_values( do_multi_channel_mixed_line_task: nidaqmx.Task, di_multi_line_loopback_task: nidaqmx.Task, @@ -415,7 +396,6 @@ def test___task___write_waveforms_mixed_lines___outputs_match_final_values( assert actual_value == _get_digital_data(num_channels, num_samples)[i - 1] -@pytest.mark.grpc_skip(reason="write_digital_waveform not implemented in GRPC") def test___task___write_waveforms_ports___outputs_match_final_values( do_multi_channel_port_task: nidaqmx.Task, di_multi_channel_port_loopback_task: nidaqmx.Task, @@ -442,7 +422,6 @@ def test___task___write_waveforms_ports___outputs_match_final_values( ] # TODO: AB#3178052 - change to _get_waveform_data() -@pytest.mark.grpc_skip(reason="write_digital_waveform not implemented in GRPC") def test___task___write_waveforms_port_and_lines___outputs_match_final_values( do_multi_channel_port_and_lines_task: nidaqmx.Task, di_multi_channel_port_and_lines_loopback_task: nidaqmx.Task, @@ -468,7 +447,6 @@ def test___task___write_waveforms_port_and_lines___outputs_match_final_values( ] # TODO: AB#3178052 - change to _get_waveform_data() -@pytest.mark.grpc_skip(reason="write_digital_waveform not implemented in GRPC") def test___task___write_waveforms_with_non_contiguous_data___outputs_match_final_values( do_multi_channel_multi_line_task: nidaqmx.Task, di_multi_line_loopback_task: nidaqmx.Task, @@ -491,8 +469,7 @@ def test___task___write_waveforms_with_non_contiguous_data___outputs_match_final assert actual_value == _get_digital_data(num_lines, num_samples)[-1] -@pytest.mark.grpc_skip(reason="write_digital_waveform not implemented in GRPC") -def test___task___write_waveforms_with_different_sample_counts___raises_daq_error( +def test___task___write_waveforms_with_different_sample_counts___raises_error( do_multi_channel_port_task: nidaqmx.Task, ) -> None: num_lines = 8 @@ -501,14 +478,13 @@ def test___task___write_waveforms_with_different_sample_counts___raises_daq_erro _create_digital_waveform_uint8(11, num_lines), ] - with pytest.raises(DaqError) as exc_info: + with pytest.raises(ValueError) as exc_info: do_multi_channel_port_task.write_waveform(waveforms) error_message = exc_info.value.args[0] assert "The waveforms must all have the same sample count." in error_message -@pytest.mark.grpc_skip(reason="write_digital_waveform not implemented in GRPC") def test___task___write_waveforms_with_too_many___raises_daq_error( do_multi_channel_port_task: nidaqmx.Task, ) -> None: @@ -526,7 +502,6 @@ def test___task___write_waveforms_with_too_many___raises_daq_error( assert "Write cannot be performed, because the number of channels" in error_message -@pytest.mark.grpc_skip(reason="write_digital_waveform not implemented in GRPC") def test___task___write_waveforms_with_too_many_signals___raises_daq_error( do_multi_channel_port_task: nidaqmx.Task, ) -> None: