diff --git a/CHANGELOG.md b/CHANGELOG.md index 668c63410..c6117b654 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1706,6 +1706,7 @@ - `SCRIPTS` added to enum `LoadOptions` - `DO_NOT_DRIVE_SIGNAL` added to enum `PulseModulationSource` - `numpy` is now an install dependency + - gRPC support, enabling remote session management via NI gRPC Device Server - Changed - Removed diff --git a/docs/nirfsg/class.rst b/docs/nirfsg/class.rst index 4013cd025..6d0cfd285 100644 --- a/docs/nirfsg/class.rst +++ b/docs/nirfsg/class.rst @@ -3,7 +3,7 @@ Session ======= -.. py:class:: Session(self, resource_name, id_query=False, reset_device=False, options={}) +.. py:class:: Session(self, resource_name, id_query=False, reset_device=False, options={}, *, grpc_options=None) @@ -111,6 +111,16 @@ Session :type options: dict + :param grpc_options: + + + MeasurementLink gRPC session options + + + + + :type grpc_options: nirfsg.GrpcSessionOptions + Methods ======= diff --git a/docs/nirfsg/errors.rst b/docs/nirfsg/errors.rst index 1ff5f65ae..44bdd892f 100644 --- a/docs/nirfsg/errors.rst +++ b/docs/nirfsg/errors.rst @@ -77,6 +77,16 @@ SelfTestError An error due to a failed self-test +RpcError +-------- + + .. py:currentmodule:: nirfsg.errors + + .. exception:: RpcError + + An error specific to sessions to the NI gRPC Device Server + + DriverWarning ------------- diff --git a/docs/nirfsg/grpc_session_options.rst b/docs/nirfsg/grpc_session_options.rst new file mode 100644 index 000000000..73d27acff --- /dev/null +++ b/docs/nirfsg/grpc_session_options.rst @@ -0,0 +1,91 @@ +gRPC Support +============ + +Support for using NI-RFSG over gRPC + +.. py:currentmodule:: nirfsg + + + +SessionInitializationBehavior +----------------------------- + +.. py:class:: SessionInitializationBehavior + + .. py:attribute:: SessionInitializationBehavior.AUTO + + + The NI gRPC Device Server will attach to an existing session with the specified name if it exists, + otherwise the server will initialize a new session. + + .. note:: When using the Session as a context manager and the context exits, the behavior depends on what happened when the constructor + was called. If it resulted in a new session being initialized on the NI gRPC Device Server, then it will automatically close the + server session. If it instead attached to an existing session, then it will detach from the server session and leave it open. + + + .. py:attribute:: SessionInitializationBehavior.INITIALIZE_SERVER_SESSION + + + Require the NI gRPC Device Server to initialize a new session with the specified name. + + .. note:: When using the Session as a context manager and the context exits, it will automatically close the + server session. + + + .. py:attribute:: SessionInitializationBehavior.ATTACH_TO_SERVER_SESSION + + + Require the NI gRPC Device Server to attach to an existing session with the specified name. + + .. note:: When using the Session as a context manager and the context exits, it will detach from the server session + and leave it open. + + + +GrpcSessionOptions +------------------ + + +.. py:class:: GrpcSessionOptions(self, grpc_channel, session_name, initialization_behavior=SessionInitializationBehavior.AUTO) + + + Collection of options that specifies session behaviors related to gRPC. + + Creates and returns an object you can pass to a Session constructor. + + + :param grpc_channel: + + + Specifies the channel to the NI gRPC Device Server. + + + + :type grpc_channel: grpc.Channel + + + :param session_name: + + + User-specified name that identifies the driver session on the NI gRPC Device Server. + + This is different from the resource name parameter many APIs take as a separate + parameter. Specifying a name makes it easy to share sessions across multiple gRPC clients. + You can use an empty string if you want to always initialize a new session on the server. + To attach to an existing session, you must specify the session name it was initialized with. + + + + :type session_name: str + + + :param initialization_behavior: + + + Specifies whether it is acceptable to initialize a new session or attach to an existing one, or if only one of the behaviors is desired. + + The driver session exists on the NI gRPC Device Server. + + + + :type initialization_behavior: :py:data:`nirfsg.SessionInitializationBehavior` diff --git a/docs/nirfsg/toc.inc b/docs/nirfsg/toc.inc index baf175109..300092a6c 100644 --- a/docs/nirfsg/toc.inc +++ b/docs/nirfsg/toc.inc @@ -8,4 +8,5 @@ API Reference enums errors examples + grpc_session_options diff --git a/generated/nirfsg/nirfsg/__init__.py b/generated/nirfsg/nirfsg/__init__.py index 9ad6710c1..149ab9de4 100644 --- a/generated/nirfsg/nirfsg/__init__.py +++ b/generated/nirfsg/nirfsg/__init__.py @@ -7,6 +7,7 @@ from nirfsg.enums import * # noqa: F403,F401,H303 from nirfsg.errors import DriverWarning # noqa: F401 from nirfsg.errors import Error # noqa: F401 +from nirfsg.grpc_session_options import * # noqa: F403,F401,H303 from nirfsg.session import Session # noqa: F401 diff --git a/generated/nirfsg/nirfsg/_grpc_stub_interpreter.py b/generated/nirfsg/nirfsg/_grpc_stub_interpreter.py new file mode 100644 index 000000000..708d6d500 --- /dev/null +++ b/generated/nirfsg/nirfsg/_grpc_stub_interpreter.py @@ -0,0 +1,586 @@ +# -*- coding: utf-8 -*- +# This file was generated + +import grpc +import hightime # noqa: F401 +import threading +import warnings + +from . import enums as enums # noqa: F401 +from . import errors as errors +from . import nirfsg_pb2 as grpc_types +from . import nirfsg_pb2_grpc as nirfsg_grpc +from . import session_pb2 as session_grpc_types + + +class GrpcStubInterpreter(object): + '''Interpreter for interacting with a gRPC Stub class''' + + def __init__(self, grpc_options): + self._grpc_options = grpc_options + self._lock = threading.RLock() + self._client = nirfsg_grpc.NiRFSGStub(grpc_options.grpc_channel) + self.set_session_handle() + + def set_session_handle(self, value=session_grpc_types.Session()): + self._vi = value + + def get_session_handle(self): + return self._vi + + def _invoke(self, func, request, metadata=None): + try: + response = func(request, metadata=metadata) + error_code = response.status + error_message = '' + except grpc.RpcError as rpc_error: + error_code = None + error_message = rpc_error.details() + for entry in rpc_error.trailing_metadata() or []: + if entry.key == 'ni-error': + value = entry.value if isinstance(entry.value, str) else entry.value.decode('utf-8') + try: + error_code = int(value) + except ValueError: + error_message += f'\nError status: {value}' + + grpc_error = rpc_error.code() + if grpc_error == grpc.StatusCode.NOT_FOUND: + raise errors.DriverTooOldError() from None + elif grpc_error == grpc.StatusCode.INVALID_ARGUMENT: + raise ValueError(error_message) from None + elif grpc_error == grpc.StatusCode.UNAVAILABLE: + error_message = 'Failed to connect to server' + elif grpc_error == grpc.StatusCode.UNIMPLEMENTED: + error_message = ( + 'This operation is not supported by the NI gRPC Device Server being used. Upgrade NI gRPC Device Server.' + ) + + if error_code is None: + raise errors.RpcError(grpc_error, error_message) from None + + if error_code < 0: + raise errors.DriverError(error_code, error_message) + elif error_code > 0: + if not error_message: + try: + error_message = self.error_message(error_code) + except errors.Error: + error_message = 'Failed to retrieve error description.' + warnings.warn(errors.DriverWarning(error_code, error_message)) + return response + + def abort(self): # noqa: N802 + self._invoke( + self._client.Abort, + grpc_types.AbortRequest(vi=self._vi), + ) + + def allocate_arb_waveform(self, waveform_name, size_in_samples): # noqa: N802 + self._invoke( + self._client.AllocateArbWaveform, + grpc_types.AllocateArbWaveformRequest(vi=self._vi, waveform_name=waveform_name, size_in_samples=size_in_samples), + ) + + def change_external_calibration_password(self, old_password, new_password): # noqa: N802 + self._invoke( + self._client.ChangeExternalCalibrationPassword, + grpc_types.ChangeExternalCalibrationPasswordRequest(vi=self._vi, old_password=old_password, new_password=new_password), + ) + + def check_generation_status(self): # noqa: N802 + response = self._invoke( + self._client.CheckGenerationStatus, + grpc_types.CheckGenerationStatusRequest(vi=self._vi), + ) + return response.is_done + + def check_if_script_exists(self, script_name): # noqa: N802 + response = self._invoke( + self._client.CheckIfScriptExists, + grpc_types.CheckIfScriptExistsRequest(vi=self._vi, script_name=script_name), + ) + return response.script_exists + + def check_if_waveform_exists(self, waveform_name): # noqa: N802 + response = self._invoke( + self._client.CheckIfWaveformExists, + grpc_types.CheckIfWaveformExistsRequest(vi=self._vi, waveform_name=waveform_name), + ) + return response.waveform_exists + + def clear_all_arb_waveforms(self): # noqa: N802 + self._invoke( + self._client.ClearAllArbWaveforms, + grpc_types.ClearAllArbWaveformsRequest(vi=self._vi), + ) + + def clear_arb_waveform(self, waveform_name): # noqa: N802 + self._invoke( + self._client.ClearArbWaveform, + grpc_types.ClearArbWaveformRequest(vi=self._vi, name=waveform_name), + ) + + def clear_self_calibrate_range(self): # noqa: N802 + self._invoke( + self._client.ClearSelfCalibrateRange, + grpc_types.ClearSelfCalibrateRangeRequest(vi=self._vi), + ) + + def commit(self): # noqa: N802 + self._invoke( + self._client.Commit, + grpc_types.CommitRequest(vi=self._vi), + ) + + def configure_deembedding_table_interpolation_linear(self, port, table_name, format): # noqa: N802 + self._invoke( + self._client.ConfigureDeembeddingTableInterpolationLinear, + grpc_types.ConfigureDeembeddingTableInterpolationLinearRequest(vi=self._vi, port=port, table_name=table_name, format_raw=format.value), + ) + + def configure_deembedding_table_interpolation_nearest(self, port, table_name): # noqa: N802 + self._invoke( + self._client.ConfigureDeembeddingTableInterpolationNearest, + grpc_types.ConfigureDeembeddingTableInterpolationNearestRequest(vi=self._vi, port=port, table_name=table_name), + ) + + def configure_deembedding_table_interpolation_spline(self, port, table_name): # noqa: N802 + self._invoke( + self._client.ConfigureDeembeddingTableInterpolationSpline, + grpc_types.ConfigureDeembeddingTableInterpolationSplineRequest(vi=self._vi, port=port, table_name=table_name), + ) + + def configure_digital_edge_script_trigger(self, trigger_id, source, edge): # noqa: N802 + self._invoke( + self._client.ConfigureDigitalEdgeScriptTrigger, + grpc_types.ConfigureDigitalEdgeScriptTriggerRequest(vi=self._vi, trigger_id_raw=trigger_id, source_raw=source, edge_raw=edge.value), + ) + + def configure_digital_edge_start_trigger(self, source, edge): # noqa: N802 + self._invoke( + self._client.ConfigureDigitalEdgeStartTrigger, + grpc_types.ConfigureDigitalEdgeStartTriggerRequest(vi=self._vi, source_raw=source, edge_raw=edge.value), + ) + + def configure_digital_level_script_trigger(self, trigger_id, source, level): # noqa: N802 + self._invoke( + self._client.ConfigureDigitalLevelScriptTrigger, + grpc_types.ConfigureDigitalLevelScriptTriggerRequest(vi=self._vi, trigger_id_raw=trigger_id, source=source, level=level), + ) + + def configure_rf(self, frequency, power_level): # noqa: N802 + self._invoke( + self._client.ConfigureRF, + grpc_types.ConfigureRFRequest(vi=self._vi, frequency=frequency, power_level=power_level), + ) + + def configure_ref_clock(self, ref_clock_source, ref_clock_rate): # noqa: N802 + self._invoke( + self._client.ConfigureRefClock, + grpc_types.ConfigureRefClockRequest(vi=self._vi, ref_clock_source=ref_clock_source, ref_clock_rate=ref_clock_rate), + ) + + def configure_software_script_trigger(self, trigger_id): # noqa: N802 + self._invoke( + self._client.ConfigureSoftwareScriptTrigger, + grpc_types.ConfigureSoftwareScriptTriggerRequest(vi=self._vi, trigger_id_raw=trigger_id), + ) + + def configure_software_start_trigger(self): # noqa: N802 + self._invoke( + self._client.ConfigureSoftwareStartTrigger, + grpc_types.ConfigureSoftwareStartTriggerRequest(vi=self._vi), + ) + + def create_deembedding_sparameter_table_array(self, port, table_name, frequencies, sparameter_table, number_of_ports, sparameter_orientation): # noqa: N802 + raise NotImplementedError('numpy-specific methods are not supported over gRPC') + + def create_deembedding_sparameter_table_s2p_file(self, port, table_name, s2p_file_path, sparameter_orientation): # noqa: N802 + self._invoke( + self._client.CreateDeembeddingSparameterTableS2PFile, + grpc_types.CreateDeembeddingSparameterTableS2PFileRequest(vi=self._vi, port=port, table_name=table_name, s2p_file_path=s2p_file_path, sparameter_orientation_raw=sparameter_orientation.value), + ) + + def delete_all_deembedding_tables(self): # noqa: N802 + self._invoke( + self._client.DeleteAllDeembeddingTables, + grpc_types.DeleteAllDeembeddingTablesRequest(vi=self._vi), + ) + + def delete_deembedding_table(self, port, table_name): # noqa: N802 + self._invoke( + self._client.DeleteDeembeddingTable, + grpc_types.DeleteDeembeddingTableRequest(vi=self._vi, port=port, table_name=table_name), + ) + + def delete_script(self, script_name): # noqa: N802 + self._invoke( + self._client.DeleteScript, + grpc_types.DeleteScriptRequest(vi=self._vi, script_name=script_name), + ) + + def disable_script_trigger(self, trigger_id): # noqa: N802 + self._invoke( + self._client.DisableScriptTrigger, + grpc_types.DisableScriptTriggerRequest(vi=self._vi, trigger_id_raw=trigger_id), + ) + + def disable_start_trigger(self): # noqa: N802 + self._invoke( + self._client.DisableStartTrigger, + grpc_types.DisableStartTriggerRequest(vi=self._vi), + ) + + def error_message(self, error_code, error_message): # noqa: N802 + self._invoke( + self._client.ErrorMessage, + grpc_types.ErrorMessageRequest(vi=self._vi, error_code=error_code, error_message=error_message), + ) + + def get_all_named_waveform_names(self): # noqa: N802 + response = self._invoke( + self._client.GetAllNamedWaveformNames, + grpc_types.GetAllNamedWaveformNamesRequest(vi=self._vi), + ) + return response.waveform_names + + def get_all_script_names(self): # noqa: N802 + response = self._invoke( + self._client.GetAllScriptNames, + grpc_types.GetAllScriptNamesRequest(vi=self._vi), + ) + return response.script_names + + def get_attribute_vi_boolean(self, channel_name, attribute): # noqa: N802 + response = self._invoke( + self._client.GetAttributeViBoolean, + grpc_types.GetAttributeViBooleanRequest(vi=self._vi, channel_name=channel_name, attribute_id=attribute), + ) + return response.value + + def get_attribute_vi_int32(self, channel_name, attribute): # noqa: N802 + response = self._invoke( + self._client.GetAttributeViInt32, + grpc_types.GetAttributeViInt32Request(vi=self._vi, channel_name=channel_name, attribute_id=attribute), + ) + return response.value + + def get_attribute_vi_int64(self, channel_name, attribute): # noqa: N802 + response = self._invoke( + self._client.GetAttributeViInt64, + grpc_types.GetAttributeViInt64Request(vi=self._vi, channel_name=channel_name, attribute_id=attribute), + ) + return response.value + + def get_attribute_vi_real64(self, channel_name, attribute): # noqa: N802 + response = self._invoke( + self._client.GetAttributeViReal64, + grpc_types.GetAttributeViReal64Request(vi=self._vi, channel_name=channel_name, attribute_id=attribute), + ) + return response.value + + def get_attribute_vi_session(self, channel_name, attribute): # noqa: N802 + response = self._invoke( + self._client.GetAttributeViSession, + grpc_types.GetAttributeViSessionRequest(vi=self._vi, channel_name=channel_name, attribute_id=attribute), + ) + return response.value + + def get_attribute_vi_string(self, channel_name, attribute): # noqa: N802 + response = self._invoke( + self._client.GetAttributeViString, + grpc_types.GetAttributeViStringRequest(vi=self._vi, channel_name=channel_name, attribute_id=attribute), + ) + return response.value + + def get_deembedding_sparameters(self): + import numpy as np + response = self._invoke( + self._client.GetDeembeddingSparameters, + grpc_types.GetDeembeddingSparametersRequest(vi=self._vi), + ) + number_of_ports = response.number_of_ports + sparameters = np.array([c.real + 1j * c.imaginary for c in response.sparameters], dtype=np.complex128) + sparameters = sparameters.reshape((number_of_ports, number_of_ports)) + return sparameters + + def get_deembedding_table_number_of_ports(self): # noqa: N802 + response = self._invoke( + self._client.GetDeembeddingTableNumberOfPorts, + grpc_types.GetDeembeddingTableNumberOfPortsRequest(vi=self._vi), + ) + return response.number_of_ports + + def get_error(self): # noqa: N802 + response = self._invoke( + self._client.GetError, + grpc_types.GetErrorRequest(vi=self._vi), + ) + return response.error_code, response.error_description + + def get_external_calibration_last_date_and_time(self): # noqa: N802 + response = self._invoke( + self._client.GetExternalCalibrationLastDateAndTime, + grpc_types.GetExternalCalibrationLastDateAndTimeRequest(vi=self._vi), + ) + return response.year, response.month, response.day, response.hour, response.minute, response.second + + def get_max_settable_power(self): # noqa: N802 + response = self._invoke( + self._client.GetMaxSettablePower, + grpc_types.GetMaxSettablePowerRequest(vi=self._vi), + ) + return response.value + + def get_script(self, script_name): # noqa: N802 + response = self._invoke( + self._client.GetScript, + grpc_types.GetScriptRequest(vi=self._vi, script_name=script_name), + ) + return response.script + + def get_self_calibration_date_and_time(self, module): # noqa: N802 + response = self._invoke( + self._client.GetSelfCalibrationDateAndTime, + grpc_types.GetSelfCalibrationDateAndTimeRequest(vi=self._vi, module=module.value), + ) + return response.year, response.month, response.day, response.hour, response.minute, response.second + + def get_self_calibration_temperature(self, module): # noqa: N802 + response = self._invoke( + self._client.GetSelfCalibrationTemperature, + grpc_types.GetSelfCalibrationTemperatureRequest(vi=self._vi, module_raw=module.value), + ) + return response.temperature + + def get_terminal_name(self, signal, signal_identifier): # noqa: N802 + response = self._invoke( + self._client.GetTerminalName, + grpc_types.GetTerminalNameRequest(vi=self._vi, signal_raw=signal.value, signal_identifier_raw=signal_identifier), + ) + return response.terminal_name + + def get_waveform_burst_start_locations(self, channel_name): # noqa: N802 + response = self._invoke( + self._client.GetWaveformBurstStartLocations, + grpc_types.GetWaveformBurstStartLocationsRequest(vi=self._vi, channel_name=channel_name), + ) + return response.locations + + def get_waveform_burst_stop_locations(self, channel_name): # noqa: N802 + response = self._invoke( + self._client.GetWaveformBurstStopLocations, + grpc_types.GetWaveformBurstStopLocationsRequest(vi=self._vi, channel_name=channel_name), + ) + return response.locations + + def get_waveform_marker_event_locations(self, channel_name): # noqa: N802 + response = self._invoke( + self._client.GetWaveformMarkerEventLocations, + grpc_types.GetWaveformMarkerEventLocationsRequest(vi=self._vi, channel_name=channel_name), + ) + return response.locations + + def init_with_options(self, resource_name, id_query, reset_device, option_string): # noqa: N802 + metadata = ( + ('ni-api-key', self._grpc_options.api_key), + ) + response = self._invoke( + self._client.InitWithOptions, + grpc_types.InitWithOptionsRequest(resource_name=resource_name, id_query=id_query, reset_device=reset_device, option_string=option_string, session_name=self._grpc_options.session_name, initialization_behavior=self._grpc_options.initialization_behavior), + metadata=metadata, + ) + self._close_on_exit = response.new_session_initialized + return response.vi + + def initiate(self): # noqa: N802 + self._invoke( + self._client.Initiate, + grpc_types.InitiateRequest(vi=self._vi), + ) + + def load_configurations_from_file(self, channel_name, file_path): # noqa: N802 + self._invoke( + self._client.LoadConfigurationsFromFile, + grpc_types.LoadConfigurationsFromFileRequest(vi=self._vi, channel_name=channel_name, file_path=file_path), + ) + + def lock(self): # noqa: N802 + self._lock.acquire() + + def perform_power_search(self): # noqa: N802 + self._invoke( + self._client.PerformPowerSearch, + grpc_types.PerformPowerSearchRequest(vi=self._vi), + ) + + def perform_thermal_correction(self): # noqa: N802 + self._invoke( + self._client.PerformThermalCorrection, + grpc_types.PerformThermalCorrectionRequest(vi=self._vi), + ) + + def query_arb_waveform_capabilities(self): # noqa: N802 + response = self._invoke( + self._client.QueryArbWaveformCapabilities, + grpc_types.QueryArbWaveformCapabilitiesRequest(vi=self._vi), + ) + return response.max_number_waveforms, response.waveform_quantum, response.min_waveform_size, response.max_waveform_size + + def read_and_download_waveform_from_file_tdms(self, waveform_name, file_path, waveform_index): # noqa: N802 + self._invoke( + self._client.ReadAndDownloadWaveformFromFileTDMS, + grpc_types.ReadAndDownloadWaveformFromFileTDMSRequest(vi=self._vi, waveform_name=waveform_name, file_path=file_path, waveform_index=waveform_index), + ) + + def reset_device(self): # noqa: N802 + self._invoke( + self._client.ResetDevice, + grpc_types.ResetDeviceRequest(vi=self._vi), + ) + + def reset_with_defaults(self): # noqa: N802 + self._invoke( + self._client.ResetWithDefaults, + grpc_types.ResetWithDefaultsRequest(vi=self._vi), + ) + + def reset_with_options(self, steps_to_omit): # noqa: N802 + self._invoke( + self._client.ResetWithOptions, + grpc_types.ResetWithOptionsRequest(vi=self._vi, steps_to_omit_raw=steps_to_omit.value), + ) + + def save_configurations_to_file(self, channel_name, file_path): # noqa: N802 + self._invoke( + self._client.SaveConfigurationsToFile, + grpc_types.SaveConfigurationsToFileRequest(vi=self._vi, channel_name=channel_name, file_path=file_path), + ) + + def select_arb_waveform(self, waveform_name): # noqa: N802 + self._invoke( + self._client.SelectArbWaveform, + grpc_types.SelectArbWaveformRequest(vi=self._vi, name=waveform_name), + ) + + def self_cal(self): # noqa: N802 + self._invoke( + self._client.SelfCal, + grpc_types.SelfCalRequest(vi=self._vi), + ) + + def self_calibrate_range(self, steps_to_omit, min_frequency, max_frequency, min_power_level, max_power_level): # noqa: N802 + self._invoke( + self._client.SelfCalibrateRange, + grpc_types.SelfCalibrateRangeRequest(vi=self._vi, steps_to_omit_raw=steps_to_omit.value, min_frequency=min_frequency, max_frequency=max_frequency, min_power_level=min_power_level, max_power_level=max_power_level), + ) + + def send_software_edge_trigger(self, trigger, trigger_identifier): # noqa: N802 + self._invoke( + self._client.SendSoftwareEdgeTrigger, + grpc_types.SendSoftwareEdgeTriggerRequest(vi=self._vi, trigger_raw=trigger.value, trigger_identifier_raw=trigger_identifier.value), + ) + + def set_arb_waveform_next_write_position(self, waveform_name, relative_to, offset): # noqa: N802 + self._invoke( + self._client.SetArbWaveformNextWritePosition, + grpc_types.SetArbWaveformNextWritePositionRequest(vi=self._vi, waveform_name=waveform_name, relative_to_raw=relative_to.value, offset=offset), + ) + + def set_attribute_vi_boolean(self, channel_name, attribute, value): # noqa: N802 + self._invoke( + self._client.SetAttributeViBoolean, + grpc_types.SetAttributeViBooleanRequest(vi=self._vi, channel_name=channel_name, attribute_id=attribute, value=value), + ) + + def set_attribute_vi_int32(self, channel_name, attribute, value): # noqa: N802 + self._invoke( + self._client.SetAttributeViInt32, + grpc_types.SetAttributeViInt32Request(vi=self._vi, channel_name=channel_name, attribute_id=attribute, value_raw=value), + ) + + def set_attribute_vi_int64(self, channel_name, attribute, value): # noqa: N802 + self._invoke( + self._client.SetAttributeViInt64, + grpc_types.SetAttributeViInt64Request(vi=self._vi, channel_name=channel_name, attribute_id=attribute, value_raw=value), + ) + + def set_attribute_vi_real64(self, channel_name, attribute, value): # noqa: N802 + self._invoke( + self._client.SetAttributeViReal64, + grpc_types.SetAttributeViReal64Request(vi=self._vi, channel_name=channel_name, attribute_id=attribute, value_raw=value), + ) + + def set_attribute_vi_session(self, channel_name, attribute): # noqa: N802 + self._invoke( + self._client.SetAttributeViSession, + grpc_types.SetAttributeViSessionRequest(vi=self._vi, channel_name=channel_name, attribute_id=attribute, value=self._vi), + ) + + def set_attribute_vi_string(self, channel_name, attribute, value): # noqa: N802 + self._invoke( + self._client.SetAttributeViString, + grpc_types.SetAttributeViStringRequest(vi=self._vi, channel_name=channel_name, attribute_id=attribute, value_raw=value), + ) + + def set_waveform_burst_start_locations(self, channel_name, locations): # noqa: N802 + self._invoke( + self._client.SetWaveformBurstStartLocations, + grpc_types.SetWaveformBurstStartLocationsRequest(vi=self._vi, channel_name=channel_name, locations=locations), + ) + + def set_waveform_burst_stop_locations(self, channel_name, locations): # noqa: N802 + self._invoke( + self._client.SetWaveformBurstStopLocations, + grpc_types.SetWaveformBurstStopLocationsRequest(vi=self._vi, channel_name=channel_name, locations=locations), + ) + + def set_waveform_marker_event_locations(self, channel_name, locations): # noqa: N802 + self._invoke( + self._client.SetWaveformMarkerEventLocations, + grpc_types.SetWaveformMarkerEventLocationsRequest(vi=self._vi, channel_name=channel_name, locations=locations), + ) + + def unlock(self): # noqa: N802 + self._lock.release() + + def wait_until_settled(self, max_time_milliseconds): # noqa: N802 + self._invoke( + self._client.WaitUntilSettled, + grpc_types.WaitUntilSettledRequest(vi=self._vi, max_time_milliseconds=max_time_milliseconds), + ) + + def write_arb_waveform_complex_f32(self, waveform_name, waveform_data_array, more_data_pending): # noqa: N802 + raise NotImplementedError('numpy-specific methods are not supported over gRPC') + + def write_arb_waveform_complex_f64(self, waveform_name, waveform_data_array, more_data_pending): # noqa: N802 + raise NotImplementedError('numpy-specific methods are not supported over gRPC') + + def write_arb_waveform_complex_i16(self, waveform_name, waveform_data_array): # noqa: N802 + raise NotImplementedError('numpy-specific methods are not supported over gRPC') + + def write_script(self, script): # noqa: N802 + self._invoke( + self._client.WriteScript, + grpc_types.WriteScriptRequest(vi=self._vi, script=script), + ) + + def close(self): # noqa: N802 + self._invoke( + self._client.Close, + grpc_types.CloseRequest(vi=self._vi), + ) + + def reset(self): # noqa: N802 + self._invoke( + self._client.Reset, + grpc_types.ResetRequest(vi=self._vi), + ) + + def self_test(self): # noqa: N802 + response = self._invoke( + self._client.SelfTest, + grpc_types.SelfTestRequest(vi=self._vi), + ) + return response.self_test_result, response.self_test_message diff --git a/generated/nirfsg/nirfsg/_library_interpreter.py b/generated/nirfsg/nirfsg/_library_interpreter.py index 631766ffa..1b3f9e820 100644 --- a/generated/nirfsg/nirfsg/_library_interpreter.py +++ b/generated/nirfsg/nirfsg/_library_interpreter.py @@ -547,6 +547,7 @@ def init_with_options(self, resource_name, id_query, reset_device, option_string new_vi_ctype = _visatype.ViSession() # case S220 error_code = self._library.niRFSG_InitWithOptions(resource_name_ctype, id_query_ctype, reset_device_ctype, option_string_ctype, None if new_vi_ctype is None else (ctypes.pointer(new_vi_ctype))) errors.handle_error(self, error_code, ignore_warnings=False, is_error_handling=False) + self._close_on_exit = True return int(new_vi_ctype.value) def initiate(self): # noqa: N802 diff --git a/generated/nirfsg/nirfsg/errors.py b/generated/nirfsg/nirfsg/errors.py index 321282332..d4ec849c5 100644 --- a/generated/nirfsg/nirfsg/errors.py +++ b/generated/nirfsg/nirfsg/errors.py @@ -43,6 +43,20 @@ def __init__(self, code, description): super(DriverWarning, self).__init__('Warning {} occurred.\n\n{}'.format(code, description)) +class RpcError(Error): + '''An error specific to sessions to the NI gRPC Device Server''' + + def __init__(self, rpc_code, description): + self.rpc_code = rpc_code + self.description = description + try: + import grpc + rpc_error = str(grpc.StatusCode(self.rpc_code)) + except Exception: + rpc_error = str(self.rpc_code) + super(RpcError, self).__init__(rpc_error + ": " + self.description) + + class UnsupportedConfigurationError(Error): '''An error due to using this module in an usupported platform.''' diff --git a/generated/nirfsg/nirfsg/grpc_session_options.py b/generated/nirfsg/nirfsg/grpc_session_options.py new file mode 100644 index 000000000..0af1fad05 --- /dev/null +++ b/generated/nirfsg/nirfsg/grpc_session_options.py @@ -0,0 +1,78 @@ +# -*- coding: utf-8 -*- +# This file was generated + +from enum import IntEnum + + +# This constant specifies the gRPC package and service used by this API. +# Customers can pass this value to the MeasurementLink discovery service to resolve the server instance that provides this interface. +GRPC_SERVICE_INTERFACE_NAME = 'nirfsg_grpc.NiRFSG' + +# This constant specifies the API license key required by the NI gRPC Device Server that comes with +# MeasurementLink 2023 Q1. +MEASUREMENTLINK_23Q1_NIMI_PYTHON_API_KEY = 'DE10751B-3EE0-44EC-A93B-800E6A3C89E4' + + +class SessionInitializationBehavior(IntEnum): + AUTO = 0 + r''' + The NI gRPC Device Server will attach to an existing session with the specified name if it exists, otherwise the server + will initialize a new session. + + Note: + When using the Session as a context manager and the context exits, the behavior depends on what happened when the constructor + was called. If it resulted in a new session being initialized on the NI gRPC Device Server, then it will automatically close the + server session. If it instead attached to an existing session, then it will detach from the server session and leave it open. + ''' + INITIALIZE_SERVER_SESSION = 1 + r''' + Require the NI gRPC Device Server to initialize a new session with the specified name. + + Note: + When using the Session as a context manager and the context exits, it will automatically close the + server session. + ''' + ATTACH_TO_SERVER_SESSION = 2 + r''' + Require the NI gRPC Device Server to attach to an existing session with the specified name. + + Note: + When using the Session as a context manager and the context exits, it will detach from the server session + and leave it open. + ''' + + +class GrpcSessionOptions(object): + '''Collection of options that specifies session behaviors related to gRPC.''' + + def __init__( + self, + grpc_channel, + session_name, + *, + api_key=MEASUREMENTLINK_23Q1_NIMI_PYTHON_API_KEY, + initialization_behavior=SessionInitializationBehavior.AUTO + ): + r'''Collection of options that specifies session behaviors related to gRPC. + + Creates and returns an object you can pass to a Session constructor. + + Args: + grpc_channel (grpc.Channel): Specifies the channel to the NI gRPC Device Server. + + session_name (str): User-specified name that identifies the driver session on the NI gRPC Device + Server. This is different from the resource name parameter many APIs take as a separate + parameter. Specifying a name makes it easy to share sessions across multiple gRPC clients. + You can use an empty string if you want to always initialize a new session on the server. + To attach to an existing session, you must specify the session name it was initialized with. + + api_key (str): Specifies the API license key required by the NI gRPC Device Server. + + initialization_behavior (enum): Specifies whether it is acceptable to initialize a new + session or attach to an existing one, or if only one of the behaviors is desired. + The driver session exists on the NI gRPC Device Server. + ''' + self.grpc_channel = grpc_channel + self.session_name = session_name + self.api_key = api_key + self.initialization_behavior = initialization_behavior diff --git a/generated/nirfsg/nirfsg/nidevice_pb2.py b/generated/nirfsg/nirfsg/nidevice_pb2.py new file mode 100644 index 000000000..d7fff4491 --- /dev/null +++ b/generated/nirfsg/nirfsg/nidevice_pb2.py @@ -0,0 +1,32 @@ +# -*- coding: utf-8 -*- +# Generated by the protocol buffer compiler. DO NOT EDIT! +# source: nidevice.proto +"""Generated protocol buffer code.""" +from google.protobuf import descriptor as _descriptor +from google.protobuf import descriptor_pool as _descriptor_pool +from google.protobuf import symbol_database as _symbol_database +from google.protobuf.internal import builder as _builder +# @@protoc_insertion_point(imports) + +_sym_db = _symbol_database.Default() + + + + +DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x0enidevice.proto\x12\rnidevice_grpc\"2\n\x0fNIComplexNumber\x12\x0c\n\x04real\x18\x01 \x01(\x01\x12\x11\n\timaginary\x18\x02 \x01(\x01\"5\n\x12NIComplexNumberF32\x12\x0c\n\x04real\x18\x01 \x01(\x02\x12\x11\n\timaginary\x18\x02 \x01(\x02\"/\n\x0cNIComplexI16\x12\x0c\n\x04real\x18\x01 \x01(\x11\x12\x11\n\timaginary\x18\x02 \x01(\x11\"r\n\x0fSmtSpectrumInfo\x12\x15\n\rspectrum_type\x18\x01 \x01(\r\x12\x11\n\tlinear_db\x18\x02 \x01(\r\x12\x0e\n\x06window\x18\x03 \x01(\r\x12\x13\n\x0bwindow_size\x18\x04 \x01(\x11\x12\x10\n\x08\x66\x66t_size\x18\x05 \x01(\x11\x42\x42\n\x12\x63om.ni.grpc.deviceB\x08NiDeviceP\x01\xaa\x02\x1fNationalInstruments.Grpc.Deviceb\x06proto3') + +_globals = globals() +_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals) +_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'nidevice_pb2', _globals) +if _descriptor._USE_C_DESCRIPTORS == False: + DESCRIPTOR._options = None + DESCRIPTOR._serialized_options = b'\n\022com.ni.grpc.deviceB\010NiDeviceP\001\252\002\037NationalInstruments.Grpc.Device' + _globals['_NICOMPLEXNUMBER']._serialized_start=33 + _globals['_NICOMPLEXNUMBER']._serialized_end=83 + _globals['_NICOMPLEXNUMBERF32']._serialized_start=85 + _globals['_NICOMPLEXNUMBERF32']._serialized_end=138 + _globals['_NICOMPLEXI16']._serialized_start=140 + _globals['_NICOMPLEXI16']._serialized_end=187 + _globals['_SMTSPECTRUMINFO']._serialized_start=189 + _globals['_SMTSPECTRUMINFO']._serialized_end=303 +# @@protoc_insertion_point(module_scope) diff --git a/generated/nirfsg/nirfsg/nidevice_pb2_grpc.py b/generated/nirfsg/nirfsg/nidevice_pb2_grpc.py new file mode 100644 index 000000000..2daafffeb --- /dev/null +++ b/generated/nirfsg/nirfsg/nidevice_pb2_grpc.py @@ -0,0 +1,4 @@ +# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! +"""Client and server classes corresponding to protobuf-defined services.""" +import grpc + diff --git a/generated/nirfsg/nirfsg/nirfsg_pb2.py b/generated/nirfsg/nirfsg/nirfsg_pb2.py new file mode 100644 index 000000000..30cdd8132 --- /dev/null +++ b/generated/nirfsg/nirfsg/nirfsg_pb2.py @@ -0,0 +1,530 @@ +# -*- coding: utf-8 -*- +# Generated by the protocol buffer compiler. DO NOT EDIT! +# source: nirfsg.proto +"""Generated protocol buffer code.""" +from google.protobuf import descriptor as _descriptor +from google.protobuf import descriptor_pool as _descriptor_pool +from google.protobuf import symbol_database as _symbol_database +from google.protobuf.internal import builder as _builder +# @@protoc_insertion_point(imports) + +_sym_db = _symbol_database.Default() + + +from . import nidevice_pb2 as nidevice__pb2 +from . import session_pb2 as session__pb2 + + +DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x0cnirfsg.proto\x12\x0bnirfsg_grpc\x1a\x0enidevice.proto\x1a\rsession.proto\"2\n\x0c\x41\x62ortRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\"\x1f\n\rAbortResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"p\n\x1a\x41llocateArbWaveformRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x15\n\rwaveform_name\x18\x02 \x01(\t\x12\x17\n\x0fsize_in_samples\x18\x03 \x01(\x11\"-\n\x1b\x41llocateArbWaveformResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x9d\x01\n\x1e\x43heckAttributeViBooleanRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x14\n\x0c\x63hannel_name\x18\x02 \x01(\t\x12\x32\n\x0c\x61ttribute_id\x18\x03 \x01(\x0e\x32\x1c.nirfsg_grpc.NiRFSGAttribute\x12\r\n\x05value\x18\x04 \x01(\x08\"1\n\x1f\x43heckAttributeViBooleanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xe9\x01\n\x1c\x43heckAttributeViInt32Request\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x14\n\x0c\x63hannel_name\x18\x02 \x01(\t\x12\x32\n\x0c\x61ttribute_id\x18\x03 \x01(\x0e\x32\x1c.nirfsg_grpc.NiRFSGAttribute\x12\x38\n\x05value\x18\x04 \x01(\x0e\x32\'.nirfsg_grpc.NiRFSGInt32AttributeValuesH\x00\x12\x13\n\tvalue_raw\x18\x05 \x01(\x11H\x00\x42\x0c\n\nvalue_enum\"/\n\x1d\x43heckAttributeViInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x9f\x01\n\x1c\x43heckAttributeViInt64Request\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x14\n\x0c\x63hannel_name\x18\x02 \x01(\t\x12\x32\n\x0c\x61ttribute_id\x18\x03 \x01(\x0e\x32\x1c.nirfsg_grpc.NiRFSGAttribute\x12\x11\n\tvalue_raw\x18\x04 \x01(\x03\"/\n\x1d\x43heckAttributeViInt64Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xeb\x01\n\x1d\x43heckAttributeViReal64Request\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x14\n\x0c\x63hannel_name\x18\x02 \x01(\t\x12\x32\n\x0c\x61ttribute_id\x18\x03 \x01(\x0e\x32\x1c.nirfsg_grpc.NiRFSGAttribute\x12\x39\n\x05value\x18\x04 \x01(\x0e\x32(.nirfsg_grpc.NiRFSGReal64AttributeValuesH\x00\x12\x13\n\tvalue_raw\x18\x05 \x01(\x01H\x00\x42\x0c\n\nvalue_enum\"0\n\x1e\x43heckAttributeViReal64Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xb5\x01\n\x1e\x43heckAttributeViSessionRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x14\n\x0c\x63hannel_name\x18\x02 \x01(\t\x12\x32\n\x0c\x61ttribute_id\x18\x03 \x01(\x0e\x32\x1c.nirfsg_grpc.NiRFSGAttribute\x12%\n\x05value\x18\x04 \x01(\x0b\x32\x16.nidevice_grpc.Session\"1\n\x1f\x43heckAttributeViSessionResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xf8\x01\n\x1d\x43heckAttributeViStringRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x14\n\x0c\x63hannel_name\x18\x02 \x01(\t\x12\x32\n\x0c\x61ttribute_id\x18\x03 \x01(\x0e\x32\x1c.nirfsg_grpc.NiRFSGAttribute\x12\x46\n\x0cvalue_mapped\x18\x04 \x01(\x0e\x32..nirfsg_grpc.NiRFSGStringAttributeValuesMappedH\x00\x12\x13\n\tvalue_raw\x18\x05 \x01(\tH\x00\x42\x0c\n\nvalue_enum\"0\n\x1e\x43heckAttributeViStringResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"B\n\x1c\x43heckGenerationStatusRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\"@\n\x1d\x43heckGenerationStatusResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x0f\n\x07is_done\x18\x02 \x01(\x08\"^\n%CheckIfConfigurationListExistsRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x11\n\tlist_name\x18\x02 \x01(\t\"M\n&CheckIfConfigurationListExistsResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x13\n\x0blist_exists\x18\x02 \x01(\x08\"U\n\x1a\x43heckIfScriptExistsRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x13\n\x0bscript_name\x18\x02 \x01(\t\"D\n\x1b\x43heckIfScriptExistsResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x15\n\rscript_exists\x18\x02 \x01(\x08\"Y\n\x1c\x43heckIfWaveformExistsRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x15\n\rwaveform_name\x18\x02 \x01(\t\"H\n\x1d\x43heckIfWaveformExistsResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x17\n\x0fwaveform_exists\x18\x02 \x01(\x08\"A\n\x1b\x43learAllArbWaveformsRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\".\n\x1c\x43learAllArbWaveformsResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"K\n\x17\x43learArbWaveformRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0c\n\x04name\x18\x02 \x01(\t\"*\n\x18\x43learArbWaveformResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"7\n\x11\x43learErrorRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\"$\n\x12\x43learErrorResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"D\n\x1e\x43learSelfCalibrateRangeRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\"1\n\x1f\x43learSelfCalibrateRangeResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"2\n\x0c\x43loseRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\"\x1f\n\rCloseResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"3\n\rCommitRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\" \n\x0e\x43ommitResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xda\x01\n3ConfigureDeembeddingTableInterpolationLinearRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0c\n\x04port\x18\x02 \x01(\t\x12\x12\n\ntable_name\x18\x03 \x01(\t\x12\x38\n\x06\x66ormat\x18\x04 \x01(\x0e\x32&.nirfsg_grpc.LinearInterpolationFormatH\x00\x12\x14\n\nformat_raw\x18\x05 \x01(\x11H\x00\x42\r\n\x0b\x66ormat_enum\"F\n4ConfigureDeembeddingTableInterpolationLinearResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"|\n4ConfigureDeembeddingTableInterpolationNearestRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0c\n\x04port\x18\x02 \x01(\t\x12\x12\n\ntable_name\x18\x03 \x01(\t\"G\n5ConfigureDeembeddingTableInterpolationNearestResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"{\n3ConfigureDeembeddingTableInterpolationSplineRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0c\n\x04port\x18\x02 \x01(\t\x12\x12\n\ntable_name\x18\x03 \x01(\t\"F\n4ConfigureDeembeddingTableInterpolationSplineResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xa6\x02\n7ConfigureDigitalEdgeConfigurationListStepTriggerRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12S\n\rsource_mapped\x18\x02 \x01(\x0e\x32:.nirfsg_grpc.DigitalEdgeConfigurationListStepTriggerSourceH\x00\x12\x14\n\nsource_raw\x18\x03 \x01(\tH\x00\x12,\n\x04\x65\x64ge\x18\x04 \x01(\x0e\x32\x1c.nirfsg_grpc.DigitalEdgeEdgeH\x01\x12\x12\n\x08\x65\x64ge_raw\x18\x05 \x01(\x11H\x01\x42\r\n\x0bsource_enumB\x0b\n\tedge_enum\"J\n8ConfigureDigitalEdgeConfigurationListStepTriggerResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xf2\x02\n(ConfigureDigitalEdgeScriptTriggerRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12L\n\x11trigger_id_mapped\x18\x02 \x01(\x0e\x32/.nirfsg_grpc.DigitalEdgeScriptTriggerIdentifierH\x00\x12\x18\n\x0etrigger_id_raw\x18\x03 \x01(\tH\x00\x12\x33\n\rsource_mapped\x18\x04 \x01(\x0e\x32\x1a.nirfsg_grpc.TriggerSourceH\x01\x12\x14\n\nsource_raw\x18\x05 \x01(\tH\x01\x12,\n\x04\x65\x64ge\x18\x06 \x01(\x0e\x32\x1c.nirfsg_grpc.DigitalEdgeEdgeH\x02\x12\x12\n\x08\x65\x64ge_raw\x18\x07 \x01(\x11H\x02\x42\x11\n\x0ftrigger_id_enumB\r\n\x0bsource_enumB\x0b\n\tedge_enum\";\n)ConfigureDigitalEdgeScriptTriggerResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xf6\x01\n\'ConfigureDigitalEdgeStartTriggerRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x33\n\rsource_mapped\x18\x02 \x01(\x0e\x32\x1a.nirfsg_grpc.TriggerSourceH\x00\x12\x14\n\nsource_raw\x18\x03 \x01(\tH\x00\x12,\n\x04\x65\x64ge\x18\x04 \x01(\x0e\x32\x1c.nirfsg_grpc.DigitalEdgeEdgeH\x01\x12\x12\n\x08\x65\x64ge_raw\x18\x05 \x01(\x11H\x01\x42\r\n\x0bsource_enumB\x0b\n\tedge_enum\":\n(ConfigureDigitalEdgeStartTriggerResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xfe\x02\n)ConfigureDigitalLevelScriptTriggerRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12L\n\x11trigger_id_mapped\x18\x02 \x01(\x0e\x32/.nirfsg_grpc.DigitalEdgeScriptTriggerIdentifierH\x00\x12\x18\n\x0etrigger_id_raw\x18\x03 \x01(\tH\x00\x12\x33\n\rsource_mapped\x18\x04 \x01(\x0e\x32\x1a.nirfsg_grpc.TriggerSourceH\x01\x12\x14\n\nsource_raw\x18\x05 \x01(\tH\x01\x12\x35\n\x05level\x18\x06 \x01(\x0e\x32$.nirfsg_grpc.DigitalLevelActiveLevelH\x02\x12\x13\n\tlevel_raw\x18\x07 \x01(\x11H\x02\x42\x11\n\x0ftrigger_id_enumB\r\n\x0bsource_enumB\x0c\n\nlevel_enum\"<\n*ConfigureDigitalLevelScriptTriggerResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"y\n4ConfigureDigitalModulationUserDefinedWaveformRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1d\n\x15user_defined_waveform\x18\x02 \x01(\x0c\"G\n5ConfigureDigitalModulationUserDefinedWaveformResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xb3\x01\n\x1e\x43onfigureGenerationModeRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x36\n\x0fgeneration_mode\x18\x02 \x01(\x0e\x32\x1b.nirfsg_grpc.GenerationModeH\x00\x12\x1d\n\x13generation_mode_raw\x18\x03 \x01(\x11H\x00\x42\x16\n\x14generation_mode_enum\"1\n\x1f\x43onfigureGenerationModeResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"[\n\x1d\x43onfigureOutputEnabledRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x16\n\x0eoutput_enabled\x18\x02 \x01(\x08\"0\n\x1e\x43onfigureOutputEnabledResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"z\n/ConfigureP2PEndpointFullnessStartTriggerRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12#\n\x1bp2p_endpoint_fullness_level\x18\x02 \x01(\x03\"B\n0ConfigureP2PEndpointFullnessStartTriggerResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xbf\x01\n\x1f\x43onfigurePXIChassisClk10Request\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12?\n\x17pxi_clk10_source_mapped\x18\x02 \x01(\x0e\x32\x1c.nirfsg_grpc.PXIChassisClk10H\x00\x12\x1e\n\x14pxi_clk10_source_raw\x18\x03 \x01(\tH\x00\x42\x17\n\x15pxi_clk10_source_enum\"2\n ConfigurePXIChassisClk10Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xb6\x01\n\x1e\x43onfigurePowerLevelTypeRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x37\n\x10power_level_type\x18\x02 \x01(\x0e\x32\x1b.nirfsg_grpc.PowerLevelTypeH\x00\x12\x1e\n\x14power_level_type_raw\x18\x03 \x01(\x11H\x00\x42\x17\n\x15power_level_type_enum\"1\n\x1f\x43onfigurePowerLevelTypeResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"`\n\x12\x43onfigureRFRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x11\n\tfrequency\x18\x02 \x01(\x01\x12\x13\n\x0bpower_level\x18\x03 \x01(\x01\"%\n\x13\x43onfigureRFResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xcf\x01\n\x18\x43onfigureRefClockRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12>\n\x17ref_clock_source_mapped\x18\x02 \x01(\x0e\x32\x1b.nirfsg_grpc.RefClockSourceH\x00\x12\x1e\n\x14ref_clock_source_raw\x18\x03 \x01(\tH\x00\x12\x16\n\x0eref_clock_rate\x18\x04 \x01(\x01\x42\x17\n\x15ref_clock_source_enum\"+\n\x19\x43onfigureRefClockResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"_\n\x1f\x43onfigureSignalBandwidthRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x18\n\x10signal_bandwidth\x18\x02 \x01(\x01\"2\n ConfigureSignalBandwidthResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xc6\x01\n%ConfigureSoftwareScriptTriggerRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12L\n\x11trigger_id_mapped\x18\x02 \x01(\x0e\x32/.nirfsg_grpc.DigitalEdgeScriptTriggerIdentifierH\x00\x12\x18\n\x0etrigger_id_raw\x18\x03 \x01(\tH\x00\x42\x11\n\x0ftrigger_id_enum\"8\n&ConfigureSoftwareScriptTriggerResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"J\n$ConfigureSoftwareStartTriggerRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\"7\n%ConfigureSoftwareStartTriggerResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x86\x01\n*ConfigureUpconverterPLLSettlingTimeRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x19\n\x11pll_settling_time\x18\x02 \x01(\x01\x12\x19\n\x11\x65nsure_pll_locked\x18\x03 \x01(\x08\"=\n+ConfigureUpconverterPLLSettlingTimeResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xb8\x01\n\x1e\x43reateConfigurationListRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x11\n\tlist_name\x18\x02 \x01(\t\x12\x43\n\x1d\x63onfiguration_list_attributes\x18\x03 \x03(\x0e\x32\x1c.nirfsg_grpc.NiRFSGAttribute\x12\x1a\n\x12set_as_active_list\x18\x04 \x01(\x08\"1\n\x1f\x43reateConfigurationListResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"d\n\"CreateConfigurationListStepRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1a\n\x12set_as_active_step\x18\x02 \x01(\x08\"5\n#CreateConfigurationListStepResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xe7\x02\n,CreateDeembeddingSparameterTableArrayRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0c\n\x04port\x18\x02 \x01(\t\x12\x12\n\ntable_name\x18\x03 \x01(\t\x12\x13\n\x0b\x66requencies\x18\x04 \x03(\x01\x12\x38\n\x10sparameter_table\x18\x05 \x03(\x0b\x32\x1e.nidevice_grpc.NIComplexNumber\x12\x17\n\x0fnumber_of_ports\x18\x06 \x01(\x11\x12\x44\n\x16sparameter_orientation\x18\x07 \x01(\x0e\x32\".nirfsg_grpc.SParameterOrientationH\x00\x12$\n\x1asparameter_orientation_raw\x18\x08 \x01(\x11H\x00\x42\x1d\n\x1bsparameter_orientation_enum\"?\n-CreateDeembeddingSparameterTableArrayResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x98\x02\n.CreateDeembeddingSparameterTableS2PFileRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0c\n\x04port\x18\x02 \x01(\t\x12\x12\n\ntable_name\x18\x03 \x01(\t\x12\x15\n\rs2p_file_path\x18\x04 \x01(\t\x12\x44\n\x16sparameter_orientation\x18\x05 \x01(\x0e\x32\".nirfsg_grpc.SParameterOrientationH\x00\x12$\n\x1asparameter_orientation_raw\x18\x06 \x01(\x11H\x00\x42\x1d\n\x1bsparameter_orientation_enum\"A\n/CreateDeembeddingSparameterTableS2PFileResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"G\n!DeleteAllDeembeddingTablesRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\"4\n\"DeleteAllDeembeddingTablesResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"W\n\x1e\x44\x65leteConfigurationListRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x11\n\tlist_name\x18\x02 \x01(\t\"1\n\x1f\x44\x65leteConfigurationListResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"e\n\x1d\x44\x65leteDeembeddingTableRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0c\n\x04port\x18\x02 \x01(\t\x12\x12\n\ntable_name\x18\x03 \x01(\t\"0\n\x1e\x44\x65leteDeembeddingTableResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"N\n\x13\x44\x65leteScriptRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x13\n\x0bscript_name\x18\x02 \x01(\t\"&\n\x14\x44\x65leteScriptResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"4\n\x0e\x44isableRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\"!\n\x0f\x44isableResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"A\n\x1b\x44isableAllModulationRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\".\n\x1c\x44isableAllModulationResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"P\n*DisableConfigurationListStepTriggerRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\"=\n+DisableConfigurationListStepTriggerResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xbc\x01\n\x1b\x44isableScriptTriggerRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12L\n\x11trigger_id_mapped\x18\x02 \x01(\x0e\x32/.nirfsg_grpc.DigitalEdgeScriptTriggerIdentifierH\x00\x12\x18\n\x0etrigger_id_raw\x18\x03 \x01(\tH\x00\x42\x11\n\x0ftrigger_id_enum\".\n\x1c\x44isableScriptTriggerResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"@\n\x1a\x44isableStartTriggerRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\"-\n\x1b\x44isableStartTriggerResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"M\n\x13\x45rrorMessageRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x12\n\nerror_code\x18\x02 \x01(\x11\"=\n\x14\x45rrorMessageResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x15\n\rerror_message\x18\x02 \x01(\t\"7\n\x11\x45rrorQueryRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\"O\n\x12\x45rrorQueryResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x12\n\nerror_code\x18\x02 \x01(\x11\x12\x15\n\rerror_message\x18\x03 \x01(\t\"\xfd\x02\n\x13\x45xportSignalRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12+\n\x06signal\x18\x02 \x01(\x0e\x32\x19.nirfsg_grpc.RoutedSignalH\x00\x12\x14\n\nsignal_raw\x18\x03 \x01(\x11H\x00\x12\x41\n\x18signal_identifier_mapped\x18\x04 \x01(\x0e\x32\x1d.nirfsg_grpc.SignalIdentifierH\x01\x12\x1f\n\x15signal_identifier_raw\x18\x05 \x01(\tH\x01\x12;\n\x16output_terminal_mapped\x18\x06 \x01(\x0e\x32\x19.nirfsg_grpc.OutputSignalH\x02\x12\x1d\n\x13output_terminal_raw\x18\x07 \x01(\tH\x02\x42\r\n\x0bsignal_enumB\x18\n\x16signal_identifier_enumB\x16\n\x14output_terminal_enum\"&\n\x14\x45xportSignalResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"E\n\x1fGetAllNamedWaveformNamesRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\"f\n GetAllNamedWaveformNamesResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x16\n\x0ewaveform_names\x18\x02 \x01(\t\x12\x1a\n\x12\x61\x63tual_buffer_size\x18\x03 \x01(\x11\">\n\x18GetAllScriptNamesRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\"]\n\x19GetAllScriptNamesResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x14\n\x0cscript_names\x18\x02 \x01(\t\x12\x1a\n\x12\x61\x63tual_buffer_size\x18\x03 \x01(\x11\"K\n\x10GetScriptRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x13\n\x0bscript_name\x18\x02 \x01(\t\"O\n\x11GetScriptResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x0e\n\x06script\x18\x02 \x01(\t\x12\x1a\n\x12\x61\x63tual_buffer_size\x18\x03 \x01(\x11\"\x8c\x01\n\x1cGetAttributeViBooleanRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x14\n\x0c\x63hannel_name\x18\x02 \x01(\t\x12\x32\n\x0c\x61ttribute_id\x18\x03 \x01(\x0e\x32\x1c.nirfsg_grpc.NiRFSGAttribute\">\n\x1dGetAttributeViBooleanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x08\"\x8a\x01\n\x1aGetAttributeViInt32Request\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x14\n\x0c\x63hannel_name\x18\x02 \x01(\t\x12\x32\n\x0c\x61ttribute_id\x18\x03 \x01(\x0e\x32\x1c.nirfsg_grpc.NiRFSGAttribute\"<\n\x1bGetAttributeViInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x11\"\x8a\x01\n\x1aGetAttributeViInt64Request\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x14\n\x0c\x63hannel_name\x18\x02 \x01(\t\x12\x32\n\x0c\x61ttribute_id\x18\x03 \x01(\x0e\x32\x1c.nirfsg_grpc.NiRFSGAttribute\"<\n\x1bGetAttributeViInt64Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x03\"\x8b\x01\n\x1bGetAttributeViReal64Request\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x14\n\x0c\x63hannel_name\x18\x02 \x01(\t\x12\x32\n\x0c\x61ttribute_id\x18\x03 \x01(\x0e\x32\x1c.nirfsg_grpc.NiRFSGAttribute\"=\n\x1cGetAttributeViReal64Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x01\"\x8c\x01\n\x1cGetAttributeViSessionRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x14\n\x0c\x63hannel_name\x18\x02 \x01(\t\x12\x32\n\x0c\x61ttribute_id\x18\x03 \x01(\x0e\x32\x1c.nirfsg_grpc.NiRFSGAttribute\"V\n\x1dGetAttributeViSessionResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12%\n\x05value\x18\x02 \x01(\x0b\x32\x16.nidevice_grpc.Session\"\x8b\x01\n\x1bGetAttributeViStringRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x14\n\x0c\x63hannel_name\x18\x02 \x01(\t\x12\x32\n\x0c\x61ttribute_id\x18\x03 \x01(\x0e\x32\x1c.nirfsg_grpc.NiRFSGAttribute\"=\n\x1cGetAttributeViStringResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\t\"J\n\x15GetChannelNameRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\r\n\x05index\x18\x02 \x01(\x11\"6\n\x16GetChannelNameResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x0c\n\x04name\x18\x02 \x01(\t\"F\n GetDeembeddingSparametersRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\"\xa0\x01\n!GetDeembeddingSparametersResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x33\n\x0bsparameters\x18\x02 \x03(\x0b\x32\x1e.nidevice_grpc.NIComplexNumber\x12\x1d\n\x15number_of_sparameters\x18\x03 \x01(\x11\x12\x17\n\x0fnumber_of_ports\x18\x04 \x01(\x11\"5\n\x0fGetErrorRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\"Q\n\x10GetErrorResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x12\n\nerror_code\x18\x02 \x01(\x11\x12\x19\n\x11\x65rror_description\x18\x03 \x01(\t\"R\n,GetExternalCalibrationLastDateAndTimeRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\"\x97\x01\n-GetExternalCalibrationLastDateAndTimeResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x0c\n\x04year\x18\x02 \x01(\x11\x12\r\n\x05month\x18\x03 \x01(\x11\x12\x0b\n\x03\x64\x61y\x18\x04 \x01(\x11\x12\x0c\n\x04hour\x18\x05 \x01(\x11\x12\x0e\n\x06minute\x18\x06 \x01(\x11\x12\x0e\n\x06second\x18\x07 \x01(\x11\"@\n\x1aGetMaxSettablePowerRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\"<\n\x1bGetMaxSettablePowerResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x01\"\x96\x01\n$GetSelfCalibrationDateAndTimeRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12%\n\x06module\x18\x02 \x01(\x0e\x32\x13.nirfsg_grpc.ModuleH\x00\x12\x14\n\nmodule_raw\x18\x03 \x01(\x11H\x00\x42\r\n\x0bmodule_enum\"\x8f\x01\n%GetSelfCalibrationDateAndTimeResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x0c\n\x04year\x18\x02 \x01(\x11\x12\r\n\x05month\x18\x03 \x01(\x11\x12\x0b\n\x03\x64\x61y\x18\x04 \x01(\x11\x12\x0c\n\x04hour\x18\x05 \x01(\x11\x12\x0e\n\x06minute\x18\x06 \x01(\x11\x12\x0e\n\x06second\x18\x07 \x01(\x11\"\x96\x01\n$GetSelfCalibrationTemperatureRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12%\n\x06module\x18\x02 \x01(\x0e\x32\x13.nirfsg_grpc.ModuleH\x00\x12\x14\n\nmodule_raw\x18\x03 \x01(\x11H\x00\x42\r\n\x0bmodule_enum\"L\n%GetSelfCalibrationTemperatureResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x13\n\x0btemperature\x18\x02 \x01(\x01\"\x8c\x02\n\x16GetTerminalNameRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12+\n\x06signal\x18\x02 \x01(\x0e\x32\x19.nirfsg_grpc.RoutedSignalH\x00\x12\x14\n\nsignal_raw\x18\x03 \x01(\x11H\x00\x12\x41\n\x18signal_identifier_mapped\x18\x04 \x01(\x0e\x32\x1d.nirfsg_grpc.SignalIdentifierH\x01\x12\x1f\n\x15signal_identifier_raw\x18\x05 \x01(\tH\x01\x42\r\n\x0bsignal_enumB\x18\n\x16signal_identifier_enum\"@\n\x17GetTerminalNameResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x15\n\rterminal_name\x18\x02 \x01(\t\"L\n\x12GetUserDataRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x12\n\nidentifier\x18\x02 \x01(\t\"M\n\x13GetUserDataResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x0c\n\x04\x64\x61ta\x18\x02 \x01(\x0c\x12\x18\n\x10\x61\x63tual_data_size\x18\x03 \x01(\x11\"a\n%GetWaveformBurstStartLocationsRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x14\n\x0c\x63hannel_name\x18\x02 \x01(\t\"b\n&GetWaveformBurstStartLocationsResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x11\n\tlocations\x18\x02 \x03(\x01\x12\x15\n\rrequired_size\x18\x03 \x01(\x11\"`\n$GetWaveformBurstStopLocationsRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x14\n\x0c\x63hannel_name\x18\x02 \x01(\t\"a\n%GetWaveformBurstStopLocationsResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x11\n\tlocations\x18\x02 \x03(\x01\x12\x15\n\rrequired_size\x18\x03 \x01(\x11\"b\n&GetWaveformMarkerEventLocationsRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x14\n\x0c\x63hannel_name\x18\x02 \x01(\t\"c\n\'GetWaveformMarkerEventLocationsResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x11\n\tlocations\x18\x02 \x03(\x01\x12\x15\n\rrequired_size\x18\x03 \x01(\x11\"\xb1\x01\n\x0bInitRequest\x12\x14\n\x0csession_name\x18\x01 \x01(\t\x12\x15\n\rresource_name\x18\x02 \x01(\t\x12\x10\n\x08id_query\x18\x03 \x01(\x08\x12\x14\n\x0creset_device\x18\x04 \x01(\x08\x12M\n\x17initialization_behavior\x18\x05 \x01(\x0e\x32,.nidevice_grpc.SessionInitializationBehavior\"\x82\x01\n\x0cInitResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12&\n\x06new_vi\x18\x02 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x19\n\rerror_message\x18\x03 \x01(\tB\x02\x18\x01\x12\x1f\n\x17new_session_initialized\x18\x04 \x01(\x08\"\xd3\x01\n\x16InitWithOptionsRequest\x12\x14\n\x0csession_name\x18\x01 \x01(\t\x12\x15\n\rresource_name\x18\x02 \x01(\t\x12\x10\n\x08id_query\x18\x03 \x01(\x08\x12\x14\n\x0creset_device\x18\x04 \x01(\x08\x12\x15\n\roption_string\x18\x05 \x01(\t\x12M\n\x17initialization_behavior\x18\x06 \x01(\x0e\x32,.nidevice_grpc.SessionInitializationBehavior\"\x89\x01\n\x17InitWithOptionsResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\"\n\x02vi\x18\x02 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x19\n\rerror_message\x18\x03 \x01(\tB\x02\x18\x01\x12\x1f\n\x17new_session_initialized\x18\x04 \x01(\x08\"5\n\x0fInitiateRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\"\"\n\x10InitiateResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"D\n\x1eInvalidateAllAttributesRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\"1\n\x1fInvalidateAllAttributesResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"p\n!LoadConfigurationsFromFileRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x14\n\x0c\x63hannel_name\x18\x02 \x01(\t\x12\x11\n\tfile_path\x18\x03 \x01(\t\"4\n\"LoadConfigurationsFromFileResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"?\n\x19PerformPowerSearchRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\",\n\x1aPerformPowerSearchResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"E\n\x1fPerformThermalCorrectionRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\"2\n PerformThermalCorrectionResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"I\n#QueryArbWaveformCapabilitiesRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\"\xa4\x01\n$QueryArbWaveformCapabilitiesResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x1c\n\x14max_number_waveforms\x18\x02 \x01(\x11\x12\x18\n\x10waveform_quantum\x18\x03 \x01(\x11\x12\x19\n\x11min_waveform_size\x18\x04 \x01(\x11\x12\x19\n\x11max_waveform_size\x18\x05 \x01(\x11\"\x92\x01\n*ReadAndDownloadWaveformFromFileTDMSRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x15\n\rwaveform_name\x18\x02 \x01(\t\x12\x11\n\tfile_path\x18\x03 \x01(\t\x12\x16\n\x0ewaveform_index\x18\x04 \x01(\r\"=\n+ReadAndDownloadWaveformFromFileTDMSResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"2\n\x0cResetRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\"\x1f\n\rResetResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x85\x01\n\x15ResetAttributeRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x14\n\x0c\x63hannel_name\x18\x02 \x01(\t\x12\x32\n\x0c\x61ttribute_id\x18\x03 \x01(\x0e\x32\x1c.nirfsg_grpc.NiRFSGAttribute\"(\n\x16ResetAttributeResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"8\n\x12ResetDeviceRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\"%\n\x13ResetDeviceResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\">\n\x18ResetWithDefaultsRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\"+\n\x19ResetWithDefaultsResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xb3\x01\n\x17ResetWithOptionsRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x41\n\rsteps_to_omit\x18\x02 \x01(\x0e\x32(.nirfsg_grpc.ResetWithOptionsStepsToOmitH\x00\x12\x1b\n\x11steps_to_omit_raw\x18\x03 \x01(\x04H\x00\x42\x14\n\x12steps_to_omit_enum\"*\n\x18ResetWithOptionsResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\":\n\x14RevisionQueryRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\"f\n\x15RevisionQueryResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\"\n\x1ainstrument_driver_revision\x18\x02 \x01(\t\x12\x19\n\x11\x66irmware_revision\x18\x03 \x01(\t\"n\n\x1fSaveConfigurationsToFileRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x14\n\x0c\x63hannel_name\x18\x02 \x01(\t\x12\x11\n\tfile_path\x18\x03 \x01(\t\"2\n SaveConfigurationsToFileResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"L\n\x18SelectArbWaveformRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0c\n\x04name\x18\x02 \x01(\t\"+\n\x19SelectArbWaveformResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"4\n\x0eSelfCalRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\"!\n\x0fSelfCalResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x97\x02\n\x19SelfCalibrateRangeRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x43\n\rsteps_to_omit\x18\x02 \x01(\x0e\x32*.nirfsg_grpc.SelfCalibrateRangeStepsToOmitH\x00\x12\x1b\n\x11steps_to_omit_raw\x18\x03 \x01(\x03H\x00\x12\x15\n\rmin_frequency\x18\x04 \x01(\x01\x12\x15\n\rmax_frequency\x18\x05 \x01(\x01\x12\x17\n\x0fmin_power_level\x18\x06 \x01(\x01\x12\x17\n\x0fmax_power_level\x18\x07 \x01(\x01\x42\x14\n\x12steps_to_omit_enum\",\n\x1aSelfCalibrateRangeResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"5\n\x0fSelfTestRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\"W\n\x10SelfTestResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\x12\x18\n\x10self_test_result\x18\x02 \x01(\x11\x12\x19\n\x11self_test_message\x18\x03 \x01(\t\"\x9a\x02\n\x1eSendSoftwareEdgeTriggerRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12,\n\x07trigger\x18\x02 \x01(\x0e\x32\x19.nirfsg_grpc.RoutedSignalH\x00\x12\x15\n\x0btrigger_raw\x18\x03 \x01(\x11H\x00\x12\x42\n\x19trigger_identifier_mapped\x18\x04 \x01(\x0e\x32\x1d.nirfsg_grpc.SignalIdentifierH\x01\x12 \n\x16trigger_identifier_raw\x18\x05 \x01(\tH\x01\x42\x0e\n\x0ctrigger_enumB\x19\n\x17trigger_identifier_enum\"1\n\x1fSendSoftwareEdgeTriggerResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xd2\x01\n&SetArbWaveformNextWritePositionRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x15\n\rwaveform_name\x18\x02 \x01(\t\x12.\n\x0brelative_to\x18\x03 \x01(\x0e\x32\x17.nirfsg_grpc.RelativeToH\x00\x12\x19\n\x0frelative_to_raw\x18\x04 \x01(\x11H\x00\x12\x0e\n\x06offset\x18\x05 \x01(\x11\x42\x12\n\x10relative_to_enum\"9\n\'SetArbWaveformNextWritePositionResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x9b\x01\n\x1cSetAttributeViBooleanRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x14\n\x0c\x63hannel_name\x18\x02 \x01(\t\x12\x32\n\x0c\x61ttribute_id\x18\x03 \x01(\x0e\x32\x1c.nirfsg_grpc.NiRFSGAttribute\x12\r\n\x05value\x18\x04 \x01(\x08\"/\n\x1dSetAttributeViBooleanResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xe7\x01\n\x1aSetAttributeViInt32Request\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x14\n\x0c\x63hannel_name\x18\x02 \x01(\t\x12\x32\n\x0c\x61ttribute_id\x18\x03 \x01(\x0e\x32\x1c.nirfsg_grpc.NiRFSGAttribute\x12\x38\n\x05value\x18\x04 \x01(\x0e\x32\'.nirfsg_grpc.NiRFSGInt32AttributeValuesH\x00\x12\x13\n\tvalue_raw\x18\x05 \x01(\x11H\x00\x42\x0c\n\nvalue_enum\"-\n\x1bSetAttributeViInt32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x9d\x01\n\x1aSetAttributeViInt64Request\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x14\n\x0c\x63hannel_name\x18\x02 \x01(\t\x12\x32\n\x0c\x61ttribute_id\x18\x03 \x01(\x0e\x32\x1c.nirfsg_grpc.NiRFSGAttribute\x12\x11\n\tvalue_raw\x18\x04 \x01(\x03\"-\n\x1bSetAttributeViInt64Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xe9\x01\n\x1bSetAttributeViReal64Request\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x14\n\x0c\x63hannel_name\x18\x02 \x01(\t\x12\x32\n\x0c\x61ttribute_id\x18\x03 \x01(\x0e\x32\x1c.nirfsg_grpc.NiRFSGAttribute\x12\x39\n\x05value\x18\x04 \x01(\x0e\x32(.nirfsg_grpc.NiRFSGReal64AttributeValuesH\x00\x12\x13\n\tvalue_raw\x18\x05 \x01(\x01H\x00\x42\x0c\n\nvalue_enum\".\n\x1cSetAttributeViReal64Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xb3\x01\n\x1cSetAttributeViSessionRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x14\n\x0c\x63hannel_name\x18\x02 \x01(\t\x12\x32\n\x0c\x61ttribute_id\x18\x03 \x01(\x0e\x32\x1c.nirfsg_grpc.NiRFSGAttribute\x12%\n\x05value\x18\x04 \x01(\x0b\x32\x16.nidevice_grpc.Session\"/\n\x1dSetAttributeViSessionResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xf6\x01\n\x1bSetAttributeViStringRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x14\n\x0c\x63hannel_name\x18\x02 \x01(\t\x12\x32\n\x0c\x61ttribute_id\x18\x03 \x01(\x0e\x32\x1c.nirfsg_grpc.NiRFSGAttribute\x12\x46\n\x0cvalue_mapped\x18\x04 \x01(\x0e\x32..nirfsg_grpc.NiRFSGStringAttributeValuesMappedH\x00\x12\x13\n\tvalue_raw\x18\x05 \x01(\tH\x00\x42\x0c\n\nvalue_enum\".\n\x1cSetAttributeViStringResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"Z\n\x12SetUserDataRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x12\n\nidentifier\x18\x02 \x01(\t\x12\x0c\n\x04\x64\x61ta\x18\x03 \x01(\x0c\"%\n\x13SetUserDataResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"t\n%SetWaveformBurstStartLocationsRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x14\n\x0c\x63hannel_name\x18\x02 \x01(\t\x12\x11\n\tlocations\x18\x03 \x03(\x01\"8\n&SetWaveformBurstStartLocationsResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"s\n$SetWaveformBurstStopLocationsRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x14\n\x0c\x63hannel_name\x18\x02 \x01(\t\x12\x11\n\tlocations\x18\x03 \x03(\x01\"7\n%SetWaveformBurstStopLocationsResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"u\n&SetWaveformMarkerEventLocationsRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x14\n\x0c\x63hannel_name\x18\x02 \x01(\t\x12\x11\n\tlocations\x18\x03 \x03(\x01\"9\n\'SetWaveformMarkerEventLocationsResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\\\n\x17WaitUntilSettledRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x1d\n\x15max_time_milliseconds\x18\x02 \x01(\x11\"*\n\x18WaitUntilSettledResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x8f\x01\n\x17WriteArbWaveformRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x15\n\rwaveform_name\x18\x02 \x01(\t\x12\x0e\n\x06i_data\x18\x03 \x03(\x01\x12\x0e\n\x06q_data\x18\x04 \x03(\x01\x12\x19\n\x11more_data_pending\x18\x05 \x01(\x08\"*\n\x18WriteArbWaveformResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xae\x01\n!WriteArbWaveformComplexF32Request\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x15\n\rwaveform_name\x18\x02 \x01(\t\x12\x33\n\x08wfm_data\x18\x03 \x03(\x0b\x32!.nidevice_grpc.NIComplexNumberF32\x12\x19\n\x11more_data_pending\x18\x04 \x01(\x08\"4\n\"WriteArbWaveformComplexF32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\xab\x01\n!WriteArbWaveformComplexF64Request\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x15\n\rwaveform_name\x18\x02 \x01(\t\x12\x30\n\x08wfm_data\x18\x03 \x03(\x0b\x32\x1e.nidevice_grpc.NIComplexNumber\x12\x19\n\x11more_data_pending\x18\x04 \x01(\x08\"4\n\"WriteArbWaveformComplexF64Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x8d\x01\n!WriteArbWaveformComplexI16Request\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x15\n\rwaveform_name\x18\x02 \x01(\t\x12-\n\x08wfm_data\x18\x03 \x03(\x0b\x32\x1b.nidevice_grpc.NIComplexI16\"4\n\"WriteArbWaveformComplexI16Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\"\x92\x01\n\x1aWriteArbWaveformF32Request\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x15\n\rwaveform_name\x18\x02 \x01(\t\x12\x0e\n\x06i_data\x18\x03 \x03(\x02\x12\x0e\n\x06q_data\x18\x04 \x03(\x02\x12\x19\n\x11more_data_pending\x18\x05 \x01(\x08\"-\n\x1bWriteArbWaveformF32Response\x12\x0e\n\x06status\x18\x01 \x01(\x05\"H\n\x12WriteScriptRequest\x12\"\n\x02vi\x18\x01 \x01(\x0b\x32\x16.nidevice_grpc.Session\x12\x0e\n\x06script\x18\x02 \x01(\t\"%\n\x13WriteScriptResponse\x12\x0e\n\x06status\x18\x01 \x01(\x05*\xdd\x61\n\x0fNiRFSGAttribute\x12 \n\x1cNIRFSG_ATTRIBUTE_UNSPECIFIED\x10\x00\x12\"\n\x1cNIRFSG_ATTRIBUTE_RANGE_CHECK\x10\x92\x8b@\x12.\n(NIRFSG_ATTRIBUTE_QUERY_INSTRUMENT_STATUS\x10\x93\x8b@\x12\x1c\n\x16NIRFSG_ATTRIBUTE_CACHE\x10\x94\x8b@\x12\x1f\n\x19NIRFSG_ATTRIBUTE_SIMULATE\x10\x95\x8b@\x12\'\n!NIRFSG_ATTRIBUTE_RECORD_COERCIONS\x10\x96\x8b@\x12#\n\x1dNIRFSG_ATTRIBUTE_DRIVER_SETUP\x10\x97\x8b@\x12(\n\"NIRFSG_ATTRIBUTE_INTERCHANGE_CHECK\x10\xa5\x8b@\x12\x1a\n\x14NIRFSG_ATTRIBUTE_SPY\x10\xa6\x8b@\x12.\n(NIRFSG_ATTRIBUTE_USE_SPECIFIC_SIMULATION\x10\xa7\x8b@\x12$\n\x1eNIRFSG_ATTRIBUTE_CHANNEL_COUNT\x10\xdb\x8c@\x12-\n\'NIRFSG_ATTRIBUTE_SPECIFIC_DRIVER_PREFIX\x10\xbe\x8d@\x12-\n\'NIRFSG_ATTRIBUTE_IO_RESOURCE_DESCRIPTOR\x10\xc0\x8d@\x12#\n\x1dNIRFSG_ATTRIBUTE_LOGICAL_NAME\x10\xc1\x8d@\x12\x32\n,NIRFSG_ATTRIBUTE_SUPPORTED_INSTRUMENT_MODELS\x10\xd7\x8d@\x12)\n#NIRFSG_ATTRIBUTE_GROUP_CAPABILITIES\x10\xa1\x8e@\x12,\n&NIRFSG_ATTRIBUTE_FUNCTION_CAPABILITIES\x10\xa2\x8e@\x12\x33\n-NIRFSG_ATTRIBUTE_INSTRUMENT_FIRMWARE_REVISION\x10\x8e\x8f@\x12.\n(NIRFSG_ATTRIBUTE_INSTRUMENT_MANUFACTURER\x10\x8f\x8f@\x12\'\n!NIRFSG_ATTRIBUTE_INSTRUMENT_MODEL\x10\x90\x8f@\x12-\n\'NIRFSG_ATTRIBUTE_SPECIFIC_DRIVER_VENDOR\x10\x91\x8f@\x12\x32\n,NIRFSG_ATTRIBUTE_SPECIFIC_DRIVER_DESCRIPTION\x10\x92\x8f@\x12?\n9NIRFSG_ATTRIBUTE_SPECIFIC_DRIVER_CLASS_SPEC_MAJOR_VERSION\x10\x93\x8f@\x12?\n9NIRFSG_ATTRIBUTE_SPECIFIC_DRIVER_CLASS_SPEC_MINOR_VERSION\x10\x94\x8f@\x12/\n)NIRFSG_ATTRIBUTE_SPECIFIC_DRIVER_REVISION\x10\xb7\x8f@\x12\'\n!NIRFSG_ATTRIBUTE_REF_CLOCK_SOURCE\x10\xb1\x98\x46\x12\x38\n2NIRFSG_ATTRIBUTE_DIGITAL_EDGE_START_TRIGGER_SOURCE\x10\xb2\x98\x46\x12=\n7NIRFSG_ATTRIBUTE_EXPORTED_START_TRIGGER_OUTPUT_TERMINAL\x10\xb3\x98\x46\x12/\n)NIRFSG_ATTRIBUTE_PXI_CHASSIS_CLK10_SOURCE\x10\xb4\x98\x46\x12/\n)NIRFSG_ATTRIBUTE_PHASE_CONTINUITY_ENABLED\x10\xb5\x98\x46\x12*\n$NIRFSG_ATTRIBUTE_FREQUENCY_TOLERANCE\x10\xb6\x98\x46\x12\'\n!NIRFSG_ATTRIBUTE_SIGNAL_BANDWIDTH\x10\xb7\x98\x46\x12\x33\n-NIRFSG_ATTRIBUTE_AUTOMATIC_THERMAL_CORRECTION\x10\xb8\x98\x46\x12.\n(NIRFSG_ATTRIBUTE_ATTENUATOR_HOLD_ENABLED\x10\xb9\x98\x46\x12\x30\n*NIRFSG_ATTRIBUTE_ATTENUATOR_HOLD_MAX_POWER\x10\xba\x98\x46\x12*\n$NIRFSG_ATTRIBUTE_PEAK_ENVELOPE_POWER\x10\xbb\x98\x46\x12\x33\n-NIRFSG_ATTRIBUTE_DIGITAL_EQUALIZATION_ENABLED\x10\xbc\x98\x46\x12%\n\x1fNIRFSG_ATTRIBUTE_LO_OUT_ENABLED\x10\xbd\x98\x46\x12?\n9NIRFSG_ATTRIBUTE_ALLOW_OUT_OF_SPECIFICATION_USER_SETTINGS\x10\xbe\x98\x46\x12,\n&NIRFSG_ATTRIBUTE_ARB_CARRIER_FREQUENCY\x10\xbf\x98\x46\x12 \n\x1aNIRFSG_ATTRIBUTE_ARB_POWER\x10\xc0\x98\x46\x12)\n#NIRFSG_ATTRIBUTE_DEVICE_TEMPERATURE\x10\xc1\x98\x46\x12&\n NIRFSG_ATTRIBUTE_GENERATION_MODE\x10\xc2\x98\x46\x12*\n$NIRFSG_ATTRIBUTE_SCRIPT_TRIGGER_TYPE\x10\xc3\x98\x46\x12\x39\n3NIRFSG_ATTRIBUTE_DIGITAL_EDGE_SCRIPT_TRIGGER_SOURCE\x10\xc4\x98\x46\x12\x37\n1NIRFSG_ATTRIBUTE_DIGITAL_EDGE_SCRIPT_TRIGGER_EDGE\x10\xc5\x98\x46\x12>\n8NIRFSG_ATTRIBUTE_EXPORTED_SCRIPT_TRIGGER_OUTPUT_TERMINAL\x10\xc6\x98\x46\x12&\n NIRFSG_ATTRIBUTE_SELECTED_SCRIPT\x10\xc7\x98\x46\x12#\n\x1dNIRFSG_ATTRIBUTE_PHASE_OFFSET\x10\xc8\x98\x46\x12*\n$NIRFSG_ATTRIBUTE_ARB_PRE_FILTER_GAIN\x10\xc9\x98\x46\x12$\n\x1eNIRFSG_ATTRIBUTE_SERIAL_NUMBER\x10\xca\x98\x46\x12%\n\x1fNIRFSG_ATTRIBUTE_LOOP_BANDWIDTH\x10\xcb\x98\x46\x12\x34\n.NIRFSG_ATTRIBUTE_ARB_ONBOARD_SAMPLE_CLOCK_MODE\x10\xcd\x98\x46\x12.\n(NIRFSG_ATTRIBUTE_ARB_SAMPLE_CLOCK_SOURCE\x10\xce\x98\x46\x12,\n&NIRFSG_ATTRIBUTE_ARB_SAMPLE_CLOCK_RATE\x10\xcf\x98\x46\x12-\n\'NIRFSG_ATTRIBUTE_ANALOG_MODULATION_TYPE\x10\xd0\x98\x46\x12\x36\n0NIRFSG_ATTRIBUTE_ANALOG_MODULATION_WAVEFORM_TYPE\x10\xd1\x98\x46\x12;\n5NIRFSG_ATTRIBUTE_ANALOG_MODULATION_WAVEFORM_FREQUENCY\x10\xd2\x98\x46\x12\x35\n/NIRFSG_ATTRIBUTE_ANALOG_MODULATION_FM_DEVIATION\x10\xd3\x98\x46\x12.\n(NIRFSG_ATTRIBUTE_DIGITAL_MODULATION_TYPE\x10\xd4\x98\x46\x12\x35\n/NIRFSG_ATTRIBUTE_DIGITAL_MODULATION_SYMBOL_RATE\x10\xd5\x98\x46\x12\x37\n1NIRFSG_ATTRIBUTE_DIGITAL_MODULATION_WAVEFORM_TYPE\x10\xd6\x98\x46\x12\x34\n.NIRFSG_ATTRIBUTE_DIGITAL_MODULATION_PRBS_ORDER\x10\xd7\x98\x46\x12\x33\n-NIRFSG_ATTRIBUTE_DIGITAL_MODULATION_PRBS_SEED\x10\xd8\x98\x46\x12\x37\n1NIRFSG_ATTRIBUTE_DIGITAL_MODULATION_FSK_DEVIATION\x10\xd9\x98\x46\x12&\n NIRFSG_ATTRIBUTE_DIRECT_DOWNLOAD\x10\xda\x98\x46\x12\'\n!NIRFSG_ATTRIBUTE_POWER_LEVEL_TYPE\x10\xdb\x98\x46\x12&\n NIRFSG_ATTRIBUTE_DIGITAL_PATTERN\x10\xdc\x98\x46\x12(\n\"NIRFSG_ATTRIBUTE_STREAMING_ENABLED\x10\xdd\x98\x46\x12.\n(NIRFSG_ATTRIBUTE_STREAMING_WAVEFORM_NAME\x10\xde\x98\x46\x12<\n6NIRFSG_ATTRIBUTE_STREAMING_SPACE_AVAILABLE_IN_WAVEFORM\x10\xdf\x98\x46\x12/\n)NIRFSG_ATTRIBUTE_DATA_TRANSFER_BLOCK_SIZE\x10\xe0\x98\x46\x12;\n5NIRFSG_ATTRIBUTE_ARB_WAVEFORM_SOFTWARE_SCALING_FACTOR\x10\xe4\x98\x46\x12\x39\n3NIRFSG_ATTRIBUTE_EXPORTED_REF_CLOCK_OUTPUT_TERMINAL\x10\xe5\x98\x46\x12:\n4NIRFSG_ATTRIBUTE_DIGITAL_LEVEL_SCRIPT_TRIGGER_SOURCE\x10\xe6\x98\x46\x12@\n:NIRFSG_ATTRIBUTE_DIGITAL_LEVEL_SCRIPT_TRIGGER_ACTIVE_LEVEL\x10\xe7\x98\x46\x12&\n NIRFSG_ATTRIBUTE_ARB_FILTER_TYPE\x10\xe8\x98\x46\x12:\n4NIRFSG_ATTRIBUTE_ARB_FILTER_ROOT_RAISED_COSINE_ALPHA\x10\xe9\x98\x46\x12=\n7NIRFSG_ATTRIBUTE_UPCONVERTER_CENTER_FREQUENCY_INCREMENT\x10\xea\x98\x46\x12\x44\n>NIRFSG_ATTRIBUTE_UPCONVERTER_CENTER_FREQUENCY_INCREMENT_ANCHOR\x10\xeb\x98\x46\x12\x35\n/NIRFSG_ATTRIBUTE_ARB_FILTER_RAISED_COSINE_ALPHA\x10\xec\x98\x46\x12\"\n\x1cNIRFSG_ATTRIBUTE_MEMORY_SIZE\x10\xed\x98\x46\x12\x35\n/NIRFSG_ATTRIBUTE_ANALOG_MODULATION_PM_DEVIATION\x10\xee\x98\x46\x12:\n4NIRFSG_ATTRIBUTE_EXPORTED_DONE_EVENT_OUTPUT_TERMINAL\x10\xef\x98\x46\x12<\n6NIRFSG_ATTRIBUTE_EXPORTED_MARKER_EVENT_OUTPUT_TERMINAL\x10\xf0\x98\x46\x12=\n7NIRFSG_ATTRIBUTE_EXPORTED_STARTED_EVENT_OUTPUT_TERMINAL\x10\xf1\x98\x46\x12#\n\x1dNIRFSG_ATTRIBUTE_LO_OUT_POWER\x10\xf2\x98\x46\x12\"\n\x1cNIRFSG_ATTRIBUTE_LO_IN_POWER\x10\xf3\x98\x46\x12&\n NIRFSG_ATTRIBUTE_ARB_TEMPERATURE\x10\xf4\x98\x46\x12,\n&NIRFSG_ATTRIBUTE_IQ_IMPAIRMENT_ENABLED\x10\xf5\x98\x46\x12\"\n\x1cNIRFSG_ATTRIBUTE_IQ_I_OFFSET\x10\xf6\x98\x46\x12\"\n\x1cNIRFSG_ATTRIBUTE_IQ_Q_OFFSET\x10\xf7\x98\x46\x12(\n\"NIRFSG_ATTRIBUTE_IQ_GAIN_IMBALANCE\x10\xf8\x98\x46\x12\x1e\n\x18NIRFSG_ATTRIBUTE_IQ_SKEW\x10\xf9\x98\x46\x12%\n\x1fNIRFSG_ATTRIBUTE_LO_TEMPERATURE\x10\xfb\x98\x46\x12@\n:NIRFSG_ATTRIBUTE_EXTERNAL_CALIBRATION_RECOMMENDED_INTERVAL\x10\xfc\x98\x46\x12\x37\n1NIRFSG_ATTRIBUTE_EXTERNAL_CALIBRATION_TEMPERATURE\x10\xfd\x98\x46\x12=\n7NIRFSG_ATTRIBUTE_EXTERNAL_CALIBRATION_USER_DEFINED_INFO\x10\xfe\x98\x46\x12\x46\n@NIRFSG_ATTRIBUTE_EXTERNAL_CALIBRATION_USER_DEFINED_INFO_MAX_SIZE\x10\xff\x98\x46\x12&\n NIRFSG_ATTRIBUTE_IQ_OFFSET_UNITS\x10\x81\x99\x46\x12/\n)NIRFSG_ATTRIBUTE_FREQUENCY_SETTLING_UNITS\x10\x82\x99\x46\x12)\n#NIRFSG_ATTRIBUTE_FREQUENCY_SETTLING\x10\x83\x99\x46\x12&\n NIRFSG_ATTRIBUTE_MODULE_REVISION\x10\x84\x99\x46\x12$\n\x1eNIRFSG_ATTRIBUTE_EXTERNAL_GAIN\x10\x85\x99\x46\x12\x36\n0NIRFSG_ATTRIBUTE_DATA_TRANSFER_MAXIMUM_BANDWIDTH\x10\x86\x99\x46\x12:\n4NIRFSG_ATTRIBUTE_DATA_TRANSFER_PREFERRED_PACKET_SIZE\x10\x87\x99\x46\x12<\n6NIRFSG_ATTRIBUTE_DATA_TRANSFER_MAXIMUM_IN_FLIGHT_READS\x10\x88\x99\x46\x12\x35\n/NIRFSG_ATTRIBUTE_ARB_OSCILLATOR_PHASE_DAC_VALUE\x10\x89\x99\x46\x12\x30\n*NIRFSG_ATTRIBUTE_ACTIVE_CONFIGURATION_LIST\x10\x90\x99\x46\x12\x35\n/NIRFSG_ATTRIBUTE_ACTIVE_CONFIGURATION_LIST_STEP\x10\x91\x99\x46\x12;\n5NIRFSG_ATTRIBUTE_CONFIGURATION_LIST_STEP_TRIGGER_TYPE\x10\x92\x99\x46\x12J\nDNIRFSG_ATTRIBUTE_DIGITAL_EDGE_CONFIGURATION_LIST_STEP_TRIGGER_SOURCE\x10\x93\x99\x46\x12+\n%NIRFSG_ATTRIBUTE_TIMER_EVENT_INTERVAL\x10\x94\x99\x46\x12\x30\n*NIRFSG_ATTRIBUTE_CONFIGURATION_LIST_REPEAT\x10\x96\x99\x46\x12H\nBNIRFSG_ATTRIBUTE_DIGITAL_EDGE_CONFIGURATION_LIST_STEP_TRIGGER_EDGE\x10\x97\x99\x46\x12-\n\'NIRFSG_ATTRIBUTE_CORRECTION_TEMPERATURE\x10\x98\x99\x46\x12O\nINIRFSG_ATTRIBUTE_EXPORTED_CONFIGURATION_LIST_STEP_TRIGGER_OUTPUT_TERMINAL\x10\x99\x99\x46\x12\x32\n,NIRFSG_ATTRIBUTE_STARTED_EVENT_TERMINAL_NAME\x10\xa0\x99\x46\x12/\n)NIRFSG_ATTRIBUTE_DONE_EVENT_TERMINAL_NAME\x10\xa1\x99\x46\x12\x32\n,NIRFSG_ATTRIBUTE_START_TRIGGER_TERMINAL_NAME\x10\xa2\x99\x46\x12\x31\n+NIRFSG_ATTRIBUTE_MARKER_EVENT_TERMINAL_NAME\x10\xa3\x99\x46\x12\x33\n-NIRFSG_ATTRIBUTE_SCRIPT_TRIGGER_TERMINAL_NAME\x10\xa4\x99\x46\x12\x44\n>NIRFSG_ATTRIBUTE_CONFIGURATION_LIST_STEP_TRIGGER_TERMINAL_NAME\x10\xa5\x99\x46\x12*\n$NIRFSG_ATTRIBUTE_YIG_MAIN_COIL_DRIVE\x10\xa6\x99\x46\x12:\n4NIRFSG_ATTRIBUTE_CONFIGURATION_LIST_STEP_IN_PROGRESS\x10\xaa\x99\x46\x12\"\n\x1cNIRFSG_ATTRIBUTE_P2P_ENABLED\x10\xab\x99\x46\x12(\n\"NIRFSG_ATTRIBUTE_P2P_ENDPOINT_SIZE\x10\xac\x99\x46\x12\x36\n0NIRFSG_ATTRIBUTE_P2P_SPACE_AVAILABLE_IN_ENDPOINT\x10\xad\x99\x46\x12;\n5NIRFSG_ATTRIBUTE_P2P_MOST_SPACE_AVAILABLE_IN_ENDPOINT\x10\xae\x99\x46\x12)\n#NIRFSG_ATTRIBUTE_P2P_ENDPOINT_COUNT\x10\xaf\x99\x46\x12@\n:NIRFSG_ATTRIBUTE_P2P_ENDPOINT_FULLNESS_START_TRIGGER_LEVEL\x10\xb0\x99\x46\x12K\nENIRFSG_ATTRIBUTE_EXPORTED_CONFIGURATION_SETTLED_EVENT_OUTPUT_TERMINAL\x10\xb1\x99\x46\x12,\n&NIRFSG_ATTRIBUTE_PEAK_POWER_ADJUSTMENT\x10\xb4\x99\x46\x12(\n\"NIRFSG_ATTRIBUTE_REF_PLL_BANDWIDTH\x10\xb5\x99\x46\x12<\n6NIRFSG_ATTRIBUTE_P2P_DATA_TRANSFER_PERMISSION_INTERVAL\x10\xb6\x99\x46\x12\x43\n=NIRFSG_ATTRIBUTE_P2P_DATA_TRANSFER_PERMISSION_INITIAL_CREDITS\x10\xb7\x99\x46\x12\x33\n-NIRFSG_ATTRIBUTE_SELF_CALIBRATION_TEMPERATURE\x10\xb8\x99\x46\x12)\n#NIRFSG_ATTRIBUTE_AMPLITUDE_SETTLING\x10\xb9\x99\x46\x12.\n(NIRFSG_ATTRIBUTE_STREAMING_WRITE_TIMEOUT\x10\xbc\x99\x46\x12\x38\n2NIRFSG_ATTRIBUTE_PEAK_POWER_ADJUSTMENT_INHERITANCE\x10\xbd\x99\x46\x12\x31\n+NIRFSG_ATTRIBUTE_SYNC_SCRIPT_TRIGGER_MASTER\x10\xbe\x99\x46\x12\x34\n.NIRFSG_ATTRIBUTE_SYNC_SCRIPT_TRIGGER_DIST_LINE\x10\xbf\x99\x46\x12\"\n\x1cNIRFSG_ATTRIBUTE_OUTPUT_PORT\x10\xc0\x99\x46\x12\x34\n.NIRFSG_ATTRIBUTE_IQ_OUT_PORT_CARRIER_FREQUENCY\x10\xc1\x99\x46\x12\x39\n3NIRFSG_ATTRIBUTE_IQ_OUT_PORT_TERMINAL_CONFIGURATION\x10\xc2\x99\x46\x12(\n\"NIRFSG_ATTRIBUTE_IQ_OUT_PORT_LEVEL\x10\xc3\x99\x46\x12\x35\n/NIRFSG_ATTRIBUTE_IQ_OUT_PORT_COMMON_MODE_OFFSET\x10\xc4\x99\x46\x12)\n#NIRFSG_ATTRIBUTE_IQ_OUT_PORT_OFFSET\x10\xc5\x99\x46\x12 \n\x1aNIRFSG_ATTRIBUTE_LO_SOURCE\x10\xc6\x99\x46\x12-\n\'NIRFSG_ATTRIBUTE_LO_FREQUENCY_STEP_SIZE\x10\xc7\x99\x46\x12\x35\n/NIRFSG_ATTRIBUTE_LO_PLL_FRACTIONAL_MODE_ENABLED\x10\xc8\x99\x46\x12*\n$NIRFSG_ATTRIBUTE_INTERPOLATION_DELAY\x10\xc9\x99\x46\x12#\n\x1dNIRFSG_ATTRIBUTE_EVENTS_DELAY\x10\xca\x99\x46\x12\x30\n*NIRFSG_ATTRIBUTE_SYNC_START_TRIGGER_MASTER\x10\xcb\x99\x46\x12\x33\n-NIRFSG_ATTRIBUTE_SYNC_START_TRIGGER_DIST_LINE\x10\xcc\x99\x46\x12:\n4NIRFSG_ATTRIBUTE_ARB_WAVEFORM_REPEAT_COUNT_IS_FINITE\x10\xcd\x99\x46\x12\x30\n*NIRFSG_ATTRIBUTE_ARB_WAVEFORM_REPEAT_COUNT\x10\xce\x99\x46\x12\x33\n-NIRFSG_ATTRIBUTE_UPCONVERTER_FREQUENCY_OFFSET\x10\xd0\x99\x46\x12.\n(NIRFSG_ATTRIBUTE_IQ_OUT_PORT_TEMPERATURE\x10\xd1\x99\x46\x12)\n#NIRFSG_ATTRIBUTE_RF_BLANKING_SOURCE\x10\xd2\x99\x46\x12\x31\n+NIRFSG_ATTRIBUTE_IQ_OUT_PORT_LOAD_IMPEDANCE\x10\xd3\x99\x46\x12\x41\n;NIRFSG_ATTRIBUTE_ANALOG_MODULATION_FM_NARROWBAND_INTEGRATOR\x10\xd5\x99\x46\x12\x37\n1NIRFSG_ATTRIBUTE_ANALOG_MODULATION_FM_SENSITIVITY\x10\xd6\x99\x46\x12\x37\n1NIRFSG_ATTRIBUTE_ANALOG_MODULATION_AM_SENSITIVITY\x10\xd7\x99\x46\x12\x37\n1NIRFSG_ATTRIBUTE_ANALOG_MODULATION_PM_SENSITIVITY\x10\xd8\x99\x46\x12)\n#NIRFSG_ATTRIBUTE_ATTENUATOR_SETTING\x10\xdd\x99\x46\x12\x31\n+NIRFSG_ATTRIBUTE_CONFIGURATION_LIST_IS_DONE\x10\xdf\x99\x46\x12/\n)NIRFSG_ATTRIBUTE_SYNC_SAMPLE_CLOCK_MASTER\x10\xe4\x99\x46\x12\x32\n,NIRFSG_ATTRIBUTE_SYNC_SAMPLE_CLOCK_DIST_LINE\x10\xe5\x99\x46\x12%\n\x1fNIRFSG_ATTRIBUTE_AE_TEMPERATURE\x10\xe6\x99\x46\x12\x1f\n\x19NIRFSG_ATTRIBUTE_AMP_PATH\x10\xe9\x99\x46\x12(\n\"NIRFSG_ATTRIBUTE_FPGA_BITFILE_PATH\x10\xea\x99\x46\x12)\n#NIRFSG_ATTRIBUTE_FAST_TUNING_OPTION\x10\xec\x99\x46\x12,\n&NIRFSG_ATTRIBUTE_PULSE_MODULATION_MODE\x10\xee\x99\x46\x12\x30\n*NIRFSG_ATTRIBUTE_ANALOG_MODULATION_FM_BAND\x10\xef\x99\x46\x12\x30\n*NIRFSG_ATTRIBUTE_ANALOG_MODULATION_PM_MODE\x10\xf0\x99\x46\x12@\n:NIRFSG_ATTRIBUTE_CONFIGURATION_SETTLED_EVENT_TERMINAL_NAME\x10\xf2\x99\x46\x12\"\n\x1cNIRFSG_ATTRIBUTE_ALC_CONTROL\x10\xf3\x99\x46\x12(\n\"NIRFSG_ATTRIBUTE_AUTO_POWER_SEARCH\x10\xf4\x99\x46\x12#\n\x1dNIRFSG_ATTRIBUTE_LO_FREQUENCY\x10\xf7\x99\x46\x12\'\n!NIRFSG_ATTRIBUTE_ARB_DIGITAL_GAIN\x10\xfc\x99\x46\x12\x33\n-NIRFSG_ATTRIBUTE_MARKER_EVENT_OUTPUT_BEHAVIOR\x10\xfe\x99\x46\x12/\n)NIRFSG_ATTRIBUTE_MARKER_EVENT_PULSE_WIDTH\x10\xff\x99\x46\x12\x35\n/NIRFSG_ATTRIBUTE_MARKER_EVENT_PULSE_WIDTH_UNITS\x10\x80\x9a\x46\x12\x38\n2NIRFSG_ATTRIBUTE_MARKER_EVENT_TOGGLE_INITIAL_STATE\x10\x81\x9a\x46\x12/\n)NIRFSG_ATTRIBUTE_MODULE_POWER_CONSUMPTION\x10\x82\x9a\x46\x12\'\n!NIRFSG_ATTRIBUTE_FPGA_TEMPERATURE\x10\x83\x9a\x46\x12\x30\n*NIRFSG_ATTRIBUTE_TEMPERATURE_READ_INTERVAL\x10\x84\x9a\x46\x12/\n)NIRFSG_ATTRIBUTE_P2P_IS_FINITE_GENERATION\x10\x89\x9a\x46\x12\x38\n2NIRFSG_ATTRIBUTE_P2P_NUMBER_OF_SAMPLES_TO_GENERATE\x10\x8a\x9a\x46\x12\x39\n3NIRFSG_ATTRIBUTE_P2P_GENERATION_FIFO_SAMPLE_QUANTUM\x10\x8b\x9a\x46\x12%\n\x1fNIRFSG_ATTRIBUTE_RELATIVE_DELAY\x10\x8c\x9a\x46\x12%\n\x1fNIRFSG_ATTRIBUTE_ABSOLUTE_DELAY\x10\x91\x9a\x46\x12\x35\n/NIRFSG_ATTRIBUTE_DEVICE_INSTANTANEOUS_BANDWIDTH\x10\x92\x9a\x46\x12/\n)NIRFSG_ATTRIBUTE_OVERFLOW_ERROR_REPORTING\x10\x94\x9a\x46\x12+\n%NIRFSG_ATTRIBUTE_HOST_DMA_BUFFER_SIZE\x10\x9f\x9a\x46\x12%\n\x1fNIRFSG_ATTRIBUTE_SELECTED_PORTS\x10\xa1\x9a\x46\x12\x38\n2NIRFSG_ATTRIBUTE_LO_OUT_EXPORT_CONFIGURE_FROM_RFSA\x10\xa2\x9a\x46\x12.\n(NIRFSG_ATTRIBUTE_RF_IN_LO_EXPORT_ENABLED\x10\xa3\x9a\x46\x12@\n:NIRFSG_ATTRIBUTE_THERMAL_CORRECTION_TEMPERATURE_RESOLUTION\x10\xa4\x9a\x46\x12\x38\n2NIRFSG_ATTRIBUTE_UPCONVERTER_FREQUENCY_OFFSET_MODE\x10\xa8\x9a\x46\x12&\n NIRFSG_ATTRIBUTE_AVAILABLE_PORTS\x10\xa9\x9a\x46\x12\'\n!NIRFSG_ATTRIBUTE_FPGA_TARGET_NAME\x10\xab\x9a\x46\x12\'\n!NIRFSG_ATTRIBUTE_DEEMBEDDING_TYPE\x10\xac\x9a\x46\x12\x31\n+NIRFSG_ATTRIBUTE_DEEMBEDDING_SELECTED_TABLE\x10\xad\x9a\x46\x12\x31\n+NIRFSG_ATTRIBUTE_LO_VCO_FREQUENCY_STEP_SIZE\x10\xb1\x9a\x46\x12\x38\n2NIRFSG_ATTRIBUTE_THERMAL_CORRECTION_HEADROOM_RANGE\x10\xb2\x9a\x46\x12\'\n!NIRFSG_ATTRIBUTE_WAVEFORM_IQ_RATE\x10\xb7\x9a\x46\x12\x30\n*NIRFSG_ATTRIBUTE_WAVEFORM_SIGNAL_BANDWIDTH\x10\xb8\x9a\x46\x12/\n)NIRFSG_ATTRIBUTE_WAVEFORM_RUNTIME_SCALING\x10\xb9\x9a\x46\x12$\n\x1eNIRFSG_ATTRIBUTE_WAVEFORM_PAPR\x10\xba\x9a\x46\x12\x35\n/NIRFSG_ATTRIBUTE_FIXED_GROUP_DELAY_ACROSS_PORTS\x10\xbf\x9a\x46\x12(\n\"NIRFSG_ATTRIBUTE_WAVEFORM_FILEPATH\x10\xc0\x9a\x46\x12\x35\n/NIRFSG_ATTRIBUTE_WRITE_WAVEFORM_BURST_DETECTION\x10\xc1\x9a\x46\x12:\n4NIRFSG_ATTRIBUTE_WRITE_WAVEFORM_BURST_DETECTION_MODE\x10\xc2\x9a\x46\x12H\nBNIRFSG_ATTRIBUTE_WRITE_WAVEFORM_BURST_DETECTION_MINIMUM_QUIET_TIME\x10\xc3\x9a\x46\x12\x45\n?NIRFSG_ATTRIBUTE_WRITE_WAVEFORM_BURST_DETECTION_POWER_THRESHOLD\x10\xc4\x9a\x46\x12H\nBNIRFSG_ATTRIBUTE_WRITE_WAVEFORM_BURST_DETECTION_MINIMUM_BURST_TIME\x10\xc5\x9a\x46\x12+\n%NIRFSG_ATTRIBUTE_WAVEFORM_RF_BLANKING\x10\xc6\x9a\x46\x12\x34\n.NIRFSG_ATTRIBUTE_DEEMBEDDING_COMPENSATION_GAIN\x10\xd1\x9a\x46\x12\x41\n;NIRFSG_ATTRIBUTE_LOAD_CONFIGURATIONS_FROM_FILE_LOAD_OPTIONS\x10\xd2\x9a\x46\x12\x42\n\x12!\n\x1cRELATIVE_TO_CURRENT_POSITION\x10\xc1>*\x8c\x02\n\x1bResetWithOptionsStepsToOmit\x12)\n%RESET_WITH_OPTIONS_STEPS_TO_OMIT_NONE\x10\x00\x12.\n*RESET_WITH_OPTIONS_STEPS_TO_OMIT_WAVEFORMS\x10\x01\x12,\n(RESET_WITH_OPTIONS_STEPS_TO_OMIT_SCRIPTS\x10\x02\x12+\n\'RESET_WITH_OPTIONS_STEPS_TO_OMIT_ROUTES\x10\x04\x12\x37\n3RESET_WITH_OPTIONS_STEPS_TO_OMIT_DEEMBEDDING_TABLES\x10\x08*\xaf\x02\n\x0cRoutedSignal\x12\x1f\n\x1bROUTED_SIGNAL_START_TRIGGER\x10\x00\x12\x31\n-ROUTED_SIGNAL_CONFIGURATION_LIST_STEP_TRIGGER\x10\x06\x12-\n)ROUTED_SIGNAL_CONFIGURATION_SETTLED_EVENT\x10\x07\x12\x1c\n\x18ROUTED_SIGNAL_DONE_EVENT\x10\x05\x12\x1e\n\x1aROUTED_SIGNAL_MARKER_EVENT\x10\x02\x12\x1b\n\x17ROUTED_SIGNAL_REF_CLOCK\x10\x03\x12 \n\x1cROUTED_SIGNAL_SCRIPT_TRIGGER\x10\x01\x12\x1f\n\x1bROUTED_SIGNAL_STARTED_EVENT\x10\x04*\xa2\x01\n\x15SParameterOrientation\x12\'\n#S_PARAMETER_ORIENTATION_UNSPECIFIED\x10\x00\x12/\n)S_PARAMETER_ORIENTATION_PORT1_TOWARDS_DUT\x10\xc0\xbb\x01\x12/\n)S_PARAMETER_ORIENTATION_PORT2_TOWARDS_DUT\x10\xc1\xbb\x01*\xf4\x02\n\x1dSelfCalibrateRangeStepsToOmit\x12\x30\n,SELF_CALIBRATE_RANGE_STEPS_TO_OMIT_OMIT_NONE\x10\x00\x12\x32\n.SELF_CALIBRATE_RANGE_STEPS_TO_OMIT_LO_SELF_CAL\x10\x01\x12;\n7SELF_CALIBRATE_RANGE_STEPS_TO_OMIT_POWER_LEVEL_ACCURACY\x10\x02\x12\x38\n4SELF_CALIBRATE_RANGE_STEPS_TO_OMIT_RESIDUAL_LO_POWER\x10\x04\x12\x38\n4SELF_CALIBRATE_RANGE_STEPS_TO_OMIT_IMAGE_SUPPRESSION\x10\x08\x12<\n8SELF_CALIBRATE_RANGE_STEPS_TO_OMIT_SYNTHESIZER_ALIGNMENT\x10\x10*\xe9\x02\n\x10SignalIdentifier\x12!\n\x1dSIGNAL_IDENTIFIER_UNSPECIFIED\x10\x00\x12\x1a\n\x16SIGNAL_IDENTIFIER_NONE\x10\x01\x12%\n!SIGNAL_IDENTIFIER_SCRIPT_TRIGGER0\x10\x02\x12%\n!SIGNAL_IDENTIFIER_SCRIPT_TRIGGER1\x10\x03\x12%\n!SIGNAL_IDENTIFIER_SCRIPT_TRIGGER2\x10\x04\x12%\n!SIGNAL_IDENTIFIER_SCRIPT_TRIGGER3\x10\x05\x12\x1d\n\x19SIGNAL_IDENTIFIER_MARKER0\x10\x06\x12\x1d\n\x19SIGNAL_IDENTIFIER_MARKER1\x10\x07\x12\x1d\n\x19SIGNAL_IDENTIFIER_MARKER2\x10\x08\x12\x1d\n\x19SIGNAL_IDENTIFIER_MARKER3\x10\t*\x90\x06\n\rTriggerSource\x12\x1e\n\x1aTRIGGER_SOURCE_UNSPECIFIED\x10\x00\x12\x17\n\x13TRIGGER_SOURCE_PFI0\x10\x01\x12\x17\n\x13TRIGGER_SOURCE_PFI1\x10\x02\x12\x17\n\x13TRIGGER_SOURCE_PFI2\x10\x03\x12\x17\n\x13TRIGGER_SOURCE_PFI3\x10\x04\x12\x1c\n\x18TRIGGER_SOURCE_PXI_TRIG0\x10\x05\x12\x1c\n\x18TRIGGER_SOURCE_PXI_TRIG1\x10\x06\x12\x1c\n\x18TRIGGER_SOURCE_PXI_TRIG2\x10\x07\x12\x1c\n\x18TRIGGER_SOURCE_PXI_TRIG3\x10\x08\x12\x1c\n\x18TRIGGER_SOURCE_PXI_TRIG4\x10\t\x12\x1c\n\x18TRIGGER_SOURCE_PXI_TRIG5\x10\n\x12\x1c\n\x18TRIGGER_SOURCE_PXI_TRIG6\x10\x0b\x12\x1c\n\x18TRIGGER_SOURCE_PXI_TRIG7\x10\x0c\x12\x1b\n\x17TRIGGER_SOURCE_PXI_STAR\x10\r\x12\x1e\n\x1aTRIGGER_SOURCE_PXIE_DSTARB\x10\x0e\x12%\n!TRIGGER_SOURCE_SYNC_START_TRIGGER\x10\x0f\x12&\n\"TRIGGER_SOURCE_SYNC_SCRIPT_TRIGGER\x10\x10\x12\x1a\n\x16TRIGGER_SOURCE_TRIG_IN\x10\x11\x12\x1b\n\x17TRIGGER_SOURCE_PULSE_IN\x10\x12\x12\x17\n\x13TRIGGER_SOURCE_DIO0\x10\x13\x12\x17\n\x13TRIGGER_SOURCE_DIO1\x10\x14\x12\x17\n\x13TRIGGER_SOURCE_DIO2\x10\x15\x12\x17\n\x13TRIGGER_SOURCE_DIO3\x10\x16\x12\x17\n\x13TRIGGER_SOURCE_DIO4\x10\x17\x12\x17\n\x13TRIGGER_SOURCE_DIO5\x10\x18\x12\x17\n\x13TRIGGER_SOURCE_DIO6\x10\x19\x12\x17\n\x13TRIGGER_SOURCE_DIO7\x10\x1a*\x85)\n\x1aNiRFSGInt32AttributeValues\x12\x1c\n\x18NIRFSG_INT32_UNSPECIFIED\x10\x00\x12%\n NIRFSG_INT32_AMP_PATH_HIGH_POWER\x10\x80}\x12\'\n\"NIRFSG_INT32_AMP_PATH_LOW_HARMONIC\x10\x81}\x12\x37\n1NIRFSG_INT32_ANALOG_MODULATION_FM_BAND_NARROWBAND\x10\xe8\x84\x01\x12\x35\n/NIRFSG_INT32_ANALOG_MODULATION_FM_BAND_WIDEBAND\x10\xe9\x84\x01\x12M\nGNIRFSG_INT32_ANALOG_MODULATION_FM_NARROWBAND_INTEGRATOR_100_HZ_TO_1_KHZ\x10\xd0\x8c\x01\x12M\nGNIRFSG_INT32_ANALOG_MODULATION_FM_NARROWBAND_INTEGRATOR_1_KHZ_TO_10_KHZ\x10\xd1\x8c\x01\x12O\nINIRFSG_INT32_ANALOG_MODULATION_FM_NARROWBAND_INTEGRATOR_10_KHZ_TO_100_KHZ\x10\xd2\x8c\x01\x12;\n5NIRFSG_INT32_ANALOG_MODULATION_PM_MODE_HIGH_DEVIATION\x10\xb8\x94\x01\x12<\n6NIRFSG_INT32_ANALOG_MODULATION_PM_MODE_LOW_PHASE_NOISE\x10\xb9\x94\x01\x12,\n(NIRFSG_INT32_ANALOG_MODULATION_TYPE_NONE\x10\x00\x12+\n&NIRFSG_INT32_ANALOG_MODULATION_TYPE_FM\x10\xd0\x0f\x12+\n&NIRFSG_INT32_ANALOG_MODULATION_TYPE_PM\x10\xd1\x0f\x12+\n&NIRFSG_INT32_ANALOG_MODULATION_TYPE_AM\x10\xd2\x0f\x12\x36\n1NIRFSG_INT32_ANALOG_MODULATION_WAVEFORM_TYPE_SINE\x10\xb8\x17\x12\x38\n3NIRFSG_INT32_ANALOG_MODULATION_WAVEFORM_TYPE_SQUARE\x10\xb9\x17\x12:\n5NIRFSG_INT32_ANALOG_MODULATION_WAVEFORM_TYPE_TRIANGLE\x10\xba\x17\x12&\n!NIRFSG_INT32_ARB_FILTER_TYPE_NONE\x10\x90N\x12\x34\n/NIRFSG_INT32_ARB_FILTER_TYPE_ROOT_RAISED_COSINE\x10\x91N\x12/\n*NIRFSG_INT32_ARB_FILTER_TYPE_RAISED_COSINE\x10\x92N\x12?\n:NIRFSG_INT32_ARB_ONBOARD_SAMPLE_CLOCK_MODE_HIGH_RESOLUTION\x10\xf0.\x12;\n6NIRFSG_INT32_ARB_ONBOARD_SAMPLE_CLOCK_MODE_DIVIDE_DOWN\x10\xf1.\x12>\n:NIRFSG_INT32_CONFIG_LIST_TRIGGER_DIG_EDGE_EDGE_RISING_EDGE\x10\x00\x12O\nKNIRFSG_INT32_CONFIGURATION_LIST_REPEAT_CONFIGURATION_LIST_REPEAT_CONTINUOUS\x10\x00\x12K\nGNIRFSG_INT32_CONFIGURATION_LIST_REPEAT_CONFIGURATION_LIST_REPEAT_SINGLE\x10\x01\x12(\n\"NIRFSG_INT32_DEEMBEDDING_TYPE_NONE\x10\xa8\xc3\x01\x12*\n$NIRFSG_INT32_DEEMBEDDING_TYPE_SCALAR\x10\xa9\xc3\x01\x12*\n$NIRFSG_INT32_DEEMBEDDING_TYPE_VECTOR\x10\xaa\xc3\x01\x12.\n*NIRFSG_INT32_DIGITAL_EDGE_EDGE_RISING_EDGE\x10\x00\x12/\n+NIRFSG_INT32_DIGITAL_EDGE_EDGE_FALLING_EDGE\x10\x01\x12\x38\n3NIRFSG_INT32_DIGITAL_LEVEL_ACTIVE_LEVEL_ACTIVE_HIGH\x10\xa8\x46\x12\x37\n2NIRFSG_INT32_DIGITAL_LEVEL_ACTIVE_LEVEL_ACTIVE_LOW\x10\xa9\x46\x12-\n)NIRFSG_INT32_DIGITAL_MODULATION_TYPE_NONE\x10\x00\x12-\n(NIRFSG_INT32_DIGITAL_MODULATION_TYPE_FSK\x10\xa0\x1f\x12-\n(NIRFSG_INT32_DIGITAL_MODULATION_TYPE_OOK\x10\xa1\x1f\x12-\n(NIRFSG_INT32_DIGITAL_MODULATION_TYPE_PSK\x10\xa2\x1f\x12\x37\n2NIRFSG_INT32_DIGITAL_MODULATION_WAVEFORM_TYPE_PRBS\x10\x88\'\x12?\n:NIRFSG_INT32_DIGITAL_MODULATION_WAVEFORM_TYPE_USER_DEFINED\x10\x89\'\x12&\n\"NIRFSG_INT32_ENABLE_VALUES_DISABLE\x10\x00\x12%\n!NIRFSG_INT32_ENABLE_VALUES_ENABLE\x10\x01\x12:\n5NIRFSG_INT32_FREQUENCY_SETTLING_UNITS_TIME_AFTER_LOCK\x10\xe0]\x12\x38\n3NIRFSG_INT32_FREQUENCY_SETTLING_UNITS_TIME_AFTER_IO\x10\xe1]\x12.\n)NIRFSG_INT32_FREQUENCY_SETTLING_UNITS_PPM\x10\xe2]\x12$\n\x1fNIRFSG_INT32_GENERATION_MODE_CW\x10\xe8\x07\x12.\n)NIRFSG_INT32_GENERATION_MODE_ARB_WAVEFORM\x10\xe9\x07\x12(\n#NIRFSG_INT32_GENERATION_MODE_SCRIPT\x10\xea\x07\x12)\n$NIRFSG_INT32_IQ_OFFSET_UNITS_PERCENT\x10\xf8U\x12\'\n\"NIRFSG_INT32_IQ_OFFSET_UNITS_VOLTS\x10\xf9U\x12\x36\n1NIRFSG_INT32_IQ_OUT_PORT_TERM_CONFIG_DIFFERENTIAL\x10\x98u\x12\x36\n1NIRFSG_INT32_IQ_OUT_PORT_TERM_CONFIG_SINGLE_ENDED\x10\x99u\x12,\n(NIRFSG_INT32_LIST_STEP_TRIGGER_TYPE_NONE\x10\x00\x12\x34\n0NIRFSG_INT32_LIST_STEP_TRIGGER_TYPE_DIGITAL_EDGE\x10\x01\x12\'\n#NIRFSG_INT32_LOAD_OPTIONS_SKIP_NONE\x10\x00\x12,\n(NIRFSG_INT32_LOAD_OPTIONS_SKIP_WAVEFORMS\x10\x01\x12&\n\"NIRFSG_INT32_LOOP_BANDWIDTH_NARROW\x10\x00\x12&\n\"NIRFSG_INT32_LOOP_BANDWIDTH_MEDIUM\x10\x01\x12$\n NIRFSG_INT32_LOOP_BANDWIDTH_WIDE\x10\x02\x12\x35\n/NIRFSG_INT32_MARKER_EVENT_OUTPUT_BEHAVIOR_PULSE\x10\xd8\xb3\x01\x12\x36\n0NIRFSG_INT32_MARKER_EVENT_OUTPUT_BEHAVIOR_TOGGLE\x10\xd9\xb3\x01\x12\x39\n3NIRFSG_INT32_MARKER_EVENT_PULSE_WIDTH_UNITS_SECONDS\x10\xf0\xab\x01\x12\x46\n@NIRFSG_INT32_MARKER_EVENT_PULSE_WIDTH_UNITS_SAMPLE_CLOCK_PERIODS\x10\xf1\xab\x01\x12@\n:NIRFSG_INT32_MARKER_EVENT_TOGGLE_INITIAL_STATE_DIGITAL_LOW\x10\x88\xa4\x01\x12\x41\n;NIRFSG_INT32_MARKER_EVENT_TOGGLE_INITIAL_STATE_DIGITAL_HIGH\x10\x89\xa4\x01\x12$\n\x1fNIRFSG_INT32_OUTPUT_PORT_RF_OUT\x10\xb0m\x12$\n\x1fNIRFSG_INT32_OUTPUT_PORT_IQ_OUT\x10\xb1m\x12%\n NIRFSG_INT32_OUTPUT_PORT_CAL_OUT\x10\xb2m\x12$\n\x1fNIRFSG_INT32_OUTPUT_PORT_I_ONLY\x10\xb3m\x12\x32\n-NIRFSG_INT32_OVERFLOW_ERROR_REPORTING_WARNING\x10\x95\n\x12\x33\n.NIRFSG_INT32_OVERFLOW_ERROR_REPORTING_DISABLED\x10\x96\n\x12\x33\n/NIRFSG_INT32_PPA_SCRIPT_INHERITANCE_EXACT_MATCH\x10\x00\x12/\n+NIRFSG_INT32_PPA_SCRIPT_INHERITANCE_MINIMUM\x10\x01\x12/\n+NIRFSG_INT32_PPA_SCRIPT_INHERITANCE_MAXIMUM\x10\x02\x12)\n%NIRFSG_INT32_PHASE_CONTINUITY_DISABLE\x10\x00\x12/\n\"NIRFSG_INT32_PHASE_CONTINUITY_AUTO\x10\xff\xff\xff\xff\xff\xff\xff\xff\xff\x01\x12(\n$NIRFSG_INT32_PHASE_CONTINUITY_ENABLE\x10\x01\x12\x30\n+NIRFSG_INT32_POWER_LEVEL_TYPE_AVERAGE_POWER\x10\xd8\x36\x12-\n(NIRFSG_INT32_POWER_LEVEL_TYPE_PEAK_POWER\x10\xd9\x36\x12\x36\n0NIRFSG_INT32_PULSE_MODULATION_MODE_OPTIMAL_MATCH\x10\xa0\x9c\x01\x12\x37\n1NIRFSG_INT32_PULSE_MODULATION_MODE_HIGH_ISOLATION\x10\xa1\x9c\x01\x12(\n$NIRFSG_INT32_RESET_OPTIONS_SKIP_NONE\x10\x00\x12-\n)NIRFSG_INT32_RESET_OPTIONS_SKIP_WAVEFORMS\x10\x01\x12+\n\'NIRFSG_INT32_RESET_OPTIONS_SKIP_SCRIPTS\x10\x02\x12\x35\n1NIRFSG_INT32_RESET_OPTIONS_SKIP_DEEMBEDING_TABLES\x10\x08\x12\x30\n,NIRFSG_INT32_RF_IN_LO_EXPORT_ENABLED_DISABLE\x10\x00\x12=\n0NIRFSG_INT32_RF_IN_LO_EXPORT_ENABLED_UNSPECIFIED\x10\xfe\xff\xff\xff\xff\xff\xff\xff\xff\x01\x12/\n+NIRFSG_INT32_RF_IN_LO_EXPORT_ENABLED_ENABLE\x10\x01\x12)\n%NIRFSG_INT32_SCRIPT_TRIGGER_TYPE_NONE\x10\x00\x12\x31\n-NIRFSG_INT32_SCRIPT_TRIGGER_TYPE_DIGITAL_EDGE\x10\x01\x12\x33\n.NIRFSG_INT32_SCRIPT_TRIGGER_TYPE_DIGITAL_LEVEL\x10\xc0>\x12-\n)NIRFSG_INT32_SCRIPT_TRIGGER_TYPE_SOFTWARE\x10\x02\x12(\n$NIRFSG_INT32_START_TRIGGER_TYPE_NONE\x10\x00\x12\x30\n,NIRFSG_INT32_START_TRIGGER_TYPE_DIGITAL_EDGE\x10\x01\x12,\n(NIRFSG_INT32_START_TRIGGER_TYPE_SOFTWARE\x10\x02\x12:\n6NIRFSG_INT32_START_TRIGGER_TYPE_P2_P_ENDPOINT_FULLNESS\x10\x03\x12@\n3NIRFSG_INT32_UPCONVERTER_FREQUENCY_OFFSET_MODE_AUTO\x10\xff\xff\xff\xff\xff\xff\xff\xff\xff\x01\x12\x39\n5NIRFSG_INT32_UPCONVERTER_FREQUENCY_OFFSET_MODE_ENABLE\x10\x01\x12@\n;NIRFSG_INT32_UPCONVERTER_FREQUENCY_OFFSET_MODE_USER_DEFINED\x10\x89\'\x12;\n7NIRFSG_INT32_WRITE_WAVEFORM_BURST_DETECTION_MODE_MANUAL\x10\x00\x12\x42\n5NIRFSG_INT32_WRITE_WAVEFORM_BURST_DETECTION_MODE_AUTO\x10\xff\xff\xff\xff\xff\xff\xff\xff\xff\x01\x12#\n\x1fNIRFSG_INT32_YIG_MAIN_COIL_SLOW\x10\x00\x12#\n\x1fNIRFSG_INT32_YIG_MAIN_COIL_FAST\x10\x01\x1a\x02\x10\x01*\x98\x01\n\x1bNiRFSGReal64AttributeValues\x12\x1d\n\x19NIRFSG_REAL64_UNSPECIFIED\x10\x00\x12*\n#NIRFSG_REAL64_REF_CLOCK_RATE_10_MHZ\x10\x80\xad\xe2\x04\x12.\n!NIRFSG_REAL64_REF_CLOCK_RATE_AUTO\x10\xff\xff\xff\xff\xff\xff\xff\xff\xff\x01*\xd0\x30\n!NiRFSGStringAttributeValuesMapped\x12$\n NIRFSG_STRING_MAPPED_UNSPECIFIED\x10\x00\x12\x36\n2NIRFSG_STRING_ANY_SIGNAL_OUTPUT_TERM_DO_NOT_EXPORT\x10\x01\x12-\n)NIRFSG_STRING_ANY_SIGNAL_OUTPUT_TERM_PFI0\x10\x02\x12-\n)NIRFSG_STRING_ANY_SIGNAL_OUTPUT_TERM_PFI1\x10\x03\x12-\n)NIRFSG_STRING_ANY_SIGNAL_OUTPUT_TERM_PFI4\x10\x04\x12-\n)NIRFSG_STRING_ANY_SIGNAL_OUTPUT_TERM_PFI5\x10\x05\x12\x32\n.NIRFSG_STRING_ANY_SIGNAL_OUTPUT_TERM_PXI_TRIG0\x10\x06\x12\x32\n.NIRFSG_STRING_ANY_SIGNAL_OUTPUT_TERM_PXI_TRIG1\x10\x07\x12\x32\n.NIRFSG_STRING_ANY_SIGNAL_OUTPUT_TERM_PXI_TRIG2\x10\x08\x12\x32\n.NIRFSG_STRING_ANY_SIGNAL_OUTPUT_TERM_PXI_TRIG3\x10\t\x12\x32\n.NIRFSG_STRING_ANY_SIGNAL_OUTPUT_TERM_PXI_TRIG4\x10\n\x12\x32\n.NIRFSG_STRING_ANY_SIGNAL_OUTPUT_TERM_PXI_TRIG5\x10\x0b\x12\x32\n.NIRFSG_STRING_ANY_SIGNAL_OUTPUT_TERM_PXI_TRIG6\x10\x0c\x12\x34\n0NIRFSG_STRING_ANY_SIGNAL_OUTPUT_TERM_PXIE_DSTARC\x10\r\x12\x31\n-NIRFSG_STRING_ANY_SIGNAL_OUTPUT_TERM_TRIG_OUT\x10\x0e\x12\x37\n3NIRFSG_STRING_ARB_SAMPLE_CLOCK_SOURCE_ONBOARD_CLOCK\x10\x0f\x12\x30\n,NIRFSG_STRING_ARB_SAMPLE_CLOCK_SOURCE_CLK_IN\x10\x10\x12<\n8NIRFSG_STRING_CONFIG_LIST_TRIG_OUTPUT_TERM_DO_NOT_EXPORT\x10\x11\x12\x33\n/NIRFSG_STRING_CONFIG_LIST_TRIG_OUTPUT_TERM_PFI0\x10\x12\x12\x33\n/NIRFSG_STRING_CONFIG_LIST_TRIG_OUTPUT_TERM_PFI1\x10\x13\x12\x38\n4NIRFSG_STRING_CONFIG_LIST_TRIG_OUTPUT_TERM_PXI_TRIG0\x10\x14\x12\x38\n4NIRFSG_STRING_CONFIG_LIST_TRIG_OUTPUT_TERM_PXI_TRIG1\x10\x15\x12\x38\n4NIRFSG_STRING_CONFIG_LIST_TRIG_OUTPUT_TERM_PXI_TRIG2\x10\x16\x12\x38\n4NIRFSG_STRING_CONFIG_LIST_TRIG_OUTPUT_TERM_PXI_TRIG3\x10\x17\x12\x38\n4NIRFSG_STRING_CONFIG_LIST_TRIG_OUTPUT_TERM_PXI_TRIG4\x10\x18\x12\x38\n4NIRFSG_STRING_CONFIG_LIST_TRIG_OUTPUT_TERM_PXI_TRIG5\x10\x19\x12\x38\n4NIRFSG_STRING_CONFIG_LIST_TRIG_OUTPUT_TERM_PXI_TRIG6\x10\x1a\x12:\n6NIRFSG_STRING_CONFIG_LIST_TRIG_OUTPUT_TERM_PXIE_DSTARC\x10\x1b\x12\x37\n3NIRFSG_STRING_CONFIG_LIST_TRIG_OUTPUT_TERM_TRIG_OUT\x10\x1c\x12.\n*NIRFSG_STRING_CONFIG_LIST_TRIG_SOURCE_PFI0\x10\x1d\x12.\n*NIRFSG_STRING_CONFIG_LIST_TRIG_SOURCE_PFI1\x10\x1e\x12\x33\n/NIRFSG_STRING_CONFIG_LIST_TRIG_SOURCE_PXI_TRIG0\x10\x1f\x12\x33\n/NIRFSG_STRING_CONFIG_LIST_TRIG_SOURCE_PXI_TRIG1\x10 \x12\x33\n/NIRFSG_STRING_CONFIG_LIST_TRIG_SOURCE_PXI_TRIG2\x10!\x12\x33\n/NIRFSG_STRING_CONFIG_LIST_TRIG_SOURCE_PXI_TRIG3\x10\"\x12\x33\n/NIRFSG_STRING_CONFIG_LIST_TRIG_SOURCE_PXI_TRIG4\x10#\x12\x33\n/NIRFSG_STRING_CONFIG_LIST_TRIG_SOURCE_PXI_TRIG5\x10$\x12\x33\n/NIRFSG_STRING_CONFIG_LIST_TRIG_SOURCE_PXI_TRIG6\x10%\x12\x33\n/NIRFSG_STRING_CONFIG_LIST_TRIG_SOURCE_PXI_TRIG7\x10&\x12\x35\n1NIRFSG_STRING_CONFIG_LIST_TRIG_SOURCE_PXIE_DSTARB\x10\'\x12\x37\n3NIRFSG_STRING_CONFIG_LIST_TRIG_SOURCE_MARKER0_EVENT\x10(\x12\x37\n3NIRFSG_STRING_CONFIG_LIST_TRIG_SOURCE_MARKER1_EVENT\x10)\x12\x37\n3NIRFSG_STRING_CONFIG_LIST_TRIG_SOURCE_MARKER2_EVENT\x10*\x12\x37\n3NIRFSG_STRING_CONFIG_LIST_TRIG_SOURCE_MARKER3_EVENT\x10+\x12\x35\n1NIRFSG_STRING_CONFIG_LIST_TRIG_SOURCE_TIMER_EVENT\x10,\x12\x31\n-NIRFSG_STRING_CONFIG_LIST_TRIG_SOURCE_TRIG_IN\x10-\x12@\n\n:NIRFSG_STRING_CONFIG_SETTLED_EVENT_OUTPUT_TERM_PXIE_DSTARC\x10\x36\x12;\n7NIRFSG_STRING_CONFIG_SETTLED_EVENT_OUTPUT_TERM_TRIG_OUT\x10\x37\x12#\n\x1fNIRFSG_STRING_LO_SOURCE_ONBOARD\x10\x38\x12!\n\x1dNIRFSG_STRING_LO_SOURCE_LO_IN\x10\x39\x12%\n!NIRFSG_STRING_LO_SOURCE_SECONDARY\x10:\x12(\n$NIRFSG_STRING_LO_SOURCE_SG_SA_SHARED\x10;\x12\x32\n.NIRFSG_STRING_LO_SOURCE_AUTOMATIC_SG_SA_SHARED\x10<\x12(\n$NIRFSG_STRING_PXI_CHASSIS_CLK10_NONE\x10=\x12\x31\n-NIRFSG_STRING_PXI_CHASSIS_CLK10_ONBOARD_CLOCK\x10>\x12*\n&NIRFSG_STRING_PXI_CHASSIS_CLK10_REF_IN\x10?\x12\x35\n1NIRFSG_STRING_REF_CLOCK_OUTPUT_TERM_DO_NOT_EXPORT\x10@\x12/\n+NIRFSG_STRING_REF_CLOCK_OUTPUT_TERM_REF_OUT\x10\x41\x12\x30\n,NIRFSG_STRING_REF_CLOCK_OUTPUT_TERM_REF_OUT2\x10\x42\x12/\n+NIRFSG_STRING_REF_CLOCK_OUTPUT_TERM_CLK_OUT\x10\x43\x12\x30\n,NIRFSG_STRING_REF_CLOCK_SOURCE_ONBOARD_CLOCK\x10\x44\x12)\n%NIRFSG_STRING_REF_CLOCK_SOURCE_REF_IN\x10\x45\x12*\n&NIRFSG_STRING_REF_CLOCK_SOURCE_PXI_CLK\x10\x46\x12)\n%NIRFSG_STRING_REF_CLOCK_SOURCE_CLK_IN\x10G\x12+\n\'NIRFSG_STRING_REF_CLOCK_SOURCE_REF_IN_2\x10H\x12\x31\n-NIRFSG_STRING_REF_CLOCK_SOURCE_PXI_CLK_MASTER\x10I\x12%\n!NIRFSG_STRING_TRIGGER_SOURCE_PFI0\x10J\x12%\n!NIRFSG_STRING_TRIGGER_SOURCE_PFI1\x10K\x12%\n!NIRFSG_STRING_TRIGGER_SOURCE_PFI2\x10L\x12%\n!NIRFSG_STRING_TRIGGER_SOURCE_PFI3\x10M\x12*\n&NIRFSG_STRING_TRIGGER_SOURCE_PXI_TRIG0\x10N\x12*\n&NIRFSG_STRING_TRIGGER_SOURCE_PXI_TRIG1\x10O\x12*\n&NIRFSG_STRING_TRIGGER_SOURCE_PXI_TRIG2\x10P\x12*\n&NIRFSG_STRING_TRIGGER_SOURCE_PXI_TRIG3\x10Q\x12*\n&NIRFSG_STRING_TRIGGER_SOURCE_PXI_TRIG4\x10R\x12*\n&NIRFSG_STRING_TRIGGER_SOURCE_PXI_TRIG5\x10S\x12*\n&NIRFSG_STRING_TRIGGER_SOURCE_PXI_TRIG6\x10T\x12*\n&NIRFSG_STRING_TRIGGER_SOURCE_PXI_TRIG7\x10U\x12)\n%NIRFSG_STRING_TRIGGER_SOURCE_PXI_STAR\x10V\x12,\n(NIRFSG_STRING_TRIGGER_SOURCE_PXIE_DSTARB\x10W\x12\x33\n/NIRFSG_STRING_TRIGGER_SOURCE_SYNC_START_TRIGGER\x10X\x12\x34\n0NIRFSG_STRING_TRIGGER_SOURCE_SYNC_SCRIPT_TRIGGER\x10Y\x12(\n$NIRFSG_STRING_TRIGGER_SOURCE_TRIG_IN\x10Z\x12-\n)NIRFSG_STRING_ANY_SIGNAL_OUTPUT_TERM_DIO0\x10[\x12-\n)NIRFSG_STRING_ANY_SIGNAL_OUTPUT_TERM_DIO1\x10\\\x12-\n)NIRFSG_STRING_ANY_SIGNAL_OUTPUT_TERM_DIO2\x10]\x12-\n)NIRFSG_STRING_ANY_SIGNAL_OUTPUT_TERM_DIO3\x10^\x12-\n)NIRFSG_STRING_ANY_SIGNAL_OUTPUT_TERM_DIO4\x10_\x12-\n)NIRFSG_STRING_ANY_SIGNAL_OUTPUT_TERM_DIO5\x10`\x12-\n)NIRFSG_STRING_ANY_SIGNAL_OUTPUT_TERM_DIO6\x10\x61\x12-\n)NIRFSG_STRING_ANY_SIGNAL_OUTPUT_TERM_DIO7\x10\x62\x12\x33\n/NIRFSG_STRING_CONFIG_LIST_TRIG_OUTPUT_TERM_DIO0\x10\x63\x12\x33\n/NIRFSG_STRING_CONFIG_LIST_TRIG_OUTPUT_TERM_DIO1\x10\x64\x12\x33\n/NIRFSG_STRING_CONFIG_LIST_TRIG_OUTPUT_TERM_DIO2\x10\x65\x12\x33\n/NIRFSG_STRING_CONFIG_LIST_TRIG_OUTPUT_TERM_DIO3\x10\x66\x12\x33\n/NIRFSG_STRING_CONFIG_LIST_TRIG_OUTPUT_TERM_DIO4\x10g\x12\x33\n/NIRFSG_STRING_CONFIG_LIST_TRIG_OUTPUT_TERM_DIO5\x10h\x12\x33\n/NIRFSG_STRING_CONFIG_LIST_TRIG_OUTPUT_TERM_DIO6\x10i\x12\x33\n/NIRFSG_STRING_CONFIG_LIST_TRIG_OUTPUT_TERM_DIO7\x10j\x12.\n*NIRFSG_STRING_CONFIG_LIST_TRIG_SOURCE_DIO0\x10k\x12.\n*NIRFSG_STRING_CONFIG_LIST_TRIG_SOURCE_DIO1\x10l\x12.\n*NIRFSG_STRING_CONFIG_LIST_TRIG_SOURCE_DIO2\x10m\x12.\n*NIRFSG_STRING_CONFIG_LIST_TRIG_SOURCE_DIO3\x10n\x12.\n*NIRFSG_STRING_CONFIG_LIST_TRIG_SOURCE_DIO4\x10o\x12.\n*NIRFSG_STRING_CONFIG_LIST_TRIG_SOURCE_DIO5\x10p\x12.\n*NIRFSG_STRING_CONFIG_LIST_TRIG_SOURCE_DIO6\x10q\x12.\n*NIRFSG_STRING_CONFIG_LIST_TRIG_SOURCE_DIO7\x10r\x12)\n%NIRFSG_STRING_TRIGGER_SOURCE_PULSE_IN\x10s\x12%\n!NIRFSG_STRING_TRIGGER_SOURCE_DIO0\x10t\x12%\n!NIRFSG_STRING_TRIGGER_SOURCE_DIO1\x10u\x12%\n!NIRFSG_STRING_TRIGGER_SOURCE_DIO2\x10v\x12%\n!NIRFSG_STRING_TRIGGER_SOURCE_DIO3\x10w\x12%\n!NIRFSG_STRING_TRIGGER_SOURCE_DIO4\x10x\x12%\n!NIRFSG_STRING_TRIGGER_SOURCE_DIO5\x10y\x12%\n!NIRFSG_STRING_TRIGGER_SOURCE_DIO6\x10z\x12%\n!NIRFSG_STRING_TRIGGER_SOURCE_DIO7\x10{2\xaf\x65\n\x06NiRFSG\x12>\n\x05\x41\x62ort\x12\x19.nirfsg_grpc.AbortRequest\x1a\x1a.nirfsg_grpc.AbortResponse\x12h\n\x13\x41llocateArbWaveform\x12\'.nirfsg_grpc.AllocateArbWaveformRequest\x1a(.nirfsg_grpc.AllocateArbWaveformResponse\x12t\n\x17\x43heckAttributeViBoolean\x12+.nirfsg_grpc.CheckAttributeViBooleanRequest\x1a,.nirfsg_grpc.CheckAttributeViBooleanResponse\x12n\n\x15\x43heckAttributeViInt32\x12).nirfsg_grpc.CheckAttributeViInt32Request\x1a*.nirfsg_grpc.CheckAttributeViInt32Response\x12n\n\x15\x43heckAttributeViInt64\x12).nirfsg_grpc.CheckAttributeViInt64Request\x1a*.nirfsg_grpc.CheckAttributeViInt64Response\x12q\n\x16\x43heckAttributeViReal64\x12*.nirfsg_grpc.CheckAttributeViReal64Request\x1a+.nirfsg_grpc.CheckAttributeViReal64Response\x12t\n\x17\x43heckAttributeViSession\x12+.nirfsg_grpc.CheckAttributeViSessionRequest\x1a,.nirfsg_grpc.CheckAttributeViSessionResponse\x12q\n\x16\x43heckAttributeViString\x12*.nirfsg_grpc.CheckAttributeViStringRequest\x1a+.nirfsg_grpc.CheckAttributeViStringResponse\x12n\n\x15\x43heckGenerationStatus\x12).nirfsg_grpc.CheckGenerationStatusRequest\x1a*.nirfsg_grpc.CheckGenerationStatusResponse\x12\x89\x01\n\x1e\x43heckIfConfigurationListExists\x12\x32.nirfsg_grpc.CheckIfConfigurationListExistsRequest\x1a\x33.nirfsg_grpc.CheckIfConfigurationListExistsResponse\x12h\n\x13\x43heckIfScriptExists\x12\'.nirfsg_grpc.CheckIfScriptExistsRequest\x1a(.nirfsg_grpc.CheckIfScriptExistsResponse\x12n\n\x15\x43heckIfWaveformExists\x12).nirfsg_grpc.CheckIfWaveformExistsRequest\x1a*.nirfsg_grpc.CheckIfWaveformExistsResponse\x12k\n\x14\x43learAllArbWaveforms\x12(.nirfsg_grpc.ClearAllArbWaveformsRequest\x1a).nirfsg_grpc.ClearAllArbWaveformsResponse\x12_\n\x10\x43learArbWaveform\x12$.nirfsg_grpc.ClearArbWaveformRequest\x1a%.nirfsg_grpc.ClearArbWaveformResponse\x12M\n\nClearError\x12\x1e.nirfsg_grpc.ClearErrorRequest\x1a\x1f.nirfsg_grpc.ClearErrorResponse\x12t\n\x17\x43learSelfCalibrateRange\x12+.nirfsg_grpc.ClearSelfCalibrateRangeRequest\x1a,.nirfsg_grpc.ClearSelfCalibrateRangeResponse\x12>\n\x05\x43lose\x12\x19.nirfsg_grpc.CloseRequest\x1a\x1a.nirfsg_grpc.CloseResponse\x12\x41\n\x06\x43ommit\x12\x1a.nirfsg_grpc.CommitRequest\x1a\x1b.nirfsg_grpc.CommitResponse\x12\xb3\x01\n,ConfigureDeembeddingTableInterpolationLinear\x12@.nirfsg_grpc.ConfigureDeembeddingTableInterpolationLinearRequest\x1a\x41.nirfsg_grpc.ConfigureDeembeddingTableInterpolationLinearResponse\x12\xb6\x01\n-ConfigureDeembeddingTableInterpolationNearest\x12\x41.nirfsg_grpc.ConfigureDeembeddingTableInterpolationNearestRequest\x1a\x42.nirfsg_grpc.ConfigureDeembeddingTableInterpolationNearestResponse\x12\xb3\x01\n,ConfigureDeembeddingTableInterpolationSpline\x12@.nirfsg_grpc.ConfigureDeembeddingTableInterpolationSplineRequest\x1a\x41.nirfsg_grpc.ConfigureDeembeddingTableInterpolationSplineResponse\x12\xbf\x01\n0ConfigureDigitalEdgeConfigurationListStepTrigger\x12\x44.nirfsg_grpc.ConfigureDigitalEdgeConfigurationListStepTriggerRequest\x1a\x45.nirfsg_grpc.ConfigureDigitalEdgeConfigurationListStepTriggerResponse\x12\x92\x01\n!ConfigureDigitalEdgeScriptTrigger\x12\x35.nirfsg_grpc.ConfigureDigitalEdgeScriptTriggerRequest\x1a\x36.nirfsg_grpc.ConfigureDigitalEdgeScriptTriggerResponse\x12\x8f\x01\n ConfigureDigitalEdgeStartTrigger\x12\x34.nirfsg_grpc.ConfigureDigitalEdgeStartTriggerRequest\x1a\x35.nirfsg_grpc.ConfigureDigitalEdgeStartTriggerResponse\x12\x95\x01\n\"ConfigureDigitalLevelScriptTrigger\x12\x36.nirfsg_grpc.ConfigureDigitalLevelScriptTriggerRequest\x1a\x37.nirfsg_grpc.ConfigureDigitalLevelScriptTriggerResponse\x12\xb6\x01\n-ConfigureDigitalModulationUserDefinedWaveform\x12\x41.nirfsg_grpc.ConfigureDigitalModulationUserDefinedWaveformRequest\x1a\x42.nirfsg_grpc.ConfigureDigitalModulationUserDefinedWaveformResponse\x12t\n\x17\x43onfigureGenerationMode\x12+.nirfsg_grpc.ConfigureGenerationModeRequest\x1a,.nirfsg_grpc.ConfigureGenerationModeResponse\x12q\n\x16\x43onfigureOutputEnabled\x12*.nirfsg_grpc.ConfigureOutputEnabledRequest\x1a+.nirfsg_grpc.ConfigureOutputEnabledResponse\x12\xa7\x01\n(ConfigureP2PEndpointFullnessStartTrigger\x12<.nirfsg_grpc.ConfigureP2PEndpointFullnessStartTriggerRequest\x1a=.nirfsg_grpc.ConfigureP2PEndpointFullnessStartTriggerResponse\x12w\n\x18\x43onfigurePXIChassisClk10\x12,.nirfsg_grpc.ConfigurePXIChassisClk10Request\x1a-.nirfsg_grpc.ConfigurePXIChassisClk10Response\x12t\n\x17\x43onfigurePowerLevelType\x12+.nirfsg_grpc.ConfigurePowerLevelTypeRequest\x1a,.nirfsg_grpc.ConfigurePowerLevelTypeResponse\x12P\n\x0b\x43onfigureRF\x12\x1f.nirfsg_grpc.ConfigureRFRequest\x1a .nirfsg_grpc.ConfigureRFResponse\x12\x62\n\x11\x43onfigureRefClock\x12%.nirfsg_grpc.ConfigureRefClockRequest\x1a&.nirfsg_grpc.ConfigureRefClockResponse\x12w\n\x18\x43onfigureSignalBandwidth\x12,.nirfsg_grpc.ConfigureSignalBandwidthRequest\x1a-.nirfsg_grpc.ConfigureSignalBandwidthResponse\x12\x89\x01\n\x1e\x43onfigureSoftwareScriptTrigger\x12\x32.nirfsg_grpc.ConfigureSoftwareScriptTriggerRequest\x1a\x33.nirfsg_grpc.ConfigureSoftwareScriptTriggerResponse\x12\x86\x01\n\x1d\x43onfigureSoftwareStartTrigger\x12\x31.nirfsg_grpc.ConfigureSoftwareStartTriggerRequest\x1a\x32.nirfsg_grpc.ConfigureSoftwareStartTriggerResponse\x12\x98\x01\n#ConfigureUpconverterPLLSettlingTime\x12\x37.nirfsg_grpc.ConfigureUpconverterPLLSettlingTimeRequest\x1a\x38.nirfsg_grpc.ConfigureUpconverterPLLSettlingTimeResponse\x12t\n\x17\x43reateConfigurationList\x12+.nirfsg_grpc.CreateConfigurationListRequest\x1a,.nirfsg_grpc.CreateConfigurationListResponse\x12\x80\x01\n\x1b\x43reateConfigurationListStep\x12/.nirfsg_grpc.CreateConfigurationListStepRequest\x1a\x30.nirfsg_grpc.CreateConfigurationListStepResponse\x12\x9e\x01\n%CreateDeembeddingSparameterTableArray\x12\x39.nirfsg_grpc.CreateDeembeddingSparameterTableArrayRequest\x1a:.nirfsg_grpc.CreateDeembeddingSparameterTableArrayResponse\x12\xa4\x01\n\'CreateDeembeddingSparameterTableS2PFile\x12;.nirfsg_grpc.CreateDeembeddingSparameterTableS2PFileRequest\x1a<.nirfsg_grpc.CreateDeembeddingSparameterTableS2PFileResponse\x12}\n\x1a\x44\x65leteAllDeembeddingTables\x12..nirfsg_grpc.DeleteAllDeembeddingTablesRequest\x1a/.nirfsg_grpc.DeleteAllDeembeddingTablesResponse\x12t\n\x17\x44\x65leteConfigurationList\x12+.nirfsg_grpc.DeleteConfigurationListRequest\x1a,.nirfsg_grpc.DeleteConfigurationListResponse\x12q\n\x16\x44\x65leteDeembeddingTable\x12*.nirfsg_grpc.DeleteDeembeddingTableRequest\x1a+.nirfsg_grpc.DeleteDeembeddingTableResponse\x12S\n\x0c\x44\x65leteScript\x12 .nirfsg_grpc.DeleteScriptRequest\x1a!.nirfsg_grpc.DeleteScriptResponse\x12\x44\n\x07\x44isable\x12\x1b.nirfsg_grpc.DisableRequest\x1a\x1c.nirfsg_grpc.DisableResponse\x12k\n\x14\x44isableAllModulation\x12(.nirfsg_grpc.DisableAllModulationRequest\x1a).nirfsg_grpc.DisableAllModulationResponse\x12\x98\x01\n#DisableConfigurationListStepTrigger\x12\x37.nirfsg_grpc.DisableConfigurationListStepTriggerRequest\x1a\x38.nirfsg_grpc.DisableConfigurationListStepTriggerResponse\x12k\n\x14\x44isableScriptTrigger\x12(.nirfsg_grpc.DisableScriptTriggerRequest\x1a).nirfsg_grpc.DisableScriptTriggerResponse\x12h\n\x13\x44isableStartTrigger\x12\'.nirfsg_grpc.DisableStartTriggerRequest\x1a(.nirfsg_grpc.DisableStartTriggerResponse\x12S\n\x0c\x45rrorMessage\x12 .nirfsg_grpc.ErrorMessageRequest\x1a!.nirfsg_grpc.ErrorMessageResponse\x12M\n\nErrorQuery\x12\x1e.nirfsg_grpc.ErrorQueryRequest\x1a\x1f.nirfsg_grpc.ErrorQueryResponse\x12S\n\x0c\x45xportSignal\x12 .nirfsg_grpc.ExportSignalRequest\x1a!.nirfsg_grpc.ExportSignalResponse\x12w\n\x18GetAllNamedWaveformNames\x12,.nirfsg_grpc.GetAllNamedWaveformNamesRequest\x1a-.nirfsg_grpc.GetAllNamedWaveformNamesResponse\x12\x62\n\x11GetAllScriptNames\x12%.nirfsg_grpc.GetAllScriptNamesRequest\x1a&.nirfsg_grpc.GetAllScriptNamesResponse\x12J\n\tGetScript\x12\x1d.nirfsg_grpc.GetScriptRequest\x1a\x1e.nirfsg_grpc.GetScriptResponse\x12n\n\x15GetAttributeViBoolean\x12).nirfsg_grpc.GetAttributeViBooleanRequest\x1a*.nirfsg_grpc.GetAttributeViBooleanResponse\x12h\n\x13GetAttributeViInt32\x12\'.nirfsg_grpc.GetAttributeViInt32Request\x1a(.nirfsg_grpc.GetAttributeViInt32Response\x12h\n\x13GetAttributeViInt64\x12\'.nirfsg_grpc.GetAttributeViInt64Request\x1a(.nirfsg_grpc.GetAttributeViInt64Response\x12k\n\x14GetAttributeViReal64\x12(.nirfsg_grpc.GetAttributeViReal64Request\x1a).nirfsg_grpc.GetAttributeViReal64Response\x12n\n\x15GetAttributeViSession\x12).nirfsg_grpc.GetAttributeViSessionRequest\x1a*.nirfsg_grpc.GetAttributeViSessionResponse\x12k\n\x14GetAttributeViString\x12(.nirfsg_grpc.GetAttributeViStringRequest\x1a).nirfsg_grpc.GetAttributeViStringResponse\x12Y\n\x0eGetChannelName\x12\".nirfsg_grpc.GetChannelNameRequest\x1a#.nirfsg_grpc.GetChannelNameResponse\x12z\n\x19GetDeembeddingSparameters\x12-.nirfsg_grpc.GetDeembeddingSparametersRequest\x1a..nirfsg_grpc.GetDeembeddingSparametersResponse\x12G\n\x08GetError\x12\x1c.nirfsg_grpc.GetErrorRequest\x1a\x1d.nirfsg_grpc.GetErrorResponse\x12\x9e\x01\n%GetExternalCalibrationLastDateAndTime\x12\x39.nirfsg_grpc.GetExternalCalibrationLastDateAndTimeRequest\x1a:.nirfsg_grpc.GetExternalCalibrationLastDateAndTimeResponse\x12h\n\x13GetMaxSettablePower\x12\'.nirfsg_grpc.GetMaxSettablePowerRequest\x1a(.nirfsg_grpc.GetMaxSettablePowerResponse\x12\x86\x01\n\x1dGetSelfCalibrationDateAndTime\x12\x31.nirfsg_grpc.GetSelfCalibrationDateAndTimeRequest\x1a\x32.nirfsg_grpc.GetSelfCalibrationDateAndTimeResponse\x12\x86\x01\n\x1dGetSelfCalibrationTemperature\x12\x31.nirfsg_grpc.GetSelfCalibrationTemperatureRequest\x1a\x32.nirfsg_grpc.GetSelfCalibrationTemperatureResponse\x12\\\n\x0fGetTerminalName\x12#.nirfsg_grpc.GetTerminalNameRequest\x1a$.nirfsg_grpc.GetTerminalNameResponse\x12P\n\x0bGetUserData\x12\x1f.nirfsg_grpc.GetUserDataRequest\x1a .nirfsg_grpc.GetUserDataResponse\x12\x89\x01\n\x1eGetWaveformBurstStartLocations\x12\x32.nirfsg_grpc.GetWaveformBurstStartLocationsRequest\x1a\x33.nirfsg_grpc.GetWaveformBurstStartLocationsResponse\x12\x86\x01\n\x1dGetWaveformBurstStopLocations\x12\x31.nirfsg_grpc.GetWaveformBurstStopLocationsRequest\x1a\x32.nirfsg_grpc.GetWaveformBurstStopLocationsResponse\x12\x8c\x01\n\x1fGetWaveformMarkerEventLocations\x12\x33.nirfsg_grpc.GetWaveformMarkerEventLocationsRequest\x1a\x34.nirfsg_grpc.GetWaveformMarkerEventLocationsResponse\x12;\n\x04Init\x12\x18.nirfsg_grpc.InitRequest\x1a\x19.nirfsg_grpc.InitResponse\x12\\\n\x0fInitWithOptions\x12#.nirfsg_grpc.InitWithOptionsRequest\x1a$.nirfsg_grpc.InitWithOptionsResponse\x12G\n\x08Initiate\x12\x1c.nirfsg_grpc.InitiateRequest\x1a\x1d.nirfsg_grpc.InitiateResponse\x12t\n\x17InvalidateAllAttributes\x12+.nirfsg_grpc.InvalidateAllAttributesRequest\x1a,.nirfsg_grpc.InvalidateAllAttributesResponse\x12}\n\x1aLoadConfigurationsFromFile\x12..nirfsg_grpc.LoadConfigurationsFromFileRequest\x1a/.nirfsg_grpc.LoadConfigurationsFromFileResponse\x12\x65\n\x12PerformPowerSearch\x12&.nirfsg_grpc.PerformPowerSearchRequest\x1a\'.nirfsg_grpc.PerformPowerSearchResponse\x12w\n\x18PerformThermalCorrection\x12,.nirfsg_grpc.PerformThermalCorrectionRequest\x1a-.nirfsg_grpc.PerformThermalCorrectionResponse\x12\x83\x01\n\x1cQueryArbWaveformCapabilities\x12\x30.nirfsg_grpc.QueryArbWaveformCapabilitiesRequest\x1a\x31.nirfsg_grpc.QueryArbWaveformCapabilitiesResponse\x12\x98\x01\n#ReadAndDownloadWaveformFromFileTDMS\x12\x37.nirfsg_grpc.ReadAndDownloadWaveformFromFileTDMSRequest\x1a\x38.nirfsg_grpc.ReadAndDownloadWaveformFromFileTDMSResponse\x12>\n\x05Reset\x12\x19.nirfsg_grpc.ResetRequest\x1a\x1a.nirfsg_grpc.ResetResponse\x12Y\n\x0eResetAttribute\x12\".nirfsg_grpc.ResetAttributeRequest\x1a#.nirfsg_grpc.ResetAttributeResponse\x12P\n\x0bResetDevice\x12\x1f.nirfsg_grpc.ResetDeviceRequest\x1a .nirfsg_grpc.ResetDeviceResponse\x12\x62\n\x11ResetWithDefaults\x12%.nirfsg_grpc.ResetWithDefaultsRequest\x1a&.nirfsg_grpc.ResetWithDefaultsResponse\x12_\n\x10ResetWithOptions\x12$.nirfsg_grpc.ResetWithOptionsRequest\x1a%.nirfsg_grpc.ResetWithOptionsResponse\x12V\n\rRevisionQuery\x12!.nirfsg_grpc.RevisionQueryRequest\x1a\".nirfsg_grpc.RevisionQueryResponse\x12w\n\x18SaveConfigurationsToFile\x12,.nirfsg_grpc.SaveConfigurationsToFileRequest\x1a-.nirfsg_grpc.SaveConfigurationsToFileResponse\x12\x62\n\x11SelectArbWaveform\x12%.nirfsg_grpc.SelectArbWaveformRequest\x1a&.nirfsg_grpc.SelectArbWaveformResponse\x12\x44\n\x07SelfCal\x12\x1b.nirfsg_grpc.SelfCalRequest\x1a\x1c.nirfsg_grpc.SelfCalResponse\x12\x65\n\x12SelfCalibrateRange\x12&.nirfsg_grpc.SelfCalibrateRangeRequest\x1a\'.nirfsg_grpc.SelfCalibrateRangeResponse\x12G\n\x08SelfTest\x12\x1c.nirfsg_grpc.SelfTestRequest\x1a\x1d.nirfsg_grpc.SelfTestResponse\x12t\n\x17SendSoftwareEdgeTrigger\x12+.nirfsg_grpc.SendSoftwareEdgeTriggerRequest\x1a,.nirfsg_grpc.SendSoftwareEdgeTriggerResponse\x12\x8c\x01\n\x1fSetArbWaveformNextWritePosition\x12\x33.nirfsg_grpc.SetArbWaveformNextWritePositionRequest\x1a\x34.nirfsg_grpc.SetArbWaveformNextWritePositionResponse\x12n\n\x15SetAttributeViBoolean\x12).nirfsg_grpc.SetAttributeViBooleanRequest\x1a*.nirfsg_grpc.SetAttributeViBooleanResponse\x12h\n\x13SetAttributeViInt32\x12\'.nirfsg_grpc.SetAttributeViInt32Request\x1a(.nirfsg_grpc.SetAttributeViInt32Response\x12h\n\x13SetAttributeViInt64\x12\'.nirfsg_grpc.SetAttributeViInt64Request\x1a(.nirfsg_grpc.SetAttributeViInt64Response\x12k\n\x14SetAttributeViReal64\x12(.nirfsg_grpc.SetAttributeViReal64Request\x1a).nirfsg_grpc.SetAttributeViReal64Response\x12n\n\x15SetAttributeViSession\x12).nirfsg_grpc.SetAttributeViSessionRequest\x1a*.nirfsg_grpc.SetAttributeViSessionResponse\x12k\n\x14SetAttributeViString\x12(.nirfsg_grpc.SetAttributeViStringRequest\x1a).nirfsg_grpc.SetAttributeViStringResponse\x12P\n\x0bSetUserData\x12\x1f.nirfsg_grpc.SetUserDataRequest\x1a .nirfsg_grpc.SetUserDataResponse\x12\x89\x01\n\x1eSetWaveformBurstStartLocations\x12\x32.nirfsg_grpc.SetWaveformBurstStartLocationsRequest\x1a\x33.nirfsg_grpc.SetWaveformBurstStartLocationsResponse\x12\x86\x01\n\x1dSetWaveformBurstStopLocations\x12\x31.nirfsg_grpc.SetWaveformBurstStopLocationsRequest\x1a\x32.nirfsg_grpc.SetWaveformBurstStopLocationsResponse\x12\x8c\x01\n\x1fSetWaveformMarkerEventLocations\x12\x33.nirfsg_grpc.SetWaveformMarkerEventLocationsRequest\x1a\x34.nirfsg_grpc.SetWaveformMarkerEventLocationsResponse\x12_\n\x10WaitUntilSettled\x12$.nirfsg_grpc.WaitUntilSettledRequest\x1a%.nirfsg_grpc.WaitUntilSettledResponse\x12_\n\x10WriteArbWaveform\x12$.nirfsg_grpc.WriteArbWaveformRequest\x1a%.nirfsg_grpc.WriteArbWaveformResponse\x12}\n\x1aWriteArbWaveformComplexF32\x12..nirfsg_grpc.WriteArbWaveformComplexF32Request\x1a/.nirfsg_grpc.WriteArbWaveformComplexF32Response\x12}\n\x1aWriteArbWaveformComplexF64\x12..nirfsg_grpc.WriteArbWaveformComplexF64Request\x1a/.nirfsg_grpc.WriteArbWaveformComplexF64Response\x12}\n\x1aWriteArbWaveformComplexI16\x12..nirfsg_grpc.WriteArbWaveformComplexI16Request\x1a/.nirfsg_grpc.WriteArbWaveformComplexI16Response\x12h\n\x13WriteArbWaveformF32\x12\'.nirfsg_grpc.WriteArbWaveformF32Request\x1a(.nirfsg_grpc.WriteArbWaveformF32Response\x12P\n\x0bWriteScript\x12\x1f.nirfsg_grpc.WriteScriptRequest\x1a .nirfsg_grpc.WriteScriptResponseB@\n\x12\x63om.ni.grpc.nirfsgB\x06NiRFSGP\x01\xaa\x02\x1fNationalInstruments.Grpc.NiRFSGb\x06proto3') + +_globals = globals() +_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals) +_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'nirfsg_pb2', _globals) +if _descriptor._USE_C_DESCRIPTORS == False: + DESCRIPTOR._options = None + DESCRIPTOR._serialized_options = b'\n\022com.ni.grpc.nirfsgB\006NiRFSGP\001\252\002\037NationalInstruments.Grpc.NiRFSG' + _NIRFSGINT32ATTRIBUTEVALUES._options = None + _NIRFSGINT32ATTRIBUTEVALUES._serialized_options = b'\020\001' + _INITRESPONSE.fields_by_name['error_message']._options = None + _INITRESPONSE.fields_by_name['error_message']._serialized_options = b'\030\001' + _INITWITHOPTIONSRESPONSE.fields_by_name['error_message']._options = None + _INITWITHOPTIONSRESPONSE.fields_by_name['error_message']._serialized_options = b'\030\001' + _globals['_NIRFSGATTRIBUTE']._serialized_start=22589 + _globals['_NIRFSGATTRIBUTE']._serialized_end=35098 + _globals['_DIGITALEDGECONFIGURATIONLISTSTEPTRIGGERSOURCE']._serialized_start=35101 + _globals['_DIGITALEDGECONFIGURATIONLISTSTEPTRIGGERSOURCE']._serialized_end=36485 + _globals['_DIGITALEDGEEDGE']._serialized_start=36487 + _globals['_DIGITALEDGEEDGE']._serialized_end=36575 + _globals['_DIGITALEDGESCRIPTTRIGGERIDENTIFIER']._serialized_start=36578 + _globals['_DIGITALEDGESCRIPTTRIGGERIDENTIFIER']._serialized_end=36910 + _globals['_DIGITALLEVELACTIVELEVEL']._serialized_start=36913 + _globals['_DIGITALLEVELACTIVELEVEL']._serialized_end=37071 + _globals['_GENERATIONMODE']._serialized_start=37074 + _globals['_GENERATIONMODE']._serialized_end=37212 + _globals['_LINEARINTERPOLATIONFORMAT']._serialized_start=37215 + _globals['_LINEARINTERPOLATIONFORMAT']._serialized_end=37454 + _globals['_MODULE']._serialized_start=37456 + _globals['_MODULE']._serialized_end=37549 + _globals['_OUTPUTSIGNAL']._serialized_start=37552 + _globals['_OUTPUTSIGNAL']._serialized_end=38040 + _globals['_PXICHASSISCLK10']._serialized_start=38043 + _globals['_PXICHASSISCLK10']._serialized_end=38190 + _globals['_POWERLEVELTYPE']._serialized_start=38192 + _globals['_POWERLEVELTYPE']._serialized_end=38313 + _globals['_REFCLOCKSOURCE']._serialized_start=38316 + _globals['_REFCLOCKSOURCE']._serialized_end=38558 + _globals['_RELATIVETO']._serialized_start=38560 + _globals['_RELATIVETO']._serialized_end=38672 + _globals['_RESETWITHOPTIONSSTEPSTOOMIT']._serialized_start=38675 + _globals['_RESETWITHOPTIONSSTEPSTOOMIT']._serialized_end=38943 + _globals['_ROUTEDSIGNAL']._serialized_start=38946 + _globals['_ROUTEDSIGNAL']._serialized_end=39249 + _globals['_SPARAMETERORIENTATION']._serialized_start=39252 + _globals['_SPARAMETERORIENTATION']._serialized_end=39414 + _globals['_SELFCALIBRATERANGESTEPSTOOMIT']._serialized_start=39417 + _globals['_SELFCALIBRATERANGESTEPSTOOMIT']._serialized_end=39789 + _globals['_SIGNALIDENTIFIER']._serialized_start=39792 + _globals['_SIGNALIDENTIFIER']._serialized_end=40153 + _globals['_TRIGGERSOURCE']._serialized_start=40156 + _globals['_TRIGGERSOURCE']._serialized_end=40940 + _globals['_NIRFSGINT32ATTRIBUTEVALUES']._serialized_start=40943 + _globals['_NIRFSGINT32ATTRIBUTEVALUES']._serialized_end=46196 + _globals['_NIRFSGREAL64ATTRIBUTEVALUES']._serialized_start=46199 + _globals['_NIRFSGREAL64ATTRIBUTEVALUES']._serialized_end=46351 + _globals['_NIRFSGSTRINGATTRIBUTEVALUESMAPPED']._serialized_start=46354 + _globals['_NIRFSGSTRINGATTRIBUTEVALUESMAPPED']._serialized_end=52578 + _globals['_ABORTREQUEST']._serialized_start=60 + _globals['_ABORTREQUEST']._serialized_end=110 + _globals['_ABORTRESPONSE']._serialized_start=112 + _globals['_ABORTRESPONSE']._serialized_end=143 + _globals['_ALLOCATEARBWAVEFORMREQUEST']._serialized_start=145 + _globals['_ALLOCATEARBWAVEFORMREQUEST']._serialized_end=257 + _globals['_ALLOCATEARBWAVEFORMRESPONSE']._serialized_start=259 + _globals['_ALLOCATEARBWAVEFORMRESPONSE']._serialized_end=304 + _globals['_CHECKATTRIBUTEVIBOOLEANREQUEST']._serialized_start=307 + _globals['_CHECKATTRIBUTEVIBOOLEANREQUEST']._serialized_end=464 + _globals['_CHECKATTRIBUTEVIBOOLEANRESPONSE']._serialized_start=466 + _globals['_CHECKATTRIBUTEVIBOOLEANRESPONSE']._serialized_end=515 + _globals['_CHECKATTRIBUTEVIINT32REQUEST']._serialized_start=518 + _globals['_CHECKATTRIBUTEVIINT32REQUEST']._serialized_end=751 + _globals['_CHECKATTRIBUTEVIINT32RESPONSE']._serialized_start=753 + _globals['_CHECKATTRIBUTEVIINT32RESPONSE']._serialized_end=800 + _globals['_CHECKATTRIBUTEVIINT64REQUEST']._serialized_start=803 + _globals['_CHECKATTRIBUTEVIINT64REQUEST']._serialized_end=962 + _globals['_CHECKATTRIBUTEVIINT64RESPONSE']._serialized_start=964 + _globals['_CHECKATTRIBUTEVIINT64RESPONSE']._serialized_end=1011 + _globals['_CHECKATTRIBUTEVIREAL64REQUEST']._serialized_start=1014 + _globals['_CHECKATTRIBUTEVIREAL64REQUEST']._serialized_end=1249 + _globals['_CHECKATTRIBUTEVIREAL64RESPONSE']._serialized_start=1251 + _globals['_CHECKATTRIBUTEVIREAL64RESPONSE']._serialized_end=1299 + _globals['_CHECKATTRIBUTEVISESSIONREQUEST']._serialized_start=1302 + _globals['_CHECKATTRIBUTEVISESSIONREQUEST']._serialized_end=1483 + _globals['_CHECKATTRIBUTEVISESSIONRESPONSE']._serialized_start=1485 + _globals['_CHECKATTRIBUTEVISESSIONRESPONSE']._serialized_end=1534 + _globals['_CHECKATTRIBUTEVISTRINGREQUEST']._serialized_start=1537 + _globals['_CHECKATTRIBUTEVISTRINGREQUEST']._serialized_end=1785 + _globals['_CHECKATTRIBUTEVISTRINGRESPONSE']._serialized_start=1787 + _globals['_CHECKATTRIBUTEVISTRINGRESPONSE']._serialized_end=1835 + _globals['_CHECKGENERATIONSTATUSREQUEST']._serialized_start=1837 + _globals['_CHECKGENERATIONSTATUSREQUEST']._serialized_end=1903 + _globals['_CHECKGENERATIONSTATUSRESPONSE']._serialized_start=1905 + _globals['_CHECKGENERATIONSTATUSRESPONSE']._serialized_end=1969 + _globals['_CHECKIFCONFIGURATIONLISTEXISTSREQUEST']._serialized_start=1971 + _globals['_CHECKIFCONFIGURATIONLISTEXISTSREQUEST']._serialized_end=2065 + _globals['_CHECKIFCONFIGURATIONLISTEXISTSRESPONSE']._serialized_start=2067 + _globals['_CHECKIFCONFIGURATIONLISTEXISTSRESPONSE']._serialized_end=2144 + _globals['_CHECKIFSCRIPTEXISTSREQUEST']._serialized_start=2146 + _globals['_CHECKIFSCRIPTEXISTSREQUEST']._serialized_end=2231 + _globals['_CHECKIFSCRIPTEXISTSRESPONSE']._serialized_start=2233 + _globals['_CHECKIFSCRIPTEXISTSRESPONSE']._serialized_end=2301 + _globals['_CHECKIFWAVEFORMEXISTSREQUEST']._serialized_start=2303 + _globals['_CHECKIFWAVEFORMEXISTSREQUEST']._serialized_end=2392 + _globals['_CHECKIFWAVEFORMEXISTSRESPONSE']._serialized_start=2394 + _globals['_CHECKIFWAVEFORMEXISTSRESPONSE']._serialized_end=2466 + _globals['_CLEARALLARBWAVEFORMSREQUEST']._serialized_start=2468 + _globals['_CLEARALLARBWAVEFORMSREQUEST']._serialized_end=2533 + _globals['_CLEARALLARBWAVEFORMSRESPONSE']._serialized_start=2535 + _globals['_CLEARALLARBWAVEFORMSRESPONSE']._serialized_end=2581 + _globals['_CLEARARBWAVEFORMREQUEST']._serialized_start=2583 + _globals['_CLEARARBWAVEFORMREQUEST']._serialized_end=2658 + _globals['_CLEARARBWAVEFORMRESPONSE']._serialized_start=2660 + _globals['_CLEARARBWAVEFORMRESPONSE']._serialized_end=2702 + _globals['_CLEARERRORREQUEST']._serialized_start=2704 + _globals['_CLEARERRORREQUEST']._serialized_end=2759 + _globals['_CLEARERRORRESPONSE']._serialized_start=2761 + _globals['_CLEARERRORRESPONSE']._serialized_end=2797 + _globals['_CLEARSELFCALIBRATERANGEREQUEST']._serialized_start=2799 + _globals['_CLEARSELFCALIBRATERANGEREQUEST']._serialized_end=2867 + _globals['_CLEARSELFCALIBRATERANGERESPONSE']._serialized_start=2869 + _globals['_CLEARSELFCALIBRATERANGERESPONSE']._serialized_end=2918 + _globals['_CLOSEREQUEST']._serialized_start=2920 + _globals['_CLOSEREQUEST']._serialized_end=2970 + _globals['_CLOSERESPONSE']._serialized_start=2972 + _globals['_CLOSERESPONSE']._serialized_end=3003 + _globals['_COMMITREQUEST']._serialized_start=3005 + _globals['_COMMITREQUEST']._serialized_end=3056 + _globals['_COMMITRESPONSE']._serialized_start=3058 + _globals['_COMMITRESPONSE']._serialized_end=3090 + _globals['_CONFIGUREDEEMBEDDINGTABLEINTERPOLATIONLINEARREQUEST']._serialized_start=3093 + _globals['_CONFIGUREDEEMBEDDINGTABLEINTERPOLATIONLINEARREQUEST']._serialized_end=3311 + _globals['_CONFIGUREDEEMBEDDINGTABLEINTERPOLATIONLINEARRESPONSE']._serialized_start=3313 + _globals['_CONFIGUREDEEMBEDDINGTABLEINTERPOLATIONLINEARRESPONSE']._serialized_end=3383 + _globals['_CONFIGUREDEEMBEDDINGTABLEINTERPOLATIONNEARESTREQUEST']._serialized_start=3385 + _globals['_CONFIGUREDEEMBEDDINGTABLEINTERPOLATIONNEARESTREQUEST']._serialized_end=3509 + _globals['_CONFIGUREDEEMBEDDINGTABLEINTERPOLATIONNEARESTRESPONSE']._serialized_start=3511 + _globals['_CONFIGUREDEEMBEDDINGTABLEINTERPOLATIONNEARESTRESPONSE']._serialized_end=3582 + _globals['_CONFIGUREDEEMBEDDINGTABLEINTERPOLATIONSPLINEREQUEST']._serialized_start=3584 + _globals['_CONFIGUREDEEMBEDDINGTABLEINTERPOLATIONSPLINEREQUEST']._serialized_end=3707 + _globals['_CONFIGUREDEEMBEDDINGTABLEINTERPOLATIONSPLINERESPONSE']._serialized_start=3709 + _globals['_CONFIGUREDEEMBEDDINGTABLEINTERPOLATIONSPLINERESPONSE']._serialized_end=3779 + _globals['_CONFIGUREDIGITALEDGECONFIGURATIONLISTSTEPTRIGGERREQUEST']._serialized_start=3782 + _globals['_CONFIGUREDIGITALEDGECONFIGURATIONLISTSTEPTRIGGERREQUEST']._serialized_end=4076 + _globals['_CONFIGUREDIGITALEDGECONFIGURATIONLISTSTEPTRIGGERRESPONSE']._serialized_start=4078 + _globals['_CONFIGUREDIGITALEDGECONFIGURATIONLISTSTEPTRIGGERRESPONSE']._serialized_end=4152 + _globals['_CONFIGUREDIGITALEDGESCRIPTTRIGGERREQUEST']._serialized_start=4155 + _globals['_CONFIGUREDIGITALEDGESCRIPTTRIGGERREQUEST']._serialized_end=4525 + _globals['_CONFIGUREDIGITALEDGESCRIPTTRIGGERRESPONSE']._serialized_start=4527 + _globals['_CONFIGUREDIGITALEDGESCRIPTTRIGGERRESPONSE']._serialized_end=4586 + _globals['_CONFIGUREDIGITALEDGESTARTTRIGGERREQUEST']._serialized_start=4589 + _globals['_CONFIGUREDIGITALEDGESTARTTRIGGERREQUEST']._serialized_end=4835 + _globals['_CONFIGUREDIGITALEDGESTARTTRIGGERRESPONSE']._serialized_start=4837 + _globals['_CONFIGUREDIGITALEDGESTARTTRIGGERRESPONSE']._serialized_end=4895 + _globals['_CONFIGUREDIGITALLEVELSCRIPTTRIGGERREQUEST']._serialized_start=4898 + _globals['_CONFIGUREDIGITALLEVELSCRIPTTRIGGERREQUEST']._serialized_end=5280 + _globals['_CONFIGUREDIGITALLEVELSCRIPTTRIGGERRESPONSE']._serialized_start=5282 + _globals['_CONFIGUREDIGITALLEVELSCRIPTTRIGGERRESPONSE']._serialized_end=5342 + _globals['_CONFIGUREDIGITALMODULATIONUSERDEFINEDWAVEFORMREQUEST']._serialized_start=5344 + _globals['_CONFIGUREDIGITALMODULATIONUSERDEFINEDWAVEFORMREQUEST']._serialized_end=5465 + _globals['_CONFIGUREDIGITALMODULATIONUSERDEFINEDWAVEFORMRESPONSE']._serialized_start=5467 + _globals['_CONFIGUREDIGITALMODULATIONUSERDEFINEDWAVEFORMRESPONSE']._serialized_end=5538 + _globals['_CONFIGUREGENERATIONMODEREQUEST']._serialized_start=5541 + _globals['_CONFIGUREGENERATIONMODEREQUEST']._serialized_end=5720 + _globals['_CONFIGUREGENERATIONMODERESPONSE']._serialized_start=5722 + _globals['_CONFIGUREGENERATIONMODERESPONSE']._serialized_end=5771 + _globals['_CONFIGUREOUTPUTENABLEDREQUEST']._serialized_start=5773 + _globals['_CONFIGUREOUTPUTENABLEDREQUEST']._serialized_end=5864 + _globals['_CONFIGUREOUTPUTENABLEDRESPONSE']._serialized_start=5866 + _globals['_CONFIGUREOUTPUTENABLEDRESPONSE']._serialized_end=5914 + _globals['_CONFIGUREP2PENDPOINTFULLNESSSTARTTRIGGERREQUEST']._serialized_start=5916 + _globals['_CONFIGUREP2PENDPOINTFULLNESSSTARTTRIGGERREQUEST']._serialized_end=6038 + _globals['_CONFIGUREP2PENDPOINTFULLNESSSTARTTRIGGERRESPONSE']._serialized_start=6040 + _globals['_CONFIGUREP2PENDPOINTFULLNESSSTARTTRIGGERRESPONSE']._serialized_end=6106 + _globals['_CONFIGUREPXICHASSISCLK10REQUEST']._serialized_start=6109 + _globals['_CONFIGUREPXICHASSISCLK10REQUEST']._serialized_end=6300 + _globals['_CONFIGUREPXICHASSISCLK10RESPONSE']._serialized_start=6302 + _globals['_CONFIGUREPXICHASSISCLK10RESPONSE']._serialized_end=6352 + _globals['_CONFIGUREPOWERLEVELTYPEREQUEST']._serialized_start=6355 + _globals['_CONFIGUREPOWERLEVELTYPEREQUEST']._serialized_end=6537 + _globals['_CONFIGUREPOWERLEVELTYPERESPONSE']._serialized_start=6539 + _globals['_CONFIGUREPOWERLEVELTYPERESPONSE']._serialized_end=6588 + _globals['_CONFIGURERFREQUEST']._serialized_start=6590 + _globals['_CONFIGURERFREQUEST']._serialized_end=6686 + _globals['_CONFIGURERFRESPONSE']._serialized_start=6688 + _globals['_CONFIGURERFRESPONSE']._serialized_end=6725 + _globals['_CONFIGUREREFCLOCKREQUEST']._serialized_start=6728 + _globals['_CONFIGUREREFCLOCKREQUEST']._serialized_end=6935 + _globals['_CONFIGUREREFCLOCKRESPONSE']._serialized_start=6937 + _globals['_CONFIGUREREFCLOCKRESPONSE']._serialized_end=6980 + _globals['_CONFIGURESIGNALBANDWIDTHREQUEST']._serialized_start=6982 + _globals['_CONFIGURESIGNALBANDWIDTHREQUEST']._serialized_end=7077 + _globals['_CONFIGURESIGNALBANDWIDTHRESPONSE']._serialized_start=7079 + _globals['_CONFIGURESIGNALBANDWIDTHRESPONSE']._serialized_end=7129 + _globals['_CONFIGURESOFTWARESCRIPTTRIGGERREQUEST']._serialized_start=7132 + _globals['_CONFIGURESOFTWARESCRIPTTRIGGERREQUEST']._serialized_end=7330 + _globals['_CONFIGURESOFTWARESCRIPTTRIGGERRESPONSE']._serialized_start=7332 + _globals['_CONFIGURESOFTWARESCRIPTTRIGGERRESPONSE']._serialized_end=7388 + _globals['_CONFIGURESOFTWARESTARTTRIGGERREQUEST']._serialized_start=7390 + _globals['_CONFIGURESOFTWARESTARTTRIGGERREQUEST']._serialized_end=7464 + _globals['_CONFIGURESOFTWARESTARTTRIGGERRESPONSE']._serialized_start=7466 + _globals['_CONFIGURESOFTWARESTARTTRIGGERRESPONSE']._serialized_end=7521 + _globals['_CONFIGUREUPCONVERTERPLLSETTLINGTIMEREQUEST']._serialized_start=7524 + _globals['_CONFIGUREUPCONVERTERPLLSETTLINGTIMEREQUEST']._serialized_end=7658 + _globals['_CONFIGUREUPCONVERTERPLLSETTLINGTIMERESPONSE']._serialized_start=7660 + _globals['_CONFIGUREUPCONVERTERPLLSETTLINGTIMERESPONSE']._serialized_end=7721 + _globals['_CREATECONFIGURATIONLISTREQUEST']._serialized_start=7724 + _globals['_CREATECONFIGURATIONLISTREQUEST']._serialized_end=7908 + _globals['_CREATECONFIGURATIONLISTRESPONSE']._serialized_start=7910 + _globals['_CREATECONFIGURATIONLISTRESPONSE']._serialized_end=7959 + _globals['_CREATECONFIGURATIONLISTSTEPREQUEST']._serialized_start=7961 + _globals['_CREATECONFIGURATIONLISTSTEPREQUEST']._serialized_end=8061 + _globals['_CREATECONFIGURATIONLISTSTEPRESPONSE']._serialized_start=8063 + _globals['_CREATECONFIGURATIONLISTSTEPRESPONSE']._serialized_end=8116 + _globals['_CREATEDEEMBEDDINGSPARAMETERTABLEARRAYREQUEST']._serialized_start=8119 + _globals['_CREATEDEEMBEDDINGSPARAMETERTABLEARRAYREQUEST']._serialized_end=8478 + _globals['_CREATEDEEMBEDDINGSPARAMETERTABLEARRAYRESPONSE']._serialized_start=8480 + _globals['_CREATEDEEMBEDDINGSPARAMETERTABLEARRAYRESPONSE']._serialized_end=8543 + _globals['_CREATEDEEMBEDDINGSPARAMETERTABLES2PFILEREQUEST']._serialized_start=8546 + _globals['_CREATEDEEMBEDDINGSPARAMETERTABLES2PFILEREQUEST']._serialized_end=8826 + _globals['_CREATEDEEMBEDDINGSPARAMETERTABLES2PFILERESPONSE']._serialized_start=8828 + _globals['_CREATEDEEMBEDDINGSPARAMETERTABLES2PFILERESPONSE']._serialized_end=8893 + _globals['_DELETEALLDEEMBEDDINGTABLESREQUEST']._serialized_start=8895 + _globals['_DELETEALLDEEMBEDDINGTABLESREQUEST']._serialized_end=8966 + _globals['_DELETEALLDEEMBEDDINGTABLESRESPONSE']._serialized_start=8968 + _globals['_DELETEALLDEEMBEDDINGTABLESRESPONSE']._serialized_end=9020 + _globals['_DELETECONFIGURATIONLISTREQUEST']._serialized_start=9022 + _globals['_DELETECONFIGURATIONLISTREQUEST']._serialized_end=9109 + _globals['_DELETECONFIGURATIONLISTRESPONSE']._serialized_start=9111 + _globals['_DELETECONFIGURATIONLISTRESPONSE']._serialized_end=9160 + _globals['_DELETEDEEMBEDDINGTABLEREQUEST']._serialized_start=9162 + _globals['_DELETEDEEMBEDDINGTABLEREQUEST']._serialized_end=9263 + _globals['_DELETEDEEMBEDDINGTABLERESPONSE']._serialized_start=9265 + _globals['_DELETEDEEMBEDDINGTABLERESPONSE']._serialized_end=9313 + _globals['_DELETESCRIPTREQUEST']._serialized_start=9315 + _globals['_DELETESCRIPTREQUEST']._serialized_end=9393 + _globals['_DELETESCRIPTRESPONSE']._serialized_start=9395 + _globals['_DELETESCRIPTRESPONSE']._serialized_end=9433 + _globals['_DISABLEREQUEST']._serialized_start=9435 + _globals['_DISABLEREQUEST']._serialized_end=9487 + _globals['_DISABLERESPONSE']._serialized_start=9489 + _globals['_DISABLERESPONSE']._serialized_end=9522 + _globals['_DISABLEALLMODULATIONREQUEST']._serialized_start=9524 + _globals['_DISABLEALLMODULATIONREQUEST']._serialized_end=9589 + _globals['_DISABLEALLMODULATIONRESPONSE']._serialized_start=9591 + _globals['_DISABLEALLMODULATIONRESPONSE']._serialized_end=9637 + _globals['_DISABLECONFIGURATIONLISTSTEPTRIGGERREQUEST']._serialized_start=9639 + _globals['_DISABLECONFIGURATIONLISTSTEPTRIGGERREQUEST']._serialized_end=9719 + _globals['_DISABLECONFIGURATIONLISTSTEPTRIGGERRESPONSE']._serialized_start=9721 + _globals['_DISABLECONFIGURATIONLISTSTEPTRIGGERRESPONSE']._serialized_end=9782 + _globals['_DISABLESCRIPTTRIGGERREQUEST']._serialized_start=9785 + _globals['_DISABLESCRIPTTRIGGERREQUEST']._serialized_end=9973 + _globals['_DISABLESCRIPTTRIGGERRESPONSE']._serialized_start=9975 + _globals['_DISABLESCRIPTTRIGGERRESPONSE']._serialized_end=10021 + _globals['_DISABLESTARTTRIGGERREQUEST']._serialized_start=10023 + _globals['_DISABLESTARTTRIGGERREQUEST']._serialized_end=10087 + _globals['_DISABLESTARTTRIGGERRESPONSE']._serialized_start=10089 + _globals['_DISABLESTARTTRIGGERRESPONSE']._serialized_end=10134 + _globals['_ERRORMESSAGEREQUEST']._serialized_start=10136 + _globals['_ERRORMESSAGEREQUEST']._serialized_end=10213 + _globals['_ERRORMESSAGERESPONSE']._serialized_start=10215 + _globals['_ERRORMESSAGERESPONSE']._serialized_end=10276 + _globals['_ERRORQUERYREQUEST']._serialized_start=10278 + _globals['_ERRORQUERYREQUEST']._serialized_end=10333 + _globals['_ERRORQUERYRESPONSE']._serialized_start=10335 + _globals['_ERRORQUERYRESPONSE']._serialized_end=10414 + _globals['_EXPORTSIGNALREQUEST']._serialized_start=10417 + _globals['_EXPORTSIGNALREQUEST']._serialized_end=10798 + _globals['_EXPORTSIGNALRESPONSE']._serialized_start=10800 + _globals['_EXPORTSIGNALRESPONSE']._serialized_end=10838 + _globals['_GETALLNAMEDWAVEFORMNAMESREQUEST']._serialized_start=10840 + _globals['_GETALLNAMEDWAVEFORMNAMESREQUEST']._serialized_end=10909 + _globals['_GETALLNAMEDWAVEFORMNAMESRESPONSE']._serialized_start=10911 + _globals['_GETALLNAMEDWAVEFORMNAMESRESPONSE']._serialized_end=11013 + _globals['_GETALLSCRIPTNAMESREQUEST']._serialized_start=11015 + _globals['_GETALLSCRIPTNAMESREQUEST']._serialized_end=11077 + _globals['_GETALLSCRIPTNAMESRESPONSE']._serialized_start=11079 + _globals['_GETALLSCRIPTNAMESRESPONSE']._serialized_end=11172 + _globals['_GETSCRIPTREQUEST']._serialized_start=11174 + _globals['_GETSCRIPTREQUEST']._serialized_end=11249 + _globals['_GETSCRIPTRESPONSE']._serialized_start=11251 + _globals['_GETSCRIPTRESPONSE']._serialized_end=11330 + _globals['_GETATTRIBUTEVIBOOLEANREQUEST']._serialized_start=11333 + _globals['_GETATTRIBUTEVIBOOLEANREQUEST']._serialized_end=11473 + _globals['_GETATTRIBUTEVIBOOLEANRESPONSE']._serialized_start=11475 + _globals['_GETATTRIBUTEVIBOOLEANRESPONSE']._serialized_end=11537 + _globals['_GETATTRIBUTEVIINT32REQUEST']._serialized_start=11540 + _globals['_GETATTRIBUTEVIINT32REQUEST']._serialized_end=11678 + _globals['_GETATTRIBUTEVIINT32RESPONSE']._serialized_start=11680 + _globals['_GETATTRIBUTEVIINT32RESPONSE']._serialized_end=11740 + _globals['_GETATTRIBUTEVIINT64REQUEST']._serialized_start=11743 + _globals['_GETATTRIBUTEVIINT64REQUEST']._serialized_end=11881 + _globals['_GETATTRIBUTEVIINT64RESPONSE']._serialized_start=11883 + _globals['_GETATTRIBUTEVIINT64RESPONSE']._serialized_end=11943 + _globals['_GETATTRIBUTEVIREAL64REQUEST']._serialized_start=11946 + _globals['_GETATTRIBUTEVIREAL64REQUEST']._serialized_end=12085 + _globals['_GETATTRIBUTEVIREAL64RESPONSE']._serialized_start=12087 + _globals['_GETATTRIBUTEVIREAL64RESPONSE']._serialized_end=12148 + _globals['_GETATTRIBUTEVISESSIONREQUEST']._serialized_start=12151 + _globals['_GETATTRIBUTEVISESSIONREQUEST']._serialized_end=12291 + _globals['_GETATTRIBUTEVISESSIONRESPONSE']._serialized_start=12293 + _globals['_GETATTRIBUTEVISESSIONRESPONSE']._serialized_end=12379 + _globals['_GETATTRIBUTEVISTRINGREQUEST']._serialized_start=12382 + _globals['_GETATTRIBUTEVISTRINGREQUEST']._serialized_end=12521 + _globals['_GETATTRIBUTEVISTRINGRESPONSE']._serialized_start=12523 + _globals['_GETATTRIBUTEVISTRINGRESPONSE']._serialized_end=12584 + _globals['_GETCHANNELNAMEREQUEST']._serialized_start=12586 + _globals['_GETCHANNELNAMEREQUEST']._serialized_end=12660 + _globals['_GETCHANNELNAMERESPONSE']._serialized_start=12662 + _globals['_GETCHANNELNAMERESPONSE']._serialized_end=12716 + _globals['_GETDEEMBEDDINGSPARAMETERSREQUEST']._serialized_start=12718 + _globals['_GETDEEMBEDDINGSPARAMETERSREQUEST']._serialized_end=12788 + _globals['_GETDEEMBEDDINGSPARAMETERSRESPONSE']._serialized_start=12791 + _globals['_GETDEEMBEDDINGSPARAMETERSRESPONSE']._serialized_end=12951 + _globals['_GETERRORREQUEST']._serialized_start=12953 + _globals['_GETERRORREQUEST']._serialized_end=13006 + _globals['_GETERRORRESPONSE']._serialized_start=13008 + _globals['_GETERRORRESPONSE']._serialized_end=13089 + _globals['_GETEXTERNALCALIBRATIONLASTDATEANDTIMEREQUEST']._serialized_start=13091 + _globals['_GETEXTERNALCALIBRATIONLASTDATEANDTIMEREQUEST']._serialized_end=13173 + _globals['_GETEXTERNALCALIBRATIONLASTDATEANDTIMERESPONSE']._serialized_start=13176 + _globals['_GETEXTERNALCALIBRATIONLASTDATEANDTIMERESPONSE']._serialized_end=13327 + _globals['_GETMAXSETTABLEPOWERREQUEST']._serialized_start=13329 + _globals['_GETMAXSETTABLEPOWERREQUEST']._serialized_end=13393 + _globals['_GETMAXSETTABLEPOWERRESPONSE']._serialized_start=13395 + _globals['_GETMAXSETTABLEPOWERRESPONSE']._serialized_end=13455 + _globals['_GETSELFCALIBRATIONDATEANDTIMEREQUEST']._serialized_start=13458 + _globals['_GETSELFCALIBRATIONDATEANDTIMEREQUEST']._serialized_end=13608 + _globals['_GETSELFCALIBRATIONDATEANDTIMERESPONSE']._serialized_start=13611 + _globals['_GETSELFCALIBRATIONDATEANDTIMERESPONSE']._serialized_end=13754 + _globals['_GETSELFCALIBRATIONTEMPERATUREREQUEST']._serialized_start=13757 + _globals['_GETSELFCALIBRATIONTEMPERATUREREQUEST']._serialized_end=13907 + _globals['_GETSELFCALIBRATIONTEMPERATURERESPONSE']._serialized_start=13909 + _globals['_GETSELFCALIBRATIONTEMPERATURERESPONSE']._serialized_end=13985 + _globals['_GETTERMINALNAMEREQUEST']._serialized_start=13988 + _globals['_GETTERMINALNAMEREQUEST']._serialized_end=14256 + _globals['_GETTERMINALNAMERESPONSE']._serialized_start=14258 + _globals['_GETTERMINALNAMERESPONSE']._serialized_end=14322 + _globals['_GETUSERDATAREQUEST']._serialized_start=14324 + _globals['_GETUSERDATAREQUEST']._serialized_end=14400 + _globals['_GETUSERDATARESPONSE']._serialized_start=14402 + _globals['_GETUSERDATARESPONSE']._serialized_end=14479 + _globals['_GETWAVEFORMBURSTSTARTLOCATIONSREQUEST']._serialized_start=14481 + _globals['_GETWAVEFORMBURSTSTARTLOCATIONSREQUEST']._serialized_end=14578 + _globals['_GETWAVEFORMBURSTSTARTLOCATIONSRESPONSE']._serialized_start=14580 + _globals['_GETWAVEFORMBURSTSTARTLOCATIONSRESPONSE']._serialized_end=14678 + _globals['_GETWAVEFORMBURSTSTOPLOCATIONSREQUEST']._serialized_start=14680 + _globals['_GETWAVEFORMBURSTSTOPLOCATIONSREQUEST']._serialized_end=14776 + _globals['_GETWAVEFORMBURSTSTOPLOCATIONSRESPONSE']._serialized_start=14778 + _globals['_GETWAVEFORMBURSTSTOPLOCATIONSRESPONSE']._serialized_end=14875 + _globals['_GETWAVEFORMMARKEREVENTLOCATIONSREQUEST']._serialized_start=14877 + _globals['_GETWAVEFORMMARKEREVENTLOCATIONSREQUEST']._serialized_end=14975 + _globals['_GETWAVEFORMMARKEREVENTLOCATIONSRESPONSE']._serialized_start=14977 + _globals['_GETWAVEFORMMARKEREVENTLOCATIONSRESPONSE']._serialized_end=15076 + _globals['_INITREQUEST']._serialized_start=15079 + _globals['_INITREQUEST']._serialized_end=15256 + _globals['_INITRESPONSE']._serialized_start=15259 + _globals['_INITRESPONSE']._serialized_end=15389 + _globals['_INITWITHOPTIONSREQUEST']._serialized_start=15392 + _globals['_INITWITHOPTIONSREQUEST']._serialized_end=15603 + _globals['_INITWITHOPTIONSRESPONSE']._serialized_start=15606 + _globals['_INITWITHOPTIONSRESPONSE']._serialized_end=15743 + _globals['_INITIATEREQUEST']._serialized_start=15745 + _globals['_INITIATEREQUEST']._serialized_end=15798 + _globals['_INITIATERESPONSE']._serialized_start=15800 + _globals['_INITIATERESPONSE']._serialized_end=15834 + _globals['_INVALIDATEALLATTRIBUTESREQUEST']._serialized_start=15836 + _globals['_INVALIDATEALLATTRIBUTESREQUEST']._serialized_end=15904 + _globals['_INVALIDATEALLATTRIBUTESRESPONSE']._serialized_start=15906 + _globals['_INVALIDATEALLATTRIBUTESRESPONSE']._serialized_end=15955 + _globals['_LOADCONFIGURATIONSFROMFILEREQUEST']._serialized_start=15957 + _globals['_LOADCONFIGURATIONSFROMFILEREQUEST']._serialized_end=16069 + _globals['_LOADCONFIGURATIONSFROMFILERESPONSE']._serialized_start=16071 + _globals['_LOADCONFIGURATIONSFROMFILERESPONSE']._serialized_end=16123 + _globals['_PERFORMPOWERSEARCHREQUEST']._serialized_start=16125 + _globals['_PERFORMPOWERSEARCHREQUEST']._serialized_end=16188 + _globals['_PERFORMPOWERSEARCHRESPONSE']._serialized_start=16190 + _globals['_PERFORMPOWERSEARCHRESPONSE']._serialized_end=16234 + _globals['_PERFORMTHERMALCORRECTIONREQUEST']._serialized_start=16236 + _globals['_PERFORMTHERMALCORRECTIONREQUEST']._serialized_end=16305 + _globals['_PERFORMTHERMALCORRECTIONRESPONSE']._serialized_start=16307 + _globals['_PERFORMTHERMALCORRECTIONRESPONSE']._serialized_end=16357 + _globals['_QUERYARBWAVEFORMCAPABILITIESREQUEST']._serialized_start=16359 + _globals['_QUERYARBWAVEFORMCAPABILITIESREQUEST']._serialized_end=16432 + _globals['_QUERYARBWAVEFORMCAPABILITIESRESPONSE']._serialized_start=16435 + _globals['_QUERYARBWAVEFORMCAPABILITIESRESPONSE']._serialized_end=16599 + _globals['_READANDDOWNLOADWAVEFORMFROMFILETDMSREQUEST']._serialized_start=16602 + _globals['_READANDDOWNLOADWAVEFORMFROMFILETDMSREQUEST']._serialized_end=16748 + _globals['_READANDDOWNLOADWAVEFORMFROMFILETDMSRESPONSE']._serialized_start=16750 + _globals['_READANDDOWNLOADWAVEFORMFROMFILETDMSRESPONSE']._serialized_end=16811 + _globals['_RESETREQUEST']._serialized_start=16813 + _globals['_RESETREQUEST']._serialized_end=16863 + _globals['_RESETRESPONSE']._serialized_start=16865 + _globals['_RESETRESPONSE']._serialized_end=16896 + _globals['_RESETATTRIBUTEREQUEST']._serialized_start=16899 + _globals['_RESETATTRIBUTEREQUEST']._serialized_end=17032 + _globals['_RESETATTRIBUTERESPONSE']._serialized_start=17034 + _globals['_RESETATTRIBUTERESPONSE']._serialized_end=17074 + _globals['_RESETDEVICEREQUEST']._serialized_start=17076 + _globals['_RESETDEVICEREQUEST']._serialized_end=17132 + _globals['_RESETDEVICERESPONSE']._serialized_start=17134 + _globals['_RESETDEVICERESPONSE']._serialized_end=17171 + _globals['_RESETWITHDEFAULTSREQUEST']._serialized_start=17173 + _globals['_RESETWITHDEFAULTSREQUEST']._serialized_end=17235 + _globals['_RESETWITHDEFAULTSRESPONSE']._serialized_start=17237 + _globals['_RESETWITHDEFAULTSRESPONSE']._serialized_end=17280 + _globals['_RESETWITHOPTIONSREQUEST']._serialized_start=17283 + _globals['_RESETWITHOPTIONSREQUEST']._serialized_end=17462 + _globals['_RESETWITHOPTIONSRESPONSE']._serialized_start=17464 + _globals['_RESETWITHOPTIONSRESPONSE']._serialized_end=17506 + _globals['_REVISIONQUERYREQUEST']._serialized_start=17508 + _globals['_REVISIONQUERYREQUEST']._serialized_end=17566 + _globals['_REVISIONQUERYRESPONSE']._serialized_start=17568 + _globals['_REVISIONQUERYRESPONSE']._serialized_end=17670 + _globals['_SAVECONFIGURATIONSTOFILEREQUEST']._serialized_start=17672 + _globals['_SAVECONFIGURATIONSTOFILEREQUEST']._serialized_end=17782 + _globals['_SAVECONFIGURATIONSTOFILERESPONSE']._serialized_start=17784 + _globals['_SAVECONFIGURATIONSTOFILERESPONSE']._serialized_end=17834 + _globals['_SELECTARBWAVEFORMREQUEST']._serialized_start=17836 + _globals['_SELECTARBWAVEFORMREQUEST']._serialized_end=17912 + _globals['_SELECTARBWAVEFORMRESPONSE']._serialized_start=17914 + _globals['_SELECTARBWAVEFORMRESPONSE']._serialized_end=17957 + _globals['_SELFCALREQUEST']._serialized_start=17959 + _globals['_SELFCALREQUEST']._serialized_end=18011 + _globals['_SELFCALRESPONSE']._serialized_start=18013 + _globals['_SELFCALRESPONSE']._serialized_end=18046 + _globals['_SELFCALIBRATERANGEREQUEST']._serialized_start=18049 + _globals['_SELFCALIBRATERANGEREQUEST']._serialized_end=18328 + _globals['_SELFCALIBRATERANGERESPONSE']._serialized_start=18330 + _globals['_SELFCALIBRATERANGERESPONSE']._serialized_end=18374 + _globals['_SELFTESTREQUEST']._serialized_start=18376 + _globals['_SELFTESTREQUEST']._serialized_end=18429 + _globals['_SELFTESTRESPONSE']._serialized_start=18431 + _globals['_SELFTESTRESPONSE']._serialized_end=18518 + _globals['_SENDSOFTWAREEDGETRIGGERREQUEST']._serialized_start=18521 + _globals['_SENDSOFTWAREEDGETRIGGERREQUEST']._serialized_end=18803 + _globals['_SENDSOFTWAREEDGETRIGGERRESPONSE']._serialized_start=18805 + _globals['_SENDSOFTWAREEDGETRIGGERRESPONSE']._serialized_end=18854 + _globals['_SETARBWAVEFORMNEXTWRITEPOSITIONREQUEST']._serialized_start=18857 + _globals['_SETARBWAVEFORMNEXTWRITEPOSITIONREQUEST']._serialized_end=19067 + _globals['_SETARBWAVEFORMNEXTWRITEPOSITIONRESPONSE']._serialized_start=19069 + _globals['_SETARBWAVEFORMNEXTWRITEPOSITIONRESPONSE']._serialized_end=19126 + _globals['_SETATTRIBUTEVIBOOLEANREQUEST']._serialized_start=19129 + _globals['_SETATTRIBUTEVIBOOLEANREQUEST']._serialized_end=19284 + _globals['_SETATTRIBUTEVIBOOLEANRESPONSE']._serialized_start=19286 + _globals['_SETATTRIBUTEVIBOOLEANRESPONSE']._serialized_end=19333 + _globals['_SETATTRIBUTEVIINT32REQUEST']._serialized_start=19336 + _globals['_SETATTRIBUTEVIINT32REQUEST']._serialized_end=19567 + _globals['_SETATTRIBUTEVIINT32RESPONSE']._serialized_start=19569 + _globals['_SETATTRIBUTEVIINT32RESPONSE']._serialized_end=19614 + _globals['_SETATTRIBUTEVIINT64REQUEST']._serialized_start=19617 + _globals['_SETATTRIBUTEVIINT64REQUEST']._serialized_end=19774 + _globals['_SETATTRIBUTEVIINT64RESPONSE']._serialized_start=19776 + _globals['_SETATTRIBUTEVIINT64RESPONSE']._serialized_end=19821 + _globals['_SETATTRIBUTEVIREAL64REQUEST']._serialized_start=19824 + _globals['_SETATTRIBUTEVIREAL64REQUEST']._serialized_end=20057 + _globals['_SETATTRIBUTEVIREAL64RESPONSE']._serialized_start=20059 + _globals['_SETATTRIBUTEVIREAL64RESPONSE']._serialized_end=20105 + _globals['_SETATTRIBUTEVISESSIONREQUEST']._serialized_start=20108 + _globals['_SETATTRIBUTEVISESSIONREQUEST']._serialized_end=20287 + _globals['_SETATTRIBUTEVISESSIONRESPONSE']._serialized_start=20289 + _globals['_SETATTRIBUTEVISESSIONRESPONSE']._serialized_end=20336 + _globals['_SETATTRIBUTEVISTRINGREQUEST']._serialized_start=20339 + _globals['_SETATTRIBUTEVISTRINGREQUEST']._serialized_end=20585 + _globals['_SETATTRIBUTEVISTRINGRESPONSE']._serialized_start=20587 + _globals['_SETATTRIBUTEVISTRINGRESPONSE']._serialized_end=20633 + _globals['_SETUSERDATAREQUEST']._serialized_start=20635 + _globals['_SETUSERDATAREQUEST']._serialized_end=20725 + _globals['_SETUSERDATARESPONSE']._serialized_start=20727 + _globals['_SETUSERDATARESPONSE']._serialized_end=20764 + _globals['_SETWAVEFORMBURSTSTARTLOCATIONSREQUEST']._serialized_start=20766 + _globals['_SETWAVEFORMBURSTSTARTLOCATIONSREQUEST']._serialized_end=20882 + _globals['_SETWAVEFORMBURSTSTARTLOCATIONSRESPONSE']._serialized_start=20884 + _globals['_SETWAVEFORMBURSTSTARTLOCATIONSRESPONSE']._serialized_end=20940 + _globals['_SETWAVEFORMBURSTSTOPLOCATIONSREQUEST']._serialized_start=20942 + _globals['_SETWAVEFORMBURSTSTOPLOCATIONSREQUEST']._serialized_end=21057 + _globals['_SETWAVEFORMBURSTSTOPLOCATIONSRESPONSE']._serialized_start=21059 + _globals['_SETWAVEFORMBURSTSTOPLOCATIONSRESPONSE']._serialized_end=21114 + _globals['_SETWAVEFORMMARKEREVENTLOCATIONSREQUEST']._serialized_start=21116 + _globals['_SETWAVEFORMMARKEREVENTLOCATIONSREQUEST']._serialized_end=21233 + _globals['_SETWAVEFORMMARKEREVENTLOCATIONSRESPONSE']._serialized_start=21235 + _globals['_SETWAVEFORMMARKEREVENTLOCATIONSRESPONSE']._serialized_end=21292 + _globals['_WAITUNTILSETTLEDREQUEST']._serialized_start=21294 + _globals['_WAITUNTILSETTLEDREQUEST']._serialized_end=21386 + _globals['_WAITUNTILSETTLEDRESPONSE']._serialized_start=21388 + _globals['_WAITUNTILSETTLEDRESPONSE']._serialized_end=21430 + _globals['_WRITEARBWAVEFORMREQUEST']._serialized_start=21433 + _globals['_WRITEARBWAVEFORMREQUEST']._serialized_end=21576 + _globals['_WRITEARBWAVEFORMRESPONSE']._serialized_start=21578 + _globals['_WRITEARBWAVEFORMRESPONSE']._serialized_end=21620 + _globals['_WRITEARBWAVEFORMCOMPLEXF32REQUEST']._serialized_start=21623 + _globals['_WRITEARBWAVEFORMCOMPLEXF32REQUEST']._serialized_end=21797 + _globals['_WRITEARBWAVEFORMCOMPLEXF32RESPONSE']._serialized_start=21799 + _globals['_WRITEARBWAVEFORMCOMPLEXF32RESPONSE']._serialized_end=21851 + _globals['_WRITEARBWAVEFORMCOMPLEXF64REQUEST']._serialized_start=21854 + _globals['_WRITEARBWAVEFORMCOMPLEXF64REQUEST']._serialized_end=22025 + _globals['_WRITEARBWAVEFORMCOMPLEXF64RESPONSE']._serialized_start=22027 + _globals['_WRITEARBWAVEFORMCOMPLEXF64RESPONSE']._serialized_end=22079 + _globals['_WRITEARBWAVEFORMCOMPLEXI16REQUEST']._serialized_start=22082 + _globals['_WRITEARBWAVEFORMCOMPLEXI16REQUEST']._serialized_end=22223 + _globals['_WRITEARBWAVEFORMCOMPLEXI16RESPONSE']._serialized_start=22225 + _globals['_WRITEARBWAVEFORMCOMPLEXI16RESPONSE']._serialized_end=22277 + _globals['_WRITEARBWAVEFORMF32REQUEST']._serialized_start=22280 + _globals['_WRITEARBWAVEFORMF32REQUEST']._serialized_end=22426 + _globals['_WRITEARBWAVEFORMF32RESPONSE']._serialized_start=22428 + _globals['_WRITEARBWAVEFORMF32RESPONSE']._serialized_end=22473 + _globals['_WRITESCRIPTREQUEST']._serialized_start=22475 + _globals['_WRITESCRIPTREQUEST']._serialized_end=22547 + _globals['_WRITESCRIPTRESPONSE']._serialized_start=22549 + _globals['_WRITESCRIPTRESPONSE']._serialized_end=22586 + _globals['_NIRFSG']._serialized_start=52581 + _globals['_NIRFSG']._serialized_end=65556 +# @@protoc_insertion_point(module_scope) diff --git a/generated/nirfsg/nirfsg/nirfsg_pb2_grpc.py b/generated/nirfsg/nirfsg/nirfsg_pb2_grpc.py new file mode 100644 index 000000000..0fa255c61 --- /dev/null +++ b/generated/nirfsg/nirfsg/nirfsg_pb2_grpc.py @@ -0,0 +1,3762 @@ +# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! +"""Client and server classes corresponding to protobuf-defined services.""" +import grpc + +from . import nirfsg_pb2 as nirfsg__pb2 + + +class NiRFSGStub(object): + """Missing associated documentation comment in .proto file.""" + + def __init__(self, channel): + """Constructor. + + Args: + channel: A grpc.Channel. + """ + self.Abort = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/Abort', + request_serializer=nirfsg__pb2.AbortRequest.SerializeToString, + response_deserializer=nirfsg__pb2.AbortResponse.FromString, + ) + self.AllocateArbWaveform = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/AllocateArbWaveform', + request_serializer=nirfsg__pb2.AllocateArbWaveformRequest.SerializeToString, + response_deserializer=nirfsg__pb2.AllocateArbWaveformResponse.FromString, + ) + self.CheckAttributeViBoolean = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/CheckAttributeViBoolean', + request_serializer=nirfsg__pb2.CheckAttributeViBooleanRequest.SerializeToString, + response_deserializer=nirfsg__pb2.CheckAttributeViBooleanResponse.FromString, + ) + self.CheckAttributeViInt32 = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/CheckAttributeViInt32', + request_serializer=nirfsg__pb2.CheckAttributeViInt32Request.SerializeToString, + response_deserializer=nirfsg__pb2.CheckAttributeViInt32Response.FromString, + ) + self.CheckAttributeViInt64 = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/CheckAttributeViInt64', + request_serializer=nirfsg__pb2.CheckAttributeViInt64Request.SerializeToString, + response_deserializer=nirfsg__pb2.CheckAttributeViInt64Response.FromString, + ) + self.CheckAttributeViReal64 = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/CheckAttributeViReal64', + request_serializer=nirfsg__pb2.CheckAttributeViReal64Request.SerializeToString, + response_deserializer=nirfsg__pb2.CheckAttributeViReal64Response.FromString, + ) + self.CheckAttributeViSession = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/CheckAttributeViSession', + request_serializer=nirfsg__pb2.CheckAttributeViSessionRequest.SerializeToString, + response_deserializer=nirfsg__pb2.CheckAttributeViSessionResponse.FromString, + ) + self.CheckAttributeViString = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/CheckAttributeViString', + request_serializer=nirfsg__pb2.CheckAttributeViStringRequest.SerializeToString, + response_deserializer=nirfsg__pb2.CheckAttributeViStringResponse.FromString, + ) + self.CheckGenerationStatus = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/CheckGenerationStatus', + request_serializer=nirfsg__pb2.CheckGenerationStatusRequest.SerializeToString, + response_deserializer=nirfsg__pb2.CheckGenerationStatusResponse.FromString, + ) + self.CheckIfConfigurationListExists = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/CheckIfConfigurationListExists', + request_serializer=nirfsg__pb2.CheckIfConfigurationListExistsRequest.SerializeToString, + response_deserializer=nirfsg__pb2.CheckIfConfigurationListExistsResponse.FromString, + ) + self.CheckIfScriptExists = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/CheckIfScriptExists', + request_serializer=nirfsg__pb2.CheckIfScriptExistsRequest.SerializeToString, + response_deserializer=nirfsg__pb2.CheckIfScriptExistsResponse.FromString, + ) + self.CheckIfWaveformExists = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/CheckIfWaveformExists', + request_serializer=nirfsg__pb2.CheckIfWaveformExistsRequest.SerializeToString, + response_deserializer=nirfsg__pb2.CheckIfWaveformExistsResponse.FromString, + ) + self.ClearAllArbWaveforms = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/ClearAllArbWaveforms', + request_serializer=nirfsg__pb2.ClearAllArbWaveformsRequest.SerializeToString, + response_deserializer=nirfsg__pb2.ClearAllArbWaveformsResponse.FromString, + ) + self.ClearArbWaveform = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/ClearArbWaveform', + request_serializer=nirfsg__pb2.ClearArbWaveformRequest.SerializeToString, + response_deserializer=nirfsg__pb2.ClearArbWaveformResponse.FromString, + ) + self.ClearError = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/ClearError', + request_serializer=nirfsg__pb2.ClearErrorRequest.SerializeToString, + response_deserializer=nirfsg__pb2.ClearErrorResponse.FromString, + ) + self.ClearSelfCalibrateRange = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/ClearSelfCalibrateRange', + request_serializer=nirfsg__pb2.ClearSelfCalibrateRangeRequest.SerializeToString, + response_deserializer=nirfsg__pb2.ClearSelfCalibrateRangeResponse.FromString, + ) + self.Close = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/Close', + request_serializer=nirfsg__pb2.CloseRequest.SerializeToString, + response_deserializer=nirfsg__pb2.CloseResponse.FromString, + ) + self.Commit = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/Commit', + request_serializer=nirfsg__pb2.CommitRequest.SerializeToString, + response_deserializer=nirfsg__pb2.CommitResponse.FromString, + ) + self.ConfigureDeembeddingTableInterpolationLinear = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/ConfigureDeembeddingTableInterpolationLinear', + request_serializer=nirfsg__pb2.ConfigureDeembeddingTableInterpolationLinearRequest.SerializeToString, + response_deserializer=nirfsg__pb2.ConfigureDeembeddingTableInterpolationLinearResponse.FromString, + ) + self.ConfigureDeembeddingTableInterpolationNearest = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/ConfigureDeembeddingTableInterpolationNearest', + request_serializer=nirfsg__pb2.ConfigureDeembeddingTableInterpolationNearestRequest.SerializeToString, + response_deserializer=nirfsg__pb2.ConfigureDeembeddingTableInterpolationNearestResponse.FromString, + ) + self.ConfigureDeembeddingTableInterpolationSpline = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/ConfigureDeembeddingTableInterpolationSpline', + request_serializer=nirfsg__pb2.ConfigureDeembeddingTableInterpolationSplineRequest.SerializeToString, + response_deserializer=nirfsg__pb2.ConfigureDeembeddingTableInterpolationSplineResponse.FromString, + ) + self.ConfigureDigitalEdgeConfigurationListStepTrigger = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/ConfigureDigitalEdgeConfigurationListStepTrigger', + request_serializer=nirfsg__pb2.ConfigureDigitalEdgeConfigurationListStepTriggerRequest.SerializeToString, + response_deserializer=nirfsg__pb2.ConfigureDigitalEdgeConfigurationListStepTriggerResponse.FromString, + ) + self.ConfigureDigitalEdgeScriptTrigger = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/ConfigureDigitalEdgeScriptTrigger', + request_serializer=nirfsg__pb2.ConfigureDigitalEdgeScriptTriggerRequest.SerializeToString, + response_deserializer=nirfsg__pb2.ConfigureDigitalEdgeScriptTriggerResponse.FromString, + ) + self.ConfigureDigitalEdgeStartTrigger = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/ConfigureDigitalEdgeStartTrigger', + request_serializer=nirfsg__pb2.ConfigureDigitalEdgeStartTriggerRequest.SerializeToString, + response_deserializer=nirfsg__pb2.ConfigureDigitalEdgeStartTriggerResponse.FromString, + ) + self.ConfigureDigitalLevelScriptTrigger = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/ConfigureDigitalLevelScriptTrigger', + request_serializer=nirfsg__pb2.ConfigureDigitalLevelScriptTriggerRequest.SerializeToString, + response_deserializer=nirfsg__pb2.ConfigureDigitalLevelScriptTriggerResponse.FromString, + ) + self.ConfigureDigitalModulationUserDefinedWaveform = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/ConfigureDigitalModulationUserDefinedWaveform', + request_serializer=nirfsg__pb2.ConfigureDigitalModulationUserDefinedWaveformRequest.SerializeToString, + response_deserializer=nirfsg__pb2.ConfigureDigitalModulationUserDefinedWaveformResponse.FromString, + ) + self.ConfigureGenerationMode = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/ConfigureGenerationMode', + request_serializer=nirfsg__pb2.ConfigureGenerationModeRequest.SerializeToString, + response_deserializer=nirfsg__pb2.ConfigureGenerationModeResponse.FromString, + ) + self.ConfigureOutputEnabled = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/ConfigureOutputEnabled', + request_serializer=nirfsg__pb2.ConfigureOutputEnabledRequest.SerializeToString, + response_deserializer=nirfsg__pb2.ConfigureOutputEnabledResponse.FromString, + ) + self.ConfigureP2PEndpointFullnessStartTrigger = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/ConfigureP2PEndpointFullnessStartTrigger', + request_serializer=nirfsg__pb2.ConfigureP2PEndpointFullnessStartTriggerRequest.SerializeToString, + response_deserializer=nirfsg__pb2.ConfigureP2PEndpointFullnessStartTriggerResponse.FromString, + ) + self.ConfigurePXIChassisClk10 = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/ConfigurePXIChassisClk10', + request_serializer=nirfsg__pb2.ConfigurePXIChassisClk10Request.SerializeToString, + response_deserializer=nirfsg__pb2.ConfigurePXIChassisClk10Response.FromString, + ) + self.ConfigurePowerLevelType = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/ConfigurePowerLevelType', + request_serializer=nirfsg__pb2.ConfigurePowerLevelTypeRequest.SerializeToString, + response_deserializer=nirfsg__pb2.ConfigurePowerLevelTypeResponse.FromString, + ) + self.ConfigureRF = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/ConfigureRF', + request_serializer=nirfsg__pb2.ConfigureRFRequest.SerializeToString, + response_deserializer=nirfsg__pb2.ConfigureRFResponse.FromString, + ) + self.ConfigureRefClock = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/ConfigureRefClock', + request_serializer=nirfsg__pb2.ConfigureRefClockRequest.SerializeToString, + response_deserializer=nirfsg__pb2.ConfigureRefClockResponse.FromString, + ) + self.ConfigureSignalBandwidth = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/ConfigureSignalBandwidth', + request_serializer=nirfsg__pb2.ConfigureSignalBandwidthRequest.SerializeToString, + response_deserializer=nirfsg__pb2.ConfigureSignalBandwidthResponse.FromString, + ) + self.ConfigureSoftwareScriptTrigger = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/ConfigureSoftwareScriptTrigger', + request_serializer=nirfsg__pb2.ConfigureSoftwareScriptTriggerRequest.SerializeToString, + response_deserializer=nirfsg__pb2.ConfigureSoftwareScriptTriggerResponse.FromString, + ) + self.ConfigureSoftwareStartTrigger = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/ConfigureSoftwareStartTrigger', + request_serializer=nirfsg__pb2.ConfigureSoftwareStartTriggerRequest.SerializeToString, + response_deserializer=nirfsg__pb2.ConfigureSoftwareStartTriggerResponse.FromString, + ) + self.ConfigureUpconverterPLLSettlingTime = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/ConfigureUpconverterPLLSettlingTime', + request_serializer=nirfsg__pb2.ConfigureUpconverterPLLSettlingTimeRequest.SerializeToString, + response_deserializer=nirfsg__pb2.ConfigureUpconverterPLLSettlingTimeResponse.FromString, + ) + self.CreateConfigurationList = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/CreateConfigurationList', + request_serializer=nirfsg__pb2.CreateConfigurationListRequest.SerializeToString, + response_deserializer=nirfsg__pb2.CreateConfigurationListResponse.FromString, + ) + self.CreateConfigurationListStep = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/CreateConfigurationListStep', + request_serializer=nirfsg__pb2.CreateConfigurationListStepRequest.SerializeToString, + response_deserializer=nirfsg__pb2.CreateConfigurationListStepResponse.FromString, + ) + self.CreateDeembeddingSparameterTableArray = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/CreateDeembeddingSparameterTableArray', + request_serializer=nirfsg__pb2.CreateDeembeddingSparameterTableArrayRequest.SerializeToString, + response_deserializer=nirfsg__pb2.CreateDeembeddingSparameterTableArrayResponse.FromString, + ) + self.CreateDeembeddingSparameterTableS2PFile = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/CreateDeembeddingSparameterTableS2PFile', + request_serializer=nirfsg__pb2.CreateDeembeddingSparameterTableS2PFileRequest.SerializeToString, + response_deserializer=nirfsg__pb2.CreateDeembeddingSparameterTableS2PFileResponse.FromString, + ) + self.DeleteAllDeembeddingTables = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/DeleteAllDeembeddingTables', + request_serializer=nirfsg__pb2.DeleteAllDeembeddingTablesRequest.SerializeToString, + response_deserializer=nirfsg__pb2.DeleteAllDeembeddingTablesResponse.FromString, + ) + self.DeleteConfigurationList = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/DeleteConfigurationList', + request_serializer=nirfsg__pb2.DeleteConfigurationListRequest.SerializeToString, + response_deserializer=nirfsg__pb2.DeleteConfigurationListResponse.FromString, + ) + self.DeleteDeembeddingTable = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/DeleteDeembeddingTable', + request_serializer=nirfsg__pb2.DeleteDeembeddingTableRequest.SerializeToString, + response_deserializer=nirfsg__pb2.DeleteDeembeddingTableResponse.FromString, + ) + self.DeleteScript = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/DeleteScript', + request_serializer=nirfsg__pb2.DeleteScriptRequest.SerializeToString, + response_deserializer=nirfsg__pb2.DeleteScriptResponse.FromString, + ) + self.Disable = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/Disable', + request_serializer=nirfsg__pb2.DisableRequest.SerializeToString, + response_deserializer=nirfsg__pb2.DisableResponse.FromString, + ) + self.DisableAllModulation = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/DisableAllModulation', + request_serializer=nirfsg__pb2.DisableAllModulationRequest.SerializeToString, + response_deserializer=nirfsg__pb2.DisableAllModulationResponse.FromString, + ) + self.DisableConfigurationListStepTrigger = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/DisableConfigurationListStepTrigger', + request_serializer=nirfsg__pb2.DisableConfigurationListStepTriggerRequest.SerializeToString, + response_deserializer=nirfsg__pb2.DisableConfigurationListStepTriggerResponse.FromString, + ) + self.DisableScriptTrigger = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/DisableScriptTrigger', + request_serializer=nirfsg__pb2.DisableScriptTriggerRequest.SerializeToString, + response_deserializer=nirfsg__pb2.DisableScriptTriggerResponse.FromString, + ) + self.DisableStartTrigger = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/DisableStartTrigger', + request_serializer=nirfsg__pb2.DisableStartTriggerRequest.SerializeToString, + response_deserializer=nirfsg__pb2.DisableStartTriggerResponse.FromString, + ) + self.ErrorMessage = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/ErrorMessage', + request_serializer=nirfsg__pb2.ErrorMessageRequest.SerializeToString, + response_deserializer=nirfsg__pb2.ErrorMessageResponse.FromString, + ) + self.ErrorQuery = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/ErrorQuery', + request_serializer=nirfsg__pb2.ErrorQueryRequest.SerializeToString, + response_deserializer=nirfsg__pb2.ErrorQueryResponse.FromString, + ) + self.ExportSignal = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/ExportSignal', + request_serializer=nirfsg__pb2.ExportSignalRequest.SerializeToString, + response_deserializer=nirfsg__pb2.ExportSignalResponse.FromString, + ) + self.GetAllNamedWaveformNames = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/GetAllNamedWaveformNames', + request_serializer=nirfsg__pb2.GetAllNamedWaveformNamesRequest.SerializeToString, + response_deserializer=nirfsg__pb2.GetAllNamedWaveformNamesResponse.FromString, + ) + self.GetAllScriptNames = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/GetAllScriptNames', + request_serializer=nirfsg__pb2.GetAllScriptNamesRequest.SerializeToString, + response_deserializer=nirfsg__pb2.GetAllScriptNamesResponse.FromString, + ) + self.GetScript = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/GetScript', + request_serializer=nirfsg__pb2.GetScriptRequest.SerializeToString, + response_deserializer=nirfsg__pb2.GetScriptResponse.FromString, + ) + self.GetAttributeViBoolean = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/GetAttributeViBoolean', + request_serializer=nirfsg__pb2.GetAttributeViBooleanRequest.SerializeToString, + response_deserializer=nirfsg__pb2.GetAttributeViBooleanResponse.FromString, + ) + self.GetAttributeViInt32 = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/GetAttributeViInt32', + request_serializer=nirfsg__pb2.GetAttributeViInt32Request.SerializeToString, + response_deserializer=nirfsg__pb2.GetAttributeViInt32Response.FromString, + ) + self.GetAttributeViInt64 = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/GetAttributeViInt64', + request_serializer=nirfsg__pb2.GetAttributeViInt64Request.SerializeToString, + response_deserializer=nirfsg__pb2.GetAttributeViInt64Response.FromString, + ) + self.GetAttributeViReal64 = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/GetAttributeViReal64', + request_serializer=nirfsg__pb2.GetAttributeViReal64Request.SerializeToString, + response_deserializer=nirfsg__pb2.GetAttributeViReal64Response.FromString, + ) + self.GetAttributeViSession = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/GetAttributeViSession', + request_serializer=nirfsg__pb2.GetAttributeViSessionRequest.SerializeToString, + response_deserializer=nirfsg__pb2.GetAttributeViSessionResponse.FromString, + ) + self.GetAttributeViString = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/GetAttributeViString', + request_serializer=nirfsg__pb2.GetAttributeViStringRequest.SerializeToString, + response_deserializer=nirfsg__pb2.GetAttributeViStringResponse.FromString, + ) + self.GetChannelName = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/GetChannelName', + request_serializer=nirfsg__pb2.GetChannelNameRequest.SerializeToString, + response_deserializer=nirfsg__pb2.GetChannelNameResponse.FromString, + ) + self.GetDeembeddingSparameters = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/GetDeembeddingSparameters', + request_serializer=nirfsg__pb2.GetDeembeddingSparametersRequest.SerializeToString, + response_deserializer=nirfsg__pb2.GetDeembeddingSparametersResponse.FromString, + ) + self.GetError = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/GetError', + request_serializer=nirfsg__pb2.GetErrorRequest.SerializeToString, + response_deserializer=nirfsg__pb2.GetErrorResponse.FromString, + ) + self.GetExternalCalibrationLastDateAndTime = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/GetExternalCalibrationLastDateAndTime', + request_serializer=nirfsg__pb2.GetExternalCalibrationLastDateAndTimeRequest.SerializeToString, + response_deserializer=nirfsg__pb2.GetExternalCalibrationLastDateAndTimeResponse.FromString, + ) + self.GetMaxSettablePower = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/GetMaxSettablePower', + request_serializer=nirfsg__pb2.GetMaxSettablePowerRequest.SerializeToString, + response_deserializer=nirfsg__pb2.GetMaxSettablePowerResponse.FromString, + ) + self.GetSelfCalibrationDateAndTime = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/GetSelfCalibrationDateAndTime', + request_serializer=nirfsg__pb2.GetSelfCalibrationDateAndTimeRequest.SerializeToString, + response_deserializer=nirfsg__pb2.GetSelfCalibrationDateAndTimeResponse.FromString, + ) + self.GetSelfCalibrationTemperature = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/GetSelfCalibrationTemperature', + request_serializer=nirfsg__pb2.GetSelfCalibrationTemperatureRequest.SerializeToString, + response_deserializer=nirfsg__pb2.GetSelfCalibrationTemperatureResponse.FromString, + ) + self.GetTerminalName = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/GetTerminalName', + request_serializer=nirfsg__pb2.GetTerminalNameRequest.SerializeToString, + response_deserializer=nirfsg__pb2.GetTerminalNameResponse.FromString, + ) + self.GetUserData = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/GetUserData', + request_serializer=nirfsg__pb2.GetUserDataRequest.SerializeToString, + response_deserializer=nirfsg__pb2.GetUserDataResponse.FromString, + ) + self.GetWaveformBurstStartLocations = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/GetWaveformBurstStartLocations', + request_serializer=nirfsg__pb2.GetWaveformBurstStartLocationsRequest.SerializeToString, + response_deserializer=nirfsg__pb2.GetWaveformBurstStartLocationsResponse.FromString, + ) + self.GetWaveformBurstStopLocations = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/GetWaveformBurstStopLocations', + request_serializer=nirfsg__pb2.GetWaveformBurstStopLocationsRequest.SerializeToString, + response_deserializer=nirfsg__pb2.GetWaveformBurstStopLocationsResponse.FromString, + ) + self.GetWaveformMarkerEventLocations = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/GetWaveformMarkerEventLocations', + request_serializer=nirfsg__pb2.GetWaveformMarkerEventLocationsRequest.SerializeToString, + response_deserializer=nirfsg__pb2.GetWaveformMarkerEventLocationsResponse.FromString, + ) + self.Init = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/Init', + request_serializer=nirfsg__pb2.InitRequest.SerializeToString, + response_deserializer=nirfsg__pb2.InitResponse.FromString, + ) + self.InitWithOptions = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/InitWithOptions', + request_serializer=nirfsg__pb2.InitWithOptionsRequest.SerializeToString, + response_deserializer=nirfsg__pb2.InitWithOptionsResponse.FromString, + ) + self.Initiate = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/Initiate', + request_serializer=nirfsg__pb2.InitiateRequest.SerializeToString, + response_deserializer=nirfsg__pb2.InitiateResponse.FromString, + ) + self.InvalidateAllAttributes = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/InvalidateAllAttributes', + request_serializer=nirfsg__pb2.InvalidateAllAttributesRequest.SerializeToString, + response_deserializer=nirfsg__pb2.InvalidateAllAttributesResponse.FromString, + ) + self.LoadConfigurationsFromFile = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/LoadConfigurationsFromFile', + request_serializer=nirfsg__pb2.LoadConfigurationsFromFileRequest.SerializeToString, + response_deserializer=nirfsg__pb2.LoadConfigurationsFromFileResponse.FromString, + ) + self.PerformPowerSearch = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/PerformPowerSearch', + request_serializer=nirfsg__pb2.PerformPowerSearchRequest.SerializeToString, + response_deserializer=nirfsg__pb2.PerformPowerSearchResponse.FromString, + ) + self.PerformThermalCorrection = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/PerformThermalCorrection', + request_serializer=nirfsg__pb2.PerformThermalCorrectionRequest.SerializeToString, + response_deserializer=nirfsg__pb2.PerformThermalCorrectionResponse.FromString, + ) + self.QueryArbWaveformCapabilities = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/QueryArbWaveformCapabilities', + request_serializer=nirfsg__pb2.QueryArbWaveformCapabilitiesRequest.SerializeToString, + response_deserializer=nirfsg__pb2.QueryArbWaveformCapabilitiesResponse.FromString, + ) + self.ReadAndDownloadWaveformFromFileTDMS = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/ReadAndDownloadWaveformFromFileTDMS', + request_serializer=nirfsg__pb2.ReadAndDownloadWaveformFromFileTDMSRequest.SerializeToString, + response_deserializer=nirfsg__pb2.ReadAndDownloadWaveformFromFileTDMSResponse.FromString, + ) + self.Reset = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/Reset', + request_serializer=nirfsg__pb2.ResetRequest.SerializeToString, + response_deserializer=nirfsg__pb2.ResetResponse.FromString, + ) + self.ResetAttribute = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/ResetAttribute', + request_serializer=nirfsg__pb2.ResetAttributeRequest.SerializeToString, + response_deserializer=nirfsg__pb2.ResetAttributeResponse.FromString, + ) + self.ResetDevice = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/ResetDevice', + request_serializer=nirfsg__pb2.ResetDeviceRequest.SerializeToString, + response_deserializer=nirfsg__pb2.ResetDeviceResponse.FromString, + ) + self.ResetWithDefaults = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/ResetWithDefaults', + request_serializer=nirfsg__pb2.ResetWithDefaultsRequest.SerializeToString, + response_deserializer=nirfsg__pb2.ResetWithDefaultsResponse.FromString, + ) + self.ResetWithOptions = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/ResetWithOptions', + request_serializer=nirfsg__pb2.ResetWithOptionsRequest.SerializeToString, + response_deserializer=nirfsg__pb2.ResetWithOptionsResponse.FromString, + ) + self.RevisionQuery = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/RevisionQuery', + request_serializer=nirfsg__pb2.RevisionQueryRequest.SerializeToString, + response_deserializer=nirfsg__pb2.RevisionQueryResponse.FromString, + ) + self.SaveConfigurationsToFile = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/SaveConfigurationsToFile', + request_serializer=nirfsg__pb2.SaveConfigurationsToFileRequest.SerializeToString, + response_deserializer=nirfsg__pb2.SaveConfigurationsToFileResponse.FromString, + ) + self.SelectArbWaveform = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/SelectArbWaveform', + request_serializer=nirfsg__pb2.SelectArbWaveformRequest.SerializeToString, + response_deserializer=nirfsg__pb2.SelectArbWaveformResponse.FromString, + ) + self.SelfCal = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/SelfCal', + request_serializer=nirfsg__pb2.SelfCalRequest.SerializeToString, + response_deserializer=nirfsg__pb2.SelfCalResponse.FromString, + ) + self.SelfCalibrateRange = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/SelfCalibrateRange', + request_serializer=nirfsg__pb2.SelfCalibrateRangeRequest.SerializeToString, + response_deserializer=nirfsg__pb2.SelfCalibrateRangeResponse.FromString, + ) + self.SelfTest = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/SelfTest', + request_serializer=nirfsg__pb2.SelfTestRequest.SerializeToString, + response_deserializer=nirfsg__pb2.SelfTestResponse.FromString, + ) + self.SendSoftwareEdgeTrigger = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/SendSoftwareEdgeTrigger', + request_serializer=nirfsg__pb2.SendSoftwareEdgeTriggerRequest.SerializeToString, + response_deserializer=nirfsg__pb2.SendSoftwareEdgeTriggerResponse.FromString, + ) + self.SetArbWaveformNextWritePosition = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/SetArbWaveformNextWritePosition', + request_serializer=nirfsg__pb2.SetArbWaveformNextWritePositionRequest.SerializeToString, + response_deserializer=nirfsg__pb2.SetArbWaveformNextWritePositionResponse.FromString, + ) + self.SetAttributeViBoolean = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/SetAttributeViBoolean', + request_serializer=nirfsg__pb2.SetAttributeViBooleanRequest.SerializeToString, + response_deserializer=nirfsg__pb2.SetAttributeViBooleanResponse.FromString, + ) + self.SetAttributeViInt32 = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/SetAttributeViInt32', + request_serializer=nirfsg__pb2.SetAttributeViInt32Request.SerializeToString, + response_deserializer=nirfsg__pb2.SetAttributeViInt32Response.FromString, + ) + self.SetAttributeViInt64 = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/SetAttributeViInt64', + request_serializer=nirfsg__pb2.SetAttributeViInt64Request.SerializeToString, + response_deserializer=nirfsg__pb2.SetAttributeViInt64Response.FromString, + ) + self.SetAttributeViReal64 = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/SetAttributeViReal64', + request_serializer=nirfsg__pb2.SetAttributeViReal64Request.SerializeToString, + response_deserializer=nirfsg__pb2.SetAttributeViReal64Response.FromString, + ) + self.SetAttributeViSession = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/SetAttributeViSession', + request_serializer=nirfsg__pb2.SetAttributeViSessionRequest.SerializeToString, + response_deserializer=nirfsg__pb2.SetAttributeViSessionResponse.FromString, + ) + self.SetAttributeViString = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/SetAttributeViString', + request_serializer=nirfsg__pb2.SetAttributeViStringRequest.SerializeToString, + response_deserializer=nirfsg__pb2.SetAttributeViStringResponse.FromString, + ) + self.SetUserData = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/SetUserData', + request_serializer=nirfsg__pb2.SetUserDataRequest.SerializeToString, + response_deserializer=nirfsg__pb2.SetUserDataResponse.FromString, + ) + self.SetWaveformBurstStartLocations = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/SetWaveformBurstStartLocations', + request_serializer=nirfsg__pb2.SetWaveformBurstStartLocationsRequest.SerializeToString, + response_deserializer=nirfsg__pb2.SetWaveformBurstStartLocationsResponse.FromString, + ) + self.SetWaveformBurstStopLocations = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/SetWaveformBurstStopLocations', + request_serializer=nirfsg__pb2.SetWaveformBurstStopLocationsRequest.SerializeToString, + response_deserializer=nirfsg__pb2.SetWaveformBurstStopLocationsResponse.FromString, + ) + self.SetWaveformMarkerEventLocations = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/SetWaveformMarkerEventLocations', + request_serializer=nirfsg__pb2.SetWaveformMarkerEventLocationsRequest.SerializeToString, + response_deserializer=nirfsg__pb2.SetWaveformMarkerEventLocationsResponse.FromString, + ) + self.WaitUntilSettled = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/WaitUntilSettled', + request_serializer=nirfsg__pb2.WaitUntilSettledRequest.SerializeToString, + response_deserializer=nirfsg__pb2.WaitUntilSettledResponse.FromString, + ) + self.WriteArbWaveform = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/WriteArbWaveform', + request_serializer=nirfsg__pb2.WriteArbWaveformRequest.SerializeToString, + response_deserializer=nirfsg__pb2.WriteArbWaveformResponse.FromString, + ) + self.WriteArbWaveformComplexF32 = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/WriteArbWaveformComplexF32', + request_serializer=nirfsg__pb2.WriteArbWaveformComplexF32Request.SerializeToString, + response_deserializer=nirfsg__pb2.WriteArbWaveformComplexF32Response.FromString, + ) + self.WriteArbWaveformComplexF64 = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/WriteArbWaveformComplexF64', + request_serializer=nirfsg__pb2.WriteArbWaveformComplexF64Request.SerializeToString, + response_deserializer=nirfsg__pb2.WriteArbWaveformComplexF64Response.FromString, + ) + self.WriteArbWaveformComplexI16 = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/WriteArbWaveformComplexI16', + request_serializer=nirfsg__pb2.WriteArbWaveformComplexI16Request.SerializeToString, + response_deserializer=nirfsg__pb2.WriteArbWaveformComplexI16Response.FromString, + ) + self.WriteArbWaveformF32 = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/WriteArbWaveformF32', + request_serializer=nirfsg__pb2.WriteArbWaveformF32Request.SerializeToString, + response_deserializer=nirfsg__pb2.WriteArbWaveformF32Response.FromString, + ) + self.WriteScript = channel.unary_unary( + '/nirfsg_grpc.NiRFSG/WriteScript', + request_serializer=nirfsg__pb2.WriteScriptRequest.SerializeToString, + response_deserializer=nirfsg__pb2.WriteScriptResponse.FromString, + ) + + +class NiRFSGServicer(object): + """Missing associated documentation comment in .proto file.""" + + def Abort(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 AllocateArbWaveform(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 CheckAttributeViBoolean(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 CheckAttributeViInt32(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 CheckAttributeViInt64(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 CheckAttributeViReal64(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 CheckAttributeViSession(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 CheckAttributeViString(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 CheckGenerationStatus(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 CheckIfConfigurationListExists(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 CheckIfScriptExists(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 CheckIfWaveformExists(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 ClearAllArbWaveforms(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 ClearArbWaveform(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 ClearError(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 ClearSelfCalibrateRange(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 Close(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 Commit(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 ConfigureDeembeddingTableInterpolationLinear(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 ConfigureDeembeddingTableInterpolationNearest(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 ConfigureDeembeddingTableInterpolationSpline(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 ConfigureDigitalEdgeConfigurationListStepTrigger(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 ConfigureDigitalEdgeScriptTrigger(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 ConfigureDigitalEdgeStartTrigger(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 ConfigureDigitalLevelScriptTrigger(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 ConfigureDigitalModulationUserDefinedWaveform(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 ConfigureGenerationMode(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 ConfigureOutputEnabled(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 ConfigureP2PEndpointFullnessStartTrigger(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 ConfigurePXIChassisClk10(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 ConfigurePowerLevelType(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 ConfigureRF(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 ConfigureRefClock(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 ConfigureSignalBandwidth(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 ConfigureSoftwareScriptTrigger(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 ConfigureSoftwareStartTrigger(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 ConfigureUpconverterPLLSettlingTime(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 CreateConfigurationList(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 CreateConfigurationListStep(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 CreateDeembeddingSparameterTableArray(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 CreateDeembeddingSparameterTableS2PFile(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 DeleteAllDeembeddingTables(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 DeleteConfigurationList(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 DeleteDeembeddingTable(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 DeleteScript(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 Disable(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 DisableAllModulation(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 DisableConfigurationListStepTrigger(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 DisableScriptTrigger(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 DisableStartTrigger(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 ErrorMessage(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 ErrorQuery(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 ExportSignal(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 GetAllNamedWaveformNames(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 GetAllScriptNames(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 GetScript(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 GetAttributeViBoolean(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 GetAttributeViInt32(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 GetAttributeViInt64(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 GetAttributeViReal64(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 GetAttributeViSession(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 GetAttributeViString(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 GetChannelName(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 GetDeembeddingSparameters(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 GetError(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 GetExternalCalibrationLastDateAndTime(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 GetMaxSettablePower(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 GetSelfCalibrationDateAndTime(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 GetSelfCalibrationTemperature(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 GetTerminalName(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 GetUserData(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 GetWaveformBurstStartLocations(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 GetWaveformBurstStopLocations(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 GetWaveformMarkerEventLocations(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 Init(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 InitWithOptions(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 Initiate(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 InvalidateAllAttributes(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 LoadConfigurationsFromFile(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 PerformPowerSearch(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 PerformThermalCorrection(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 QueryArbWaveformCapabilities(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 ReadAndDownloadWaveformFromFileTDMS(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 Reset(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 ResetAttribute(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 ResetDevice(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 ResetWithDefaults(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 ResetWithOptions(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 RevisionQuery(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 SaveConfigurationsToFile(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 SelectArbWaveform(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 SelfCal(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 SelfCalibrateRange(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 SelfTest(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 SendSoftwareEdgeTrigger(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 SetArbWaveformNextWritePosition(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 SetAttributeViBoolean(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 SetAttributeViInt32(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 SetAttributeViInt64(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 SetAttributeViReal64(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 SetAttributeViSession(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 SetAttributeViString(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 SetUserData(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 SetWaveformBurstStartLocations(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 SetWaveformBurstStopLocations(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 SetWaveformMarkerEventLocations(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 WaitUntilSettled(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 WriteArbWaveform(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 WriteArbWaveformComplexF32(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 WriteArbWaveformComplexF64(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 WriteArbWaveformComplexI16(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 WriteArbWaveformF32(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 WriteScript(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_NiRFSGServicer_to_server(servicer, server): + rpc_method_handlers = { + 'Abort': grpc.unary_unary_rpc_method_handler( + servicer.Abort, + request_deserializer=nirfsg__pb2.AbortRequest.FromString, + response_serializer=nirfsg__pb2.AbortResponse.SerializeToString, + ), + 'AllocateArbWaveform': grpc.unary_unary_rpc_method_handler( + servicer.AllocateArbWaveform, + request_deserializer=nirfsg__pb2.AllocateArbWaveformRequest.FromString, + response_serializer=nirfsg__pb2.AllocateArbWaveformResponse.SerializeToString, + ), + 'CheckAttributeViBoolean': grpc.unary_unary_rpc_method_handler( + servicer.CheckAttributeViBoolean, + request_deserializer=nirfsg__pb2.CheckAttributeViBooleanRequest.FromString, + response_serializer=nirfsg__pb2.CheckAttributeViBooleanResponse.SerializeToString, + ), + 'CheckAttributeViInt32': grpc.unary_unary_rpc_method_handler( + servicer.CheckAttributeViInt32, + request_deserializer=nirfsg__pb2.CheckAttributeViInt32Request.FromString, + response_serializer=nirfsg__pb2.CheckAttributeViInt32Response.SerializeToString, + ), + 'CheckAttributeViInt64': grpc.unary_unary_rpc_method_handler( + servicer.CheckAttributeViInt64, + request_deserializer=nirfsg__pb2.CheckAttributeViInt64Request.FromString, + response_serializer=nirfsg__pb2.CheckAttributeViInt64Response.SerializeToString, + ), + 'CheckAttributeViReal64': grpc.unary_unary_rpc_method_handler( + servicer.CheckAttributeViReal64, + request_deserializer=nirfsg__pb2.CheckAttributeViReal64Request.FromString, + response_serializer=nirfsg__pb2.CheckAttributeViReal64Response.SerializeToString, + ), + 'CheckAttributeViSession': grpc.unary_unary_rpc_method_handler( + servicer.CheckAttributeViSession, + request_deserializer=nirfsg__pb2.CheckAttributeViSessionRequest.FromString, + response_serializer=nirfsg__pb2.CheckAttributeViSessionResponse.SerializeToString, + ), + 'CheckAttributeViString': grpc.unary_unary_rpc_method_handler( + servicer.CheckAttributeViString, + request_deserializer=nirfsg__pb2.CheckAttributeViStringRequest.FromString, + response_serializer=nirfsg__pb2.CheckAttributeViStringResponse.SerializeToString, + ), + 'CheckGenerationStatus': grpc.unary_unary_rpc_method_handler( + servicer.CheckGenerationStatus, + request_deserializer=nirfsg__pb2.CheckGenerationStatusRequest.FromString, + response_serializer=nirfsg__pb2.CheckGenerationStatusResponse.SerializeToString, + ), + 'CheckIfConfigurationListExists': grpc.unary_unary_rpc_method_handler( + servicer.CheckIfConfigurationListExists, + request_deserializer=nirfsg__pb2.CheckIfConfigurationListExistsRequest.FromString, + response_serializer=nirfsg__pb2.CheckIfConfigurationListExistsResponse.SerializeToString, + ), + 'CheckIfScriptExists': grpc.unary_unary_rpc_method_handler( + servicer.CheckIfScriptExists, + request_deserializer=nirfsg__pb2.CheckIfScriptExistsRequest.FromString, + response_serializer=nirfsg__pb2.CheckIfScriptExistsResponse.SerializeToString, + ), + 'CheckIfWaveformExists': grpc.unary_unary_rpc_method_handler( + servicer.CheckIfWaveformExists, + request_deserializer=nirfsg__pb2.CheckIfWaveformExistsRequest.FromString, + response_serializer=nirfsg__pb2.CheckIfWaveformExistsResponse.SerializeToString, + ), + 'ClearAllArbWaveforms': grpc.unary_unary_rpc_method_handler( + servicer.ClearAllArbWaveforms, + request_deserializer=nirfsg__pb2.ClearAllArbWaveformsRequest.FromString, + response_serializer=nirfsg__pb2.ClearAllArbWaveformsResponse.SerializeToString, + ), + 'ClearArbWaveform': grpc.unary_unary_rpc_method_handler( + servicer.ClearArbWaveform, + request_deserializer=nirfsg__pb2.ClearArbWaveformRequest.FromString, + response_serializer=nirfsg__pb2.ClearArbWaveformResponse.SerializeToString, + ), + 'ClearError': grpc.unary_unary_rpc_method_handler( + servicer.ClearError, + request_deserializer=nirfsg__pb2.ClearErrorRequest.FromString, + response_serializer=nirfsg__pb2.ClearErrorResponse.SerializeToString, + ), + 'ClearSelfCalibrateRange': grpc.unary_unary_rpc_method_handler( + servicer.ClearSelfCalibrateRange, + request_deserializer=nirfsg__pb2.ClearSelfCalibrateRangeRequest.FromString, + response_serializer=nirfsg__pb2.ClearSelfCalibrateRangeResponse.SerializeToString, + ), + 'Close': grpc.unary_unary_rpc_method_handler( + servicer.Close, + request_deserializer=nirfsg__pb2.CloseRequest.FromString, + response_serializer=nirfsg__pb2.CloseResponse.SerializeToString, + ), + 'Commit': grpc.unary_unary_rpc_method_handler( + servicer.Commit, + request_deserializer=nirfsg__pb2.CommitRequest.FromString, + response_serializer=nirfsg__pb2.CommitResponse.SerializeToString, + ), + 'ConfigureDeembeddingTableInterpolationLinear': grpc.unary_unary_rpc_method_handler( + servicer.ConfigureDeembeddingTableInterpolationLinear, + request_deserializer=nirfsg__pb2.ConfigureDeembeddingTableInterpolationLinearRequest.FromString, + response_serializer=nirfsg__pb2.ConfigureDeembeddingTableInterpolationLinearResponse.SerializeToString, + ), + 'ConfigureDeembeddingTableInterpolationNearest': grpc.unary_unary_rpc_method_handler( + servicer.ConfigureDeembeddingTableInterpolationNearest, + request_deserializer=nirfsg__pb2.ConfigureDeembeddingTableInterpolationNearestRequest.FromString, + response_serializer=nirfsg__pb2.ConfigureDeembeddingTableInterpolationNearestResponse.SerializeToString, + ), + 'ConfigureDeembeddingTableInterpolationSpline': grpc.unary_unary_rpc_method_handler( + servicer.ConfigureDeembeddingTableInterpolationSpline, + request_deserializer=nirfsg__pb2.ConfigureDeembeddingTableInterpolationSplineRequest.FromString, + response_serializer=nirfsg__pb2.ConfigureDeembeddingTableInterpolationSplineResponse.SerializeToString, + ), + 'ConfigureDigitalEdgeConfigurationListStepTrigger': grpc.unary_unary_rpc_method_handler( + servicer.ConfigureDigitalEdgeConfigurationListStepTrigger, + request_deserializer=nirfsg__pb2.ConfigureDigitalEdgeConfigurationListStepTriggerRequest.FromString, + response_serializer=nirfsg__pb2.ConfigureDigitalEdgeConfigurationListStepTriggerResponse.SerializeToString, + ), + 'ConfigureDigitalEdgeScriptTrigger': grpc.unary_unary_rpc_method_handler( + servicer.ConfigureDigitalEdgeScriptTrigger, + request_deserializer=nirfsg__pb2.ConfigureDigitalEdgeScriptTriggerRequest.FromString, + response_serializer=nirfsg__pb2.ConfigureDigitalEdgeScriptTriggerResponse.SerializeToString, + ), + 'ConfigureDigitalEdgeStartTrigger': grpc.unary_unary_rpc_method_handler( + servicer.ConfigureDigitalEdgeStartTrigger, + request_deserializer=nirfsg__pb2.ConfigureDigitalEdgeStartTriggerRequest.FromString, + response_serializer=nirfsg__pb2.ConfigureDigitalEdgeStartTriggerResponse.SerializeToString, + ), + 'ConfigureDigitalLevelScriptTrigger': grpc.unary_unary_rpc_method_handler( + servicer.ConfigureDigitalLevelScriptTrigger, + request_deserializer=nirfsg__pb2.ConfigureDigitalLevelScriptTriggerRequest.FromString, + response_serializer=nirfsg__pb2.ConfigureDigitalLevelScriptTriggerResponse.SerializeToString, + ), + 'ConfigureDigitalModulationUserDefinedWaveform': grpc.unary_unary_rpc_method_handler( + servicer.ConfigureDigitalModulationUserDefinedWaveform, + request_deserializer=nirfsg__pb2.ConfigureDigitalModulationUserDefinedWaveformRequest.FromString, + response_serializer=nirfsg__pb2.ConfigureDigitalModulationUserDefinedWaveformResponse.SerializeToString, + ), + 'ConfigureGenerationMode': grpc.unary_unary_rpc_method_handler( + servicer.ConfigureGenerationMode, + request_deserializer=nirfsg__pb2.ConfigureGenerationModeRequest.FromString, + response_serializer=nirfsg__pb2.ConfigureGenerationModeResponse.SerializeToString, + ), + 'ConfigureOutputEnabled': grpc.unary_unary_rpc_method_handler( + servicer.ConfigureOutputEnabled, + request_deserializer=nirfsg__pb2.ConfigureOutputEnabledRequest.FromString, + response_serializer=nirfsg__pb2.ConfigureOutputEnabledResponse.SerializeToString, + ), + 'ConfigureP2PEndpointFullnessStartTrigger': grpc.unary_unary_rpc_method_handler( + servicer.ConfigureP2PEndpointFullnessStartTrigger, + request_deserializer=nirfsg__pb2.ConfigureP2PEndpointFullnessStartTriggerRequest.FromString, + response_serializer=nirfsg__pb2.ConfigureP2PEndpointFullnessStartTriggerResponse.SerializeToString, + ), + 'ConfigurePXIChassisClk10': grpc.unary_unary_rpc_method_handler( + servicer.ConfigurePXIChassisClk10, + request_deserializer=nirfsg__pb2.ConfigurePXIChassisClk10Request.FromString, + response_serializer=nirfsg__pb2.ConfigurePXIChassisClk10Response.SerializeToString, + ), + 'ConfigurePowerLevelType': grpc.unary_unary_rpc_method_handler( + servicer.ConfigurePowerLevelType, + request_deserializer=nirfsg__pb2.ConfigurePowerLevelTypeRequest.FromString, + response_serializer=nirfsg__pb2.ConfigurePowerLevelTypeResponse.SerializeToString, + ), + 'ConfigureRF': grpc.unary_unary_rpc_method_handler( + servicer.ConfigureRF, + request_deserializer=nirfsg__pb2.ConfigureRFRequest.FromString, + response_serializer=nirfsg__pb2.ConfigureRFResponse.SerializeToString, + ), + 'ConfigureRefClock': grpc.unary_unary_rpc_method_handler( + servicer.ConfigureRefClock, + request_deserializer=nirfsg__pb2.ConfigureRefClockRequest.FromString, + response_serializer=nirfsg__pb2.ConfigureRefClockResponse.SerializeToString, + ), + 'ConfigureSignalBandwidth': grpc.unary_unary_rpc_method_handler( + servicer.ConfigureSignalBandwidth, + request_deserializer=nirfsg__pb2.ConfigureSignalBandwidthRequest.FromString, + response_serializer=nirfsg__pb2.ConfigureSignalBandwidthResponse.SerializeToString, + ), + 'ConfigureSoftwareScriptTrigger': grpc.unary_unary_rpc_method_handler( + servicer.ConfigureSoftwareScriptTrigger, + request_deserializer=nirfsg__pb2.ConfigureSoftwareScriptTriggerRequest.FromString, + response_serializer=nirfsg__pb2.ConfigureSoftwareScriptTriggerResponse.SerializeToString, + ), + 'ConfigureSoftwareStartTrigger': grpc.unary_unary_rpc_method_handler( + servicer.ConfigureSoftwareStartTrigger, + request_deserializer=nirfsg__pb2.ConfigureSoftwareStartTriggerRequest.FromString, + response_serializer=nirfsg__pb2.ConfigureSoftwareStartTriggerResponse.SerializeToString, + ), + 'ConfigureUpconverterPLLSettlingTime': grpc.unary_unary_rpc_method_handler( + servicer.ConfigureUpconverterPLLSettlingTime, + request_deserializer=nirfsg__pb2.ConfigureUpconverterPLLSettlingTimeRequest.FromString, + response_serializer=nirfsg__pb2.ConfigureUpconverterPLLSettlingTimeResponse.SerializeToString, + ), + 'CreateConfigurationList': grpc.unary_unary_rpc_method_handler( + servicer.CreateConfigurationList, + request_deserializer=nirfsg__pb2.CreateConfigurationListRequest.FromString, + response_serializer=nirfsg__pb2.CreateConfigurationListResponse.SerializeToString, + ), + 'CreateConfigurationListStep': grpc.unary_unary_rpc_method_handler( + servicer.CreateConfigurationListStep, + request_deserializer=nirfsg__pb2.CreateConfigurationListStepRequest.FromString, + response_serializer=nirfsg__pb2.CreateConfigurationListStepResponse.SerializeToString, + ), + 'CreateDeembeddingSparameterTableArray': grpc.unary_unary_rpc_method_handler( + servicer.CreateDeembeddingSparameterTableArray, + request_deserializer=nirfsg__pb2.CreateDeembeddingSparameterTableArrayRequest.FromString, + response_serializer=nirfsg__pb2.CreateDeembeddingSparameterTableArrayResponse.SerializeToString, + ), + 'CreateDeembeddingSparameterTableS2PFile': grpc.unary_unary_rpc_method_handler( + servicer.CreateDeembeddingSparameterTableS2PFile, + request_deserializer=nirfsg__pb2.CreateDeembeddingSparameterTableS2PFileRequest.FromString, + response_serializer=nirfsg__pb2.CreateDeembeddingSparameterTableS2PFileResponse.SerializeToString, + ), + 'DeleteAllDeembeddingTables': grpc.unary_unary_rpc_method_handler( + servicer.DeleteAllDeembeddingTables, + request_deserializer=nirfsg__pb2.DeleteAllDeembeddingTablesRequest.FromString, + response_serializer=nirfsg__pb2.DeleteAllDeembeddingTablesResponse.SerializeToString, + ), + 'DeleteConfigurationList': grpc.unary_unary_rpc_method_handler( + servicer.DeleteConfigurationList, + request_deserializer=nirfsg__pb2.DeleteConfigurationListRequest.FromString, + response_serializer=nirfsg__pb2.DeleteConfigurationListResponse.SerializeToString, + ), + 'DeleteDeembeddingTable': grpc.unary_unary_rpc_method_handler( + servicer.DeleteDeembeddingTable, + request_deserializer=nirfsg__pb2.DeleteDeembeddingTableRequest.FromString, + response_serializer=nirfsg__pb2.DeleteDeembeddingTableResponse.SerializeToString, + ), + 'DeleteScript': grpc.unary_unary_rpc_method_handler( + servicer.DeleteScript, + request_deserializer=nirfsg__pb2.DeleteScriptRequest.FromString, + response_serializer=nirfsg__pb2.DeleteScriptResponse.SerializeToString, + ), + 'Disable': grpc.unary_unary_rpc_method_handler( + servicer.Disable, + request_deserializer=nirfsg__pb2.DisableRequest.FromString, + response_serializer=nirfsg__pb2.DisableResponse.SerializeToString, + ), + 'DisableAllModulation': grpc.unary_unary_rpc_method_handler( + servicer.DisableAllModulation, + request_deserializer=nirfsg__pb2.DisableAllModulationRequest.FromString, + response_serializer=nirfsg__pb2.DisableAllModulationResponse.SerializeToString, + ), + 'DisableConfigurationListStepTrigger': grpc.unary_unary_rpc_method_handler( + servicer.DisableConfigurationListStepTrigger, + request_deserializer=nirfsg__pb2.DisableConfigurationListStepTriggerRequest.FromString, + response_serializer=nirfsg__pb2.DisableConfigurationListStepTriggerResponse.SerializeToString, + ), + 'DisableScriptTrigger': grpc.unary_unary_rpc_method_handler( + servicer.DisableScriptTrigger, + request_deserializer=nirfsg__pb2.DisableScriptTriggerRequest.FromString, + response_serializer=nirfsg__pb2.DisableScriptTriggerResponse.SerializeToString, + ), + 'DisableStartTrigger': grpc.unary_unary_rpc_method_handler( + servicer.DisableStartTrigger, + request_deserializer=nirfsg__pb2.DisableStartTriggerRequest.FromString, + response_serializer=nirfsg__pb2.DisableStartTriggerResponse.SerializeToString, + ), + 'ErrorMessage': grpc.unary_unary_rpc_method_handler( + servicer.ErrorMessage, + request_deserializer=nirfsg__pb2.ErrorMessageRequest.FromString, + response_serializer=nirfsg__pb2.ErrorMessageResponse.SerializeToString, + ), + 'ErrorQuery': grpc.unary_unary_rpc_method_handler( + servicer.ErrorQuery, + request_deserializer=nirfsg__pb2.ErrorQueryRequest.FromString, + response_serializer=nirfsg__pb2.ErrorQueryResponse.SerializeToString, + ), + 'ExportSignal': grpc.unary_unary_rpc_method_handler( + servicer.ExportSignal, + request_deserializer=nirfsg__pb2.ExportSignalRequest.FromString, + response_serializer=nirfsg__pb2.ExportSignalResponse.SerializeToString, + ), + 'GetAllNamedWaveformNames': grpc.unary_unary_rpc_method_handler( + servicer.GetAllNamedWaveformNames, + request_deserializer=nirfsg__pb2.GetAllNamedWaveformNamesRequest.FromString, + response_serializer=nirfsg__pb2.GetAllNamedWaveformNamesResponse.SerializeToString, + ), + 'GetAllScriptNames': grpc.unary_unary_rpc_method_handler( + servicer.GetAllScriptNames, + request_deserializer=nirfsg__pb2.GetAllScriptNamesRequest.FromString, + response_serializer=nirfsg__pb2.GetAllScriptNamesResponse.SerializeToString, + ), + 'GetScript': grpc.unary_unary_rpc_method_handler( + servicer.GetScript, + request_deserializer=nirfsg__pb2.GetScriptRequest.FromString, + response_serializer=nirfsg__pb2.GetScriptResponse.SerializeToString, + ), + 'GetAttributeViBoolean': grpc.unary_unary_rpc_method_handler( + servicer.GetAttributeViBoolean, + request_deserializer=nirfsg__pb2.GetAttributeViBooleanRequest.FromString, + response_serializer=nirfsg__pb2.GetAttributeViBooleanResponse.SerializeToString, + ), + 'GetAttributeViInt32': grpc.unary_unary_rpc_method_handler( + servicer.GetAttributeViInt32, + request_deserializer=nirfsg__pb2.GetAttributeViInt32Request.FromString, + response_serializer=nirfsg__pb2.GetAttributeViInt32Response.SerializeToString, + ), + 'GetAttributeViInt64': grpc.unary_unary_rpc_method_handler( + servicer.GetAttributeViInt64, + request_deserializer=nirfsg__pb2.GetAttributeViInt64Request.FromString, + response_serializer=nirfsg__pb2.GetAttributeViInt64Response.SerializeToString, + ), + 'GetAttributeViReal64': grpc.unary_unary_rpc_method_handler( + servicer.GetAttributeViReal64, + request_deserializer=nirfsg__pb2.GetAttributeViReal64Request.FromString, + response_serializer=nirfsg__pb2.GetAttributeViReal64Response.SerializeToString, + ), + 'GetAttributeViSession': grpc.unary_unary_rpc_method_handler( + servicer.GetAttributeViSession, + request_deserializer=nirfsg__pb2.GetAttributeViSessionRequest.FromString, + response_serializer=nirfsg__pb2.GetAttributeViSessionResponse.SerializeToString, + ), + 'GetAttributeViString': grpc.unary_unary_rpc_method_handler( + servicer.GetAttributeViString, + request_deserializer=nirfsg__pb2.GetAttributeViStringRequest.FromString, + response_serializer=nirfsg__pb2.GetAttributeViStringResponse.SerializeToString, + ), + 'GetChannelName': grpc.unary_unary_rpc_method_handler( + servicer.GetChannelName, + request_deserializer=nirfsg__pb2.GetChannelNameRequest.FromString, + response_serializer=nirfsg__pb2.GetChannelNameResponse.SerializeToString, + ), + 'GetDeembeddingSparameters': grpc.unary_unary_rpc_method_handler( + servicer.GetDeembeddingSparameters, + request_deserializer=nirfsg__pb2.GetDeembeddingSparametersRequest.FromString, + response_serializer=nirfsg__pb2.GetDeembeddingSparametersResponse.SerializeToString, + ), + 'GetError': grpc.unary_unary_rpc_method_handler( + servicer.GetError, + request_deserializer=nirfsg__pb2.GetErrorRequest.FromString, + response_serializer=nirfsg__pb2.GetErrorResponse.SerializeToString, + ), + 'GetExternalCalibrationLastDateAndTime': grpc.unary_unary_rpc_method_handler( + servicer.GetExternalCalibrationLastDateAndTime, + request_deserializer=nirfsg__pb2.GetExternalCalibrationLastDateAndTimeRequest.FromString, + response_serializer=nirfsg__pb2.GetExternalCalibrationLastDateAndTimeResponse.SerializeToString, + ), + 'GetMaxSettablePower': grpc.unary_unary_rpc_method_handler( + servicer.GetMaxSettablePower, + request_deserializer=nirfsg__pb2.GetMaxSettablePowerRequest.FromString, + response_serializer=nirfsg__pb2.GetMaxSettablePowerResponse.SerializeToString, + ), + 'GetSelfCalibrationDateAndTime': grpc.unary_unary_rpc_method_handler( + servicer.GetSelfCalibrationDateAndTime, + request_deserializer=nirfsg__pb2.GetSelfCalibrationDateAndTimeRequest.FromString, + response_serializer=nirfsg__pb2.GetSelfCalibrationDateAndTimeResponse.SerializeToString, + ), + 'GetSelfCalibrationTemperature': grpc.unary_unary_rpc_method_handler( + servicer.GetSelfCalibrationTemperature, + request_deserializer=nirfsg__pb2.GetSelfCalibrationTemperatureRequest.FromString, + response_serializer=nirfsg__pb2.GetSelfCalibrationTemperatureResponse.SerializeToString, + ), + 'GetTerminalName': grpc.unary_unary_rpc_method_handler( + servicer.GetTerminalName, + request_deserializer=nirfsg__pb2.GetTerminalNameRequest.FromString, + response_serializer=nirfsg__pb2.GetTerminalNameResponse.SerializeToString, + ), + 'GetUserData': grpc.unary_unary_rpc_method_handler( + servicer.GetUserData, + request_deserializer=nirfsg__pb2.GetUserDataRequest.FromString, + response_serializer=nirfsg__pb2.GetUserDataResponse.SerializeToString, + ), + 'GetWaveformBurstStartLocations': grpc.unary_unary_rpc_method_handler( + servicer.GetWaveformBurstStartLocations, + request_deserializer=nirfsg__pb2.GetWaveformBurstStartLocationsRequest.FromString, + response_serializer=nirfsg__pb2.GetWaveformBurstStartLocationsResponse.SerializeToString, + ), + 'GetWaveformBurstStopLocations': grpc.unary_unary_rpc_method_handler( + servicer.GetWaveformBurstStopLocations, + request_deserializer=nirfsg__pb2.GetWaveformBurstStopLocationsRequest.FromString, + response_serializer=nirfsg__pb2.GetWaveformBurstStopLocationsResponse.SerializeToString, + ), + 'GetWaveformMarkerEventLocations': grpc.unary_unary_rpc_method_handler( + servicer.GetWaveformMarkerEventLocations, + request_deserializer=nirfsg__pb2.GetWaveformMarkerEventLocationsRequest.FromString, + response_serializer=nirfsg__pb2.GetWaveformMarkerEventLocationsResponse.SerializeToString, + ), + 'Init': grpc.unary_unary_rpc_method_handler( + servicer.Init, + request_deserializer=nirfsg__pb2.InitRequest.FromString, + response_serializer=nirfsg__pb2.InitResponse.SerializeToString, + ), + 'InitWithOptions': grpc.unary_unary_rpc_method_handler( + servicer.InitWithOptions, + request_deserializer=nirfsg__pb2.InitWithOptionsRequest.FromString, + response_serializer=nirfsg__pb2.InitWithOptionsResponse.SerializeToString, + ), + 'Initiate': grpc.unary_unary_rpc_method_handler( + servicer.Initiate, + request_deserializer=nirfsg__pb2.InitiateRequest.FromString, + response_serializer=nirfsg__pb2.InitiateResponse.SerializeToString, + ), + 'InvalidateAllAttributes': grpc.unary_unary_rpc_method_handler( + servicer.InvalidateAllAttributes, + request_deserializer=nirfsg__pb2.InvalidateAllAttributesRequest.FromString, + response_serializer=nirfsg__pb2.InvalidateAllAttributesResponse.SerializeToString, + ), + 'LoadConfigurationsFromFile': grpc.unary_unary_rpc_method_handler( + servicer.LoadConfigurationsFromFile, + request_deserializer=nirfsg__pb2.LoadConfigurationsFromFileRequest.FromString, + response_serializer=nirfsg__pb2.LoadConfigurationsFromFileResponse.SerializeToString, + ), + 'PerformPowerSearch': grpc.unary_unary_rpc_method_handler( + servicer.PerformPowerSearch, + request_deserializer=nirfsg__pb2.PerformPowerSearchRequest.FromString, + response_serializer=nirfsg__pb2.PerformPowerSearchResponse.SerializeToString, + ), + 'PerformThermalCorrection': grpc.unary_unary_rpc_method_handler( + servicer.PerformThermalCorrection, + request_deserializer=nirfsg__pb2.PerformThermalCorrectionRequest.FromString, + response_serializer=nirfsg__pb2.PerformThermalCorrectionResponse.SerializeToString, + ), + 'QueryArbWaveformCapabilities': grpc.unary_unary_rpc_method_handler( + servicer.QueryArbWaveformCapabilities, + request_deserializer=nirfsg__pb2.QueryArbWaveformCapabilitiesRequest.FromString, + response_serializer=nirfsg__pb2.QueryArbWaveformCapabilitiesResponse.SerializeToString, + ), + 'ReadAndDownloadWaveformFromFileTDMS': grpc.unary_unary_rpc_method_handler( + servicer.ReadAndDownloadWaveformFromFileTDMS, + request_deserializer=nirfsg__pb2.ReadAndDownloadWaveformFromFileTDMSRequest.FromString, + response_serializer=nirfsg__pb2.ReadAndDownloadWaveformFromFileTDMSResponse.SerializeToString, + ), + 'Reset': grpc.unary_unary_rpc_method_handler( + servicer.Reset, + request_deserializer=nirfsg__pb2.ResetRequest.FromString, + response_serializer=nirfsg__pb2.ResetResponse.SerializeToString, + ), + 'ResetAttribute': grpc.unary_unary_rpc_method_handler( + servicer.ResetAttribute, + request_deserializer=nirfsg__pb2.ResetAttributeRequest.FromString, + response_serializer=nirfsg__pb2.ResetAttributeResponse.SerializeToString, + ), + 'ResetDevice': grpc.unary_unary_rpc_method_handler( + servicer.ResetDevice, + request_deserializer=nirfsg__pb2.ResetDeviceRequest.FromString, + response_serializer=nirfsg__pb2.ResetDeviceResponse.SerializeToString, + ), + 'ResetWithDefaults': grpc.unary_unary_rpc_method_handler( + servicer.ResetWithDefaults, + request_deserializer=nirfsg__pb2.ResetWithDefaultsRequest.FromString, + response_serializer=nirfsg__pb2.ResetWithDefaultsResponse.SerializeToString, + ), + 'ResetWithOptions': grpc.unary_unary_rpc_method_handler( + servicer.ResetWithOptions, + request_deserializer=nirfsg__pb2.ResetWithOptionsRequest.FromString, + response_serializer=nirfsg__pb2.ResetWithOptionsResponse.SerializeToString, + ), + 'RevisionQuery': grpc.unary_unary_rpc_method_handler( + servicer.RevisionQuery, + request_deserializer=nirfsg__pb2.RevisionQueryRequest.FromString, + response_serializer=nirfsg__pb2.RevisionQueryResponse.SerializeToString, + ), + 'SaveConfigurationsToFile': grpc.unary_unary_rpc_method_handler( + servicer.SaveConfigurationsToFile, + request_deserializer=nirfsg__pb2.SaveConfigurationsToFileRequest.FromString, + response_serializer=nirfsg__pb2.SaveConfigurationsToFileResponse.SerializeToString, + ), + 'SelectArbWaveform': grpc.unary_unary_rpc_method_handler( + servicer.SelectArbWaveform, + request_deserializer=nirfsg__pb2.SelectArbWaveformRequest.FromString, + response_serializer=nirfsg__pb2.SelectArbWaveformResponse.SerializeToString, + ), + 'SelfCal': grpc.unary_unary_rpc_method_handler( + servicer.SelfCal, + request_deserializer=nirfsg__pb2.SelfCalRequest.FromString, + response_serializer=nirfsg__pb2.SelfCalResponse.SerializeToString, + ), + 'SelfCalibrateRange': grpc.unary_unary_rpc_method_handler( + servicer.SelfCalibrateRange, + request_deserializer=nirfsg__pb2.SelfCalibrateRangeRequest.FromString, + response_serializer=nirfsg__pb2.SelfCalibrateRangeResponse.SerializeToString, + ), + 'SelfTest': grpc.unary_unary_rpc_method_handler( + servicer.SelfTest, + request_deserializer=nirfsg__pb2.SelfTestRequest.FromString, + response_serializer=nirfsg__pb2.SelfTestResponse.SerializeToString, + ), + 'SendSoftwareEdgeTrigger': grpc.unary_unary_rpc_method_handler( + servicer.SendSoftwareEdgeTrigger, + request_deserializer=nirfsg__pb2.SendSoftwareEdgeTriggerRequest.FromString, + response_serializer=nirfsg__pb2.SendSoftwareEdgeTriggerResponse.SerializeToString, + ), + 'SetArbWaveformNextWritePosition': grpc.unary_unary_rpc_method_handler( + servicer.SetArbWaveformNextWritePosition, + request_deserializer=nirfsg__pb2.SetArbWaveformNextWritePositionRequest.FromString, + response_serializer=nirfsg__pb2.SetArbWaveformNextWritePositionResponse.SerializeToString, + ), + 'SetAttributeViBoolean': grpc.unary_unary_rpc_method_handler( + servicer.SetAttributeViBoolean, + request_deserializer=nirfsg__pb2.SetAttributeViBooleanRequest.FromString, + response_serializer=nirfsg__pb2.SetAttributeViBooleanResponse.SerializeToString, + ), + 'SetAttributeViInt32': grpc.unary_unary_rpc_method_handler( + servicer.SetAttributeViInt32, + request_deserializer=nirfsg__pb2.SetAttributeViInt32Request.FromString, + response_serializer=nirfsg__pb2.SetAttributeViInt32Response.SerializeToString, + ), + 'SetAttributeViInt64': grpc.unary_unary_rpc_method_handler( + servicer.SetAttributeViInt64, + request_deserializer=nirfsg__pb2.SetAttributeViInt64Request.FromString, + response_serializer=nirfsg__pb2.SetAttributeViInt64Response.SerializeToString, + ), + 'SetAttributeViReal64': grpc.unary_unary_rpc_method_handler( + servicer.SetAttributeViReal64, + request_deserializer=nirfsg__pb2.SetAttributeViReal64Request.FromString, + response_serializer=nirfsg__pb2.SetAttributeViReal64Response.SerializeToString, + ), + 'SetAttributeViSession': grpc.unary_unary_rpc_method_handler( + servicer.SetAttributeViSession, + request_deserializer=nirfsg__pb2.SetAttributeViSessionRequest.FromString, + response_serializer=nirfsg__pb2.SetAttributeViSessionResponse.SerializeToString, + ), + 'SetAttributeViString': grpc.unary_unary_rpc_method_handler( + servicer.SetAttributeViString, + request_deserializer=nirfsg__pb2.SetAttributeViStringRequest.FromString, + response_serializer=nirfsg__pb2.SetAttributeViStringResponse.SerializeToString, + ), + 'SetUserData': grpc.unary_unary_rpc_method_handler( + servicer.SetUserData, + request_deserializer=nirfsg__pb2.SetUserDataRequest.FromString, + response_serializer=nirfsg__pb2.SetUserDataResponse.SerializeToString, + ), + 'SetWaveformBurstStartLocations': grpc.unary_unary_rpc_method_handler( + servicer.SetWaveformBurstStartLocations, + request_deserializer=nirfsg__pb2.SetWaveformBurstStartLocationsRequest.FromString, + response_serializer=nirfsg__pb2.SetWaveformBurstStartLocationsResponse.SerializeToString, + ), + 'SetWaveformBurstStopLocations': grpc.unary_unary_rpc_method_handler( + servicer.SetWaveformBurstStopLocations, + request_deserializer=nirfsg__pb2.SetWaveformBurstStopLocationsRequest.FromString, + response_serializer=nirfsg__pb2.SetWaveformBurstStopLocationsResponse.SerializeToString, + ), + 'SetWaveformMarkerEventLocations': grpc.unary_unary_rpc_method_handler( + servicer.SetWaveformMarkerEventLocations, + request_deserializer=nirfsg__pb2.SetWaveformMarkerEventLocationsRequest.FromString, + response_serializer=nirfsg__pb2.SetWaveformMarkerEventLocationsResponse.SerializeToString, + ), + 'WaitUntilSettled': grpc.unary_unary_rpc_method_handler( + servicer.WaitUntilSettled, + request_deserializer=nirfsg__pb2.WaitUntilSettledRequest.FromString, + response_serializer=nirfsg__pb2.WaitUntilSettledResponse.SerializeToString, + ), + 'WriteArbWaveform': grpc.unary_unary_rpc_method_handler( + servicer.WriteArbWaveform, + request_deserializer=nirfsg__pb2.WriteArbWaveformRequest.FromString, + response_serializer=nirfsg__pb2.WriteArbWaveformResponse.SerializeToString, + ), + 'WriteArbWaveformComplexF32': grpc.unary_unary_rpc_method_handler( + servicer.WriteArbWaveformComplexF32, + request_deserializer=nirfsg__pb2.WriteArbWaveformComplexF32Request.FromString, + response_serializer=nirfsg__pb2.WriteArbWaveformComplexF32Response.SerializeToString, + ), + 'WriteArbWaveformComplexF64': grpc.unary_unary_rpc_method_handler( + servicer.WriteArbWaveformComplexF64, + request_deserializer=nirfsg__pb2.WriteArbWaveformComplexF64Request.FromString, + response_serializer=nirfsg__pb2.WriteArbWaveformComplexF64Response.SerializeToString, + ), + 'WriteArbWaveformComplexI16': grpc.unary_unary_rpc_method_handler( + servicer.WriteArbWaveformComplexI16, + request_deserializer=nirfsg__pb2.WriteArbWaveformComplexI16Request.FromString, + response_serializer=nirfsg__pb2.WriteArbWaveformComplexI16Response.SerializeToString, + ), + 'WriteArbWaveformF32': grpc.unary_unary_rpc_method_handler( + servicer.WriteArbWaveformF32, + request_deserializer=nirfsg__pb2.WriteArbWaveformF32Request.FromString, + response_serializer=nirfsg__pb2.WriteArbWaveformF32Response.SerializeToString, + ), + 'WriteScript': grpc.unary_unary_rpc_method_handler( + servicer.WriteScript, + request_deserializer=nirfsg__pb2.WriteScriptRequest.FromString, + response_serializer=nirfsg__pb2.WriteScriptResponse.SerializeToString, + ), + } + generic_handler = grpc.method_handlers_generic_handler( + 'nirfsg_grpc.NiRFSG', rpc_method_handlers) + server.add_generic_rpc_handlers((generic_handler,)) + + + # This class is part of an EXPERIMENTAL API. +class NiRFSG(object): + """Missing associated documentation comment in .proto file.""" + + @staticmethod + def Abort(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, '/nirfsg_grpc.NiRFSG/Abort', + nirfsg__pb2.AbortRequest.SerializeToString, + nirfsg__pb2.AbortResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def AllocateArbWaveform(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, '/nirfsg_grpc.NiRFSG/AllocateArbWaveform', + nirfsg__pb2.AllocateArbWaveformRequest.SerializeToString, + nirfsg__pb2.AllocateArbWaveformResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def CheckAttributeViBoolean(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, '/nirfsg_grpc.NiRFSG/CheckAttributeViBoolean', + nirfsg__pb2.CheckAttributeViBooleanRequest.SerializeToString, + nirfsg__pb2.CheckAttributeViBooleanResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def CheckAttributeViInt32(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, '/nirfsg_grpc.NiRFSG/CheckAttributeViInt32', + nirfsg__pb2.CheckAttributeViInt32Request.SerializeToString, + nirfsg__pb2.CheckAttributeViInt32Response.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def CheckAttributeViInt64(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, '/nirfsg_grpc.NiRFSG/CheckAttributeViInt64', + nirfsg__pb2.CheckAttributeViInt64Request.SerializeToString, + nirfsg__pb2.CheckAttributeViInt64Response.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def CheckAttributeViReal64(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, '/nirfsg_grpc.NiRFSG/CheckAttributeViReal64', + nirfsg__pb2.CheckAttributeViReal64Request.SerializeToString, + nirfsg__pb2.CheckAttributeViReal64Response.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def CheckAttributeViSession(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, '/nirfsg_grpc.NiRFSG/CheckAttributeViSession', + nirfsg__pb2.CheckAttributeViSessionRequest.SerializeToString, + nirfsg__pb2.CheckAttributeViSessionResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def CheckAttributeViString(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, '/nirfsg_grpc.NiRFSG/CheckAttributeViString', + nirfsg__pb2.CheckAttributeViStringRequest.SerializeToString, + nirfsg__pb2.CheckAttributeViStringResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def CheckGenerationStatus(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, '/nirfsg_grpc.NiRFSG/CheckGenerationStatus', + nirfsg__pb2.CheckGenerationStatusRequest.SerializeToString, + nirfsg__pb2.CheckGenerationStatusResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def CheckIfConfigurationListExists(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, '/nirfsg_grpc.NiRFSG/CheckIfConfigurationListExists', + nirfsg__pb2.CheckIfConfigurationListExistsRequest.SerializeToString, + nirfsg__pb2.CheckIfConfigurationListExistsResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def CheckIfScriptExists(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, '/nirfsg_grpc.NiRFSG/CheckIfScriptExists', + nirfsg__pb2.CheckIfScriptExistsRequest.SerializeToString, + nirfsg__pb2.CheckIfScriptExistsResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def CheckIfWaveformExists(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, '/nirfsg_grpc.NiRFSG/CheckIfWaveformExists', + nirfsg__pb2.CheckIfWaveformExistsRequest.SerializeToString, + nirfsg__pb2.CheckIfWaveformExistsResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def ClearAllArbWaveforms(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, '/nirfsg_grpc.NiRFSG/ClearAllArbWaveforms', + nirfsg__pb2.ClearAllArbWaveformsRequest.SerializeToString, + nirfsg__pb2.ClearAllArbWaveformsResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def ClearArbWaveform(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, '/nirfsg_grpc.NiRFSG/ClearArbWaveform', + nirfsg__pb2.ClearArbWaveformRequest.SerializeToString, + nirfsg__pb2.ClearArbWaveformResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def ClearError(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, '/nirfsg_grpc.NiRFSG/ClearError', + nirfsg__pb2.ClearErrorRequest.SerializeToString, + nirfsg__pb2.ClearErrorResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def ClearSelfCalibrateRange(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, '/nirfsg_grpc.NiRFSG/ClearSelfCalibrateRange', + nirfsg__pb2.ClearSelfCalibrateRangeRequest.SerializeToString, + nirfsg__pb2.ClearSelfCalibrateRangeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def Close(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, '/nirfsg_grpc.NiRFSG/Close', + nirfsg__pb2.CloseRequest.SerializeToString, + nirfsg__pb2.CloseResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def Commit(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, '/nirfsg_grpc.NiRFSG/Commit', + nirfsg__pb2.CommitRequest.SerializeToString, + nirfsg__pb2.CommitResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def ConfigureDeembeddingTableInterpolationLinear(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, '/nirfsg_grpc.NiRFSG/ConfigureDeembeddingTableInterpolationLinear', + nirfsg__pb2.ConfigureDeembeddingTableInterpolationLinearRequest.SerializeToString, + nirfsg__pb2.ConfigureDeembeddingTableInterpolationLinearResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def ConfigureDeembeddingTableInterpolationNearest(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, '/nirfsg_grpc.NiRFSG/ConfigureDeembeddingTableInterpolationNearest', + nirfsg__pb2.ConfigureDeembeddingTableInterpolationNearestRequest.SerializeToString, + nirfsg__pb2.ConfigureDeembeddingTableInterpolationNearestResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def ConfigureDeembeddingTableInterpolationSpline(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, '/nirfsg_grpc.NiRFSG/ConfigureDeembeddingTableInterpolationSpline', + nirfsg__pb2.ConfigureDeembeddingTableInterpolationSplineRequest.SerializeToString, + nirfsg__pb2.ConfigureDeembeddingTableInterpolationSplineResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def ConfigureDigitalEdgeConfigurationListStepTrigger(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, '/nirfsg_grpc.NiRFSG/ConfigureDigitalEdgeConfigurationListStepTrigger', + nirfsg__pb2.ConfigureDigitalEdgeConfigurationListStepTriggerRequest.SerializeToString, + nirfsg__pb2.ConfigureDigitalEdgeConfigurationListStepTriggerResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def ConfigureDigitalEdgeScriptTrigger(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, '/nirfsg_grpc.NiRFSG/ConfigureDigitalEdgeScriptTrigger', + nirfsg__pb2.ConfigureDigitalEdgeScriptTriggerRequest.SerializeToString, + nirfsg__pb2.ConfigureDigitalEdgeScriptTriggerResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def ConfigureDigitalEdgeStartTrigger(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, '/nirfsg_grpc.NiRFSG/ConfigureDigitalEdgeStartTrigger', + nirfsg__pb2.ConfigureDigitalEdgeStartTriggerRequest.SerializeToString, + nirfsg__pb2.ConfigureDigitalEdgeStartTriggerResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def ConfigureDigitalLevelScriptTrigger(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, '/nirfsg_grpc.NiRFSG/ConfigureDigitalLevelScriptTrigger', + nirfsg__pb2.ConfigureDigitalLevelScriptTriggerRequest.SerializeToString, + nirfsg__pb2.ConfigureDigitalLevelScriptTriggerResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def ConfigureDigitalModulationUserDefinedWaveform(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, '/nirfsg_grpc.NiRFSG/ConfigureDigitalModulationUserDefinedWaveform', + nirfsg__pb2.ConfigureDigitalModulationUserDefinedWaveformRequest.SerializeToString, + nirfsg__pb2.ConfigureDigitalModulationUserDefinedWaveformResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def ConfigureGenerationMode(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, '/nirfsg_grpc.NiRFSG/ConfigureGenerationMode', + nirfsg__pb2.ConfigureGenerationModeRequest.SerializeToString, + nirfsg__pb2.ConfigureGenerationModeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def ConfigureOutputEnabled(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, '/nirfsg_grpc.NiRFSG/ConfigureOutputEnabled', + nirfsg__pb2.ConfigureOutputEnabledRequest.SerializeToString, + nirfsg__pb2.ConfigureOutputEnabledResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def ConfigureP2PEndpointFullnessStartTrigger(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, '/nirfsg_grpc.NiRFSG/ConfigureP2PEndpointFullnessStartTrigger', + nirfsg__pb2.ConfigureP2PEndpointFullnessStartTriggerRequest.SerializeToString, + nirfsg__pb2.ConfigureP2PEndpointFullnessStartTriggerResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def ConfigurePXIChassisClk10(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, '/nirfsg_grpc.NiRFSG/ConfigurePXIChassisClk10', + nirfsg__pb2.ConfigurePXIChassisClk10Request.SerializeToString, + nirfsg__pb2.ConfigurePXIChassisClk10Response.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def ConfigurePowerLevelType(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, '/nirfsg_grpc.NiRFSG/ConfigurePowerLevelType', + nirfsg__pb2.ConfigurePowerLevelTypeRequest.SerializeToString, + nirfsg__pb2.ConfigurePowerLevelTypeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def ConfigureRF(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, '/nirfsg_grpc.NiRFSG/ConfigureRF', + nirfsg__pb2.ConfigureRFRequest.SerializeToString, + nirfsg__pb2.ConfigureRFResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def ConfigureRefClock(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, '/nirfsg_grpc.NiRFSG/ConfigureRefClock', + nirfsg__pb2.ConfigureRefClockRequest.SerializeToString, + nirfsg__pb2.ConfigureRefClockResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def ConfigureSignalBandwidth(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, '/nirfsg_grpc.NiRFSG/ConfigureSignalBandwidth', + nirfsg__pb2.ConfigureSignalBandwidthRequest.SerializeToString, + nirfsg__pb2.ConfigureSignalBandwidthResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def ConfigureSoftwareScriptTrigger(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, '/nirfsg_grpc.NiRFSG/ConfigureSoftwareScriptTrigger', + nirfsg__pb2.ConfigureSoftwareScriptTriggerRequest.SerializeToString, + nirfsg__pb2.ConfigureSoftwareScriptTriggerResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def ConfigureSoftwareStartTrigger(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, '/nirfsg_grpc.NiRFSG/ConfigureSoftwareStartTrigger', + nirfsg__pb2.ConfigureSoftwareStartTriggerRequest.SerializeToString, + nirfsg__pb2.ConfigureSoftwareStartTriggerResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def ConfigureUpconverterPLLSettlingTime(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, '/nirfsg_grpc.NiRFSG/ConfigureUpconverterPLLSettlingTime', + nirfsg__pb2.ConfigureUpconverterPLLSettlingTimeRequest.SerializeToString, + nirfsg__pb2.ConfigureUpconverterPLLSettlingTimeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def CreateConfigurationList(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, '/nirfsg_grpc.NiRFSG/CreateConfigurationList', + nirfsg__pb2.CreateConfigurationListRequest.SerializeToString, + nirfsg__pb2.CreateConfigurationListResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def CreateConfigurationListStep(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, '/nirfsg_grpc.NiRFSG/CreateConfigurationListStep', + nirfsg__pb2.CreateConfigurationListStepRequest.SerializeToString, + nirfsg__pb2.CreateConfigurationListStepResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def CreateDeembeddingSparameterTableArray(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, '/nirfsg_grpc.NiRFSG/CreateDeembeddingSparameterTableArray', + nirfsg__pb2.CreateDeembeddingSparameterTableArrayRequest.SerializeToString, + nirfsg__pb2.CreateDeembeddingSparameterTableArrayResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def CreateDeembeddingSparameterTableS2PFile(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, '/nirfsg_grpc.NiRFSG/CreateDeembeddingSparameterTableS2PFile', + nirfsg__pb2.CreateDeembeddingSparameterTableS2PFileRequest.SerializeToString, + nirfsg__pb2.CreateDeembeddingSparameterTableS2PFileResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def DeleteAllDeembeddingTables(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, '/nirfsg_grpc.NiRFSG/DeleteAllDeembeddingTables', + nirfsg__pb2.DeleteAllDeembeddingTablesRequest.SerializeToString, + nirfsg__pb2.DeleteAllDeembeddingTablesResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def DeleteConfigurationList(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, '/nirfsg_grpc.NiRFSG/DeleteConfigurationList', + nirfsg__pb2.DeleteConfigurationListRequest.SerializeToString, + nirfsg__pb2.DeleteConfigurationListResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def DeleteDeembeddingTable(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, '/nirfsg_grpc.NiRFSG/DeleteDeembeddingTable', + nirfsg__pb2.DeleteDeembeddingTableRequest.SerializeToString, + nirfsg__pb2.DeleteDeembeddingTableResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def DeleteScript(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, '/nirfsg_grpc.NiRFSG/DeleteScript', + nirfsg__pb2.DeleteScriptRequest.SerializeToString, + nirfsg__pb2.DeleteScriptResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def Disable(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, '/nirfsg_grpc.NiRFSG/Disable', + nirfsg__pb2.DisableRequest.SerializeToString, + nirfsg__pb2.DisableResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def DisableAllModulation(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, '/nirfsg_grpc.NiRFSG/DisableAllModulation', + nirfsg__pb2.DisableAllModulationRequest.SerializeToString, + nirfsg__pb2.DisableAllModulationResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def DisableConfigurationListStepTrigger(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, '/nirfsg_grpc.NiRFSG/DisableConfigurationListStepTrigger', + nirfsg__pb2.DisableConfigurationListStepTriggerRequest.SerializeToString, + nirfsg__pb2.DisableConfigurationListStepTriggerResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def DisableScriptTrigger(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, '/nirfsg_grpc.NiRFSG/DisableScriptTrigger', + nirfsg__pb2.DisableScriptTriggerRequest.SerializeToString, + nirfsg__pb2.DisableScriptTriggerResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def DisableStartTrigger(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, '/nirfsg_grpc.NiRFSG/DisableStartTrigger', + nirfsg__pb2.DisableStartTriggerRequest.SerializeToString, + nirfsg__pb2.DisableStartTriggerResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def ErrorMessage(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, '/nirfsg_grpc.NiRFSG/ErrorMessage', + nirfsg__pb2.ErrorMessageRequest.SerializeToString, + nirfsg__pb2.ErrorMessageResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def ErrorQuery(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, '/nirfsg_grpc.NiRFSG/ErrorQuery', + nirfsg__pb2.ErrorQueryRequest.SerializeToString, + nirfsg__pb2.ErrorQueryResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def ExportSignal(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, '/nirfsg_grpc.NiRFSG/ExportSignal', + nirfsg__pb2.ExportSignalRequest.SerializeToString, + nirfsg__pb2.ExportSignalResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def GetAllNamedWaveformNames(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, '/nirfsg_grpc.NiRFSG/GetAllNamedWaveformNames', + nirfsg__pb2.GetAllNamedWaveformNamesRequest.SerializeToString, + nirfsg__pb2.GetAllNamedWaveformNamesResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def GetAllScriptNames(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, '/nirfsg_grpc.NiRFSG/GetAllScriptNames', + nirfsg__pb2.GetAllScriptNamesRequest.SerializeToString, + nirfsg__pb2.GetAllScriptNamesResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def GetScript(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, '/nirfsg_grpc.NiRFSG/GetScript', + nirfsg__pb2.GetScriptRequest.SerializeToString, + nirfsg__pb2.GetScriptResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def GetAttributeViBoolean(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, '/nirfsg_grpc.NiRFSG/GetAttributeViBoolean', + nirfsg__pb2.GetAttributeViBooleanRequest.SerializeToString, + nirfsg__pb2.GetAttributeViBooleanResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def GetAttributeViInt32(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, '/nirfsg_grpc.NiRFSG/GetAttributeViInt32', + nirfsg__pb2.GetAttributeViInt32Request.SerializeToString, + nirfsg__pb2.GetAttributeViInt32Response.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def GetAttributeViInt64(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, '/nirfsg_grpc.NiRFSG/GetAttributeViInt64', + nirfsg__pb2.GetAttributeViInt64Request.SerializeToString, + nirfsg__pb2.GetAttributeViInt64Response.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def GetAttributeViReal64(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, '/nirfsg_grpc.NiRFSG/GetAttributeViReal64', + nirfsg__pb2.GetAttributeViReal64Request.SerializeToString, + nirfsg__pb2.GetAttributeViReal64Response.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def GetAttributeViSession(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, '/nirfsg_grpc.NiRFSG/GetAttributeViSession', + nirfsg__pb2.GetAttributeViSessionRequest.SerializeToString, + nirfsg__pb2.GetAttributeViSessionResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def GetAttributeViString(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, '/nirfsg_grpc.NiRFSG/GetAttributeViString', + nirfsg__pb2.GetAttributeViStringRequest.SerializeToString, + nirfsg__pb2.GetAttributeViStringResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def GetChannelName(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, '/nirfsg_grpc.NiRFSG/GetChannelName', + nirfsg__pb2.GetChannelNameRequest.SerializeToString, + nirfsg__pb2.GetChannelNameResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def GetDeembeddingSparameters(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, '/nirfsg_grpc.NiRFSG/GetDeembeddingSparameters', + nirfsg__pb2.GetDeembeddingSparametersRequest.SerializeToString, + nirfsg__pb2.GetDeembeddingSparametersResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def GetError(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, '/nirfsg_grpc.NiRFSG/GetError', + nirfsg__pb2.GetErrorRequest.SerializeToString, + nirfsg__pb2.GetErrorResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def GetExternalCalibrationLastDateAndTime(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, '/nirfsg_grpc.NiRFSG/GetExternalCalibrationLastDateAndTime', + nirfsg__pb2.GetExternalCalibrationLastDateAndTimeRequest.SerializeToString, + nirfsg__pb2.GetExternalCalibrationLastDateAndTimeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def GetMaxSettablePower(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, '/nirfsg_grpc.NiRFSG/GetMaxSettablePower', + nirfsg__pb2.GetMaxSettablePowerRequest.SerializeToString, + nirfsg__pb2.GetMaxSettablePowerResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def GetSelfCalibrationDateAndTime(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, '/nirfsg_grpc.NiRFSG/GetSelfCalibrationDateAndTime', + nirfsg__pb2.GetSelfCalibrationDateAndTimeRequest.SerializeToString, + nirfsg__pb2.GetSelfCalibrationDateAndTimeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def GetSelfCalibrationTemperature(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, '/nirfsg_grpc.NiRFSG/GetSelfCalibrationTemperature', + nirfsg__pb2.GetSelfCalibrationTemperatureRequest.SerializeToString, + nirfsg__pb2.GetSelfCalibrationTemperatureResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def GetTerminalName(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, '/nirfsg_grpc.NiRFSG/GetTerminalName', + nirfsg__pb2.GetTerminalNameRequest.SerializeToString, + nirfsg__pb2.GetTerminalNameResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def GetUserData(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, '/nirfsg_grpc.NiRFSG/GetUserData', + nirfsg__pb2.GetUserDataRequest.SerializeToString, + nirfsg__pb2.GetUserDataResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def GetWaveformBurstStartLocations(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, '/nirfsg_grpc.NiRFSG/GetWaveformBurstStartLocations', + nirfsg__pb2.GetWaveformBurstStartLocationsRequest.SerializeToString, + nirfsg__pb2.GetWaveformBurstStartLocationsResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def GetWaveformBurstStopLocations(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, '/nirfsg_grpc.NiRFSG/GetWaveformBurstStopLocations', + nirfsg__pb2.GetWaveformBurstStopLocationsRequest.SerializeToString, + nirfsg__pb2.GetWaveformBurstStopLocationsResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def GetWaveformMarkerEventLocations(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, '/nirfsg_grpc.NiRFSG/GetWaveformMarkerEventLocations', + nirfsg__pb2.GetWaveformMarkerEventLocationsRequest.SerializeToString, + nirfsg__pb2.GetWaveformMarkerEventLocationsResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def Init(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, '/nirfsg_grpc.NiRFSG/Init', + nirfsg__pb2.InitRequest.SerializeToString, + nirfsg__pb2.InitResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def InitWithOptions(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, '/nirfsg_grpc.NiRFSG/InitWithOptions', + nirfsg__pb2.InitWithOptionsRequest.SerializeToString, + nirfsg__pb2.InitWithOptionsResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def Initiate(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, '/nirfsg_grpc.NiRFSG/Initiate', + nirfsg__pb2.InitiateRequest.SerializeToString, + nirfsg__pb2.InitiateResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def InvalidateAllAttributes(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, '/nirfsg_grpc.NiRFSG/InvalidateAllAttributes', + nirfsg__pb2.InvalidateAllAttributesRequest.SerializeToString, + nirfsg__pb2.InvalidateAllAttributesResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def LoadConfigurationsFromFile(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, '/nirfsg_grpc.NiRFSG/LoadConfigurationsFromFile', + nirfsg__pb2.LoadConfigurationsFromFileRequest.SerializeToString, + nirfsg__pb2.LoadConfigurationsFromFileResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def PerformPowerSearch(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, '/nirfsg_grpc.NiRFSG/PerformPowerSearch', + nirfsg__pb2.PerformPowerSearchRequest.SerializeToString, + nirfsg__pb2.PerformPowerSearchResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def PerformThermalCorrection(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, '/nirfsg_grpc.NiRFSG/PerformThermalCorrection', + nirfsg__pb2.PerformThermalCorrectionRequest.SerializeToString, + nirfsg__pb2.PerformThermalCorrectionResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def QueryArbWaveformCapabilities(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, '/nirfsg_grpc.NiRFSG/QueryArbWaveformCapabilities', + nirfsg__pb2.QueryArbWaveformCapabilitiesRequest.SerializeToString, + nirfsg__pb2.QueryArbWaveformCapabilitiesResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def ReadAndDownloadWaveformFromFileTDMS(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, '/nirfsg_grpc.NiRFSG/ReadAndDownloadWaveformFromFileTDMS', + nirfsg__pb2.ReadAndDownloadWaveformFromFileTDMSRequest.SerializeToString, + nirfsg__pb2.ReadAndDownloadWaveformFromFileTDMSResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def Reset(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, '/nirfsg_grpc.NiRFSG/Reset', + nirfsg__pb2.ResetRequest.SerializeToString, + nirfsg__pb2.ResetResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def ResetAttribute(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, '/nirfsg_grpc.NiRFSG/ResetAttribute', + nirfsg__pb2.ResetAttributeRequest.SerializeToString, + nirfsg__pb2.ResetAttributeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def ResetDevice(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, '/nirfsg_grpc.NiRFSG/ResetDevice', + nirfsg__pb2.ResetDeviceRequest.SerializeToString, + nirfsg__pb2.ResetDeviceResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def ResetWithDefaults(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, '/nirfsg_grpc.NiRFSG/ResetWithDefaults', + nirfsg__pb2.ResetWithDefaultsRequest.SerializeToString, + nirfsg__pb2.ResetWithDefaultsResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def ResetWithOptions(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, '/nirfsg_grpc.NiRFSG/ResetWithOptions', + nirfsg__pb2.ResetWithOptionsRequest.SerializeToString, + nirfsg__pb2.ResetWithOptionsResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def RevisionQuery(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, '/nirfsg_grpc.NiRFSG/RevisionQuery', + nirfsg__pb2.RevisionQueryRequest.SerializeToString, + nirfsg__pb2.RevisionQueryResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def SaveConfigurationsToFile(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, '/nirfsg_grpc.NiRFSG/SaveConfigurationsToFile', + nirfsg__pb2.SaveConfigurationsToFileRequest.SerializeToString, + nirfsg__pb2.SaveConfigurationsToFileResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def SelectArbWaveform(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, '/nirfsg_grpc.NiRFSG/SelectArbWaveform', + nirfsg__pb2.SelectArbWaveformRequest.SerializeToString, + nirfsg__pb2.SelectArbWaveformResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def SelfCal(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, '/nirfsg_grpc.NiRFSG/SelfCal', + nirfsg__pb2.SelfCalRequest.SerializeToString, + nirfsg__pb2.SelfCalResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def SelfCalibrateRange(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, '/nirfsg_grpc.NiRFSG/SelfCalibrateRange', + nirfsg__pb2.SelfCalibrateRangeRequest.SerializeToString, + nirfsg__pb2.SelfCalibrateRangeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def SelfTest(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, '/nirfsg_grpc.NiRFSG/SelfTest', + nirfsg__pb2.SelfTestRequest.SerializeToString, + nirfsg__pb2.SelfTestResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def SendSoftwareEdgeTrigger(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, '/nirfsg_grpc.NiRFSG/SendSoftwareEdgeTrigger', + nirfsg__pb2.SendSoftwareEdgeTriggerRequest.SerializeToString, + nirfsg__pb2.SendSoftwareEdgeTriggerResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def SetArbWaveformNextWritePosition(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, '/nirfsg_grpc.NiRFSG/SetArbWaveformNextWritePosition', + nirfsg__pb2.SetArbWaveformNextWritePositionRequest.SerializeToString, + nirfsg__pb2.SetArbWaveformNextWritePositionResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def SetAttributeViBoolean(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, '/nirfsg_grpc.NiRFSG/SetAttributeViBoolean', + nirfsg__pb2.SetAttributeViBooleanRequest.SerializeToString, + nirfsg__pb2.SetAttributeViBooleanResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def SetAttributeViInt32(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, '/nirfsg_grpc.NiRFSG/SetAttributeViInt32', + nirfsg__pb2.SetAttributeViInt32Request.SerializeToString, + nirfsg__pb2.SetAttributeViInt32Response.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def SetAttributeViInt64(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, '/nirfsg_grpc.NiRFSG/SetAttributeViInt64', + nirfsg__pb2.SetAttributeViInt64Request.SerializeToString, + nirfsg__pb2.SetAttributeViInt64Response.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def SetAttributeViReal64(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, '/nirfsg_grpc.NiRFSG/SetAttributeViReal64', + nirfsg__pb2.SetAttributeViReal64Request.SerializeToString, + nirfsg__pb2.SetAttributeViReal64Response.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def SetAttributeViSession(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, '/nirfsg_grpc.NiRFSG/SetAttributeViSession', + nirfsg__pb2.SetAttributeViSessionRequest.SerializeToString, + nirfsg__pb2.SetAttributeViSessionResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def SetAttributeViString(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, '/nirfsg_grpc.NiRFSG/SetAttributeViString', + nirfsg__pb2.SetAttributeViStringRequest.SerializeToString, + nirfsg__pb2.SetAttributeViStringResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def SetUserData(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, '/nirfsg_grpc.NiRFSG/SetUserData', + nirfsg__pb2.SetUserDataRequest.SerializeToString, + nirfsg__pb2.SetUserDataResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def SetWaveformBurstStartLocations(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, '/nirfsg_grpc.NiRFSG/SetWaveformBurstStartLocations', + nirfsg__pb2.SetWaveformBurstStartLocationsRequest.SerializeToString, + nirfsg__pb2.SetWaveformBurstStartLocationsResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def SetWaveformBurstStopLocations(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, '/nirfsg_grpc.NiRFSG/SetWaveformBurstStopLocations', + nirfsg__pb2.SetWaveformBurstStopLocationsRequest.SerializeToString, + nirfsg__pb2.SetWaveformBurstStopLocationsResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def SetWaveformMarkerEventLocations(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, '/nirfsg_grpc.NiRFSG/SetWaveformMarkerEventLocations', + nirfsg__pb2.SetWaveformMarkerEventLocationsRequest.SerializeToString, + nirfsg__pb2.SetWaveformMarkerEventLocationsResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def WaitUntilSettled(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, '/nirfsg_grpc.NiRFSG/WaitUntilSettled', + nirfsg__pb2.WaitUntilSettledRequest.SerializeToString, + nirfsg__pb2.WaitUntilSettledResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def WriteArbWaveform(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, '/nirfsg_grpc.NiRFSG/WriteArbWaveform', + nirfsg__pb2.WriteArbWaveformRequest.SerializeToString, + nirfsg__pb2.WriteArbWaveformResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def WriteArbWaveformComplexF32(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, '/nirfsg_grpc.NiRFSG/WriteArbWaveformComplexF32', + nirfsg__pb2.WriteArbWaveformComplexF32Request.SerializeToString, + nirfsg__pb2.WriteArbWaveformComplexF32Response.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def WriteArbWaveformComplexF64(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, '/nirfsg_grpc.NiRFSG/WriteArbWaveformComplexF64', + nirfsg__pb2.WriteArbWaveformComplexF64Request.SerializeToString, + nirfsg__pb2.WriteArbWaveformComplexF64Response.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def WriteArbWaveformComplexI16(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, '/nirfsg_grpc.NiRFSG/WriteArbWaveformComplexI16', + nirfsg__pb2.WriteArbWaveformComplexI16Request.SerializeToString, + nirfsg__pb2.WriteArbWaveformComplexI16Response.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def WriteArbWaveformF32(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, '/nirfsg_grpc.NiRFSG/WriteArbWaveformF32', + nirfsg__pb2.WriteArbWaveformF32Request.SerializeToString, + nirfsg__pb2.WriteArbWaveformF32Response.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def WriteScript(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, '/nirfsg_grpc.NiRFSG/WriteScript', + nirfsg__pb2.WriteScriptRequest.SerializeToString, + nirfsg__pb2.WriteScriptResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) diff --git a/generated/nirfsg/nirfsg/session.py b/generated/nirfsg/nirfsg/session.py index 5770a5b90..002e68253 100644 --- a/generated/nirfsg/nirfsg/session.py +++ b/generated/nirfsg/nirfsg/session.py @@ -5600,7 +5600,7 @@ def unlock(self): class Session(_SessionBase): '''An NI-RFSG session to the NI-RFSG driver''' - def __init__(self, resource_name, id_query=False, reset_device=False, options={}): + def __init__(self, resource_name, id_query=False, reset_device=False, options={}, *, grpc_options=None): r'''An NI-RFSG session to the NI-RFSG driver Opens a session to the device you specify as the RESOURCE_NAME and returns a ViSession handle that you use to identify the NI-RFSG device in all subsequent NI-RFSG method calls. @@ -5679,12 +5679,18 @@ def __init__(self, resource_name, id_query=False, reset_device=False, options={} | driver_setup | {} | +-------------------------+---------+ + grpc_options (nirfsg.grpc_session_options.GrpcSessionOptions): MeasurementLink gRPC session options + Returns: new_vi (int): Returns a ViSession handle that you use to identify the NI-RFSG device in all subsequent NI-RFSG method calls. ''' - interpreter = _library_interpreter.LibraryInterpreter(encoding='windows-1251') + if grpc_options: + import nirfsg._grpc_stub_interpreter as _grpc_stub_interpreter + interpreter = _grpc_stub_interpreter.GrpcStubInterpreter(grpc_options) + else: + interpreter = _library_interpreter.LibraryInterpreter(encoding='windows-1251') # Initialize the superclass with default values first, populate them later super(Session, self).__init__( @@ -5702,7 +5708,9 @@ def __init__(self, resource_name, id_query=False, reset_device=False, options={} # with the actual session handle. self._interpreter.set_session_handle(self._init_with_options(resource_name, id_query, reset_device, options)) - self.tclk = nitclk.SessionReference(self._interpreter.get_session_handle()) + # NI-TClk does not work over NI gRPC Device Server + if not grpc_options: + self.tclk = nitclk.SessionReference(self._interpreter.get_session_handle()) # Store the parameter list for later printing in __repr__ param_list = [] @@ -5729,7 +5737,8 @@ def __enter__(self): return self def __exit__(self, exc_type, exc_value, traceback): - self.close() + if self._interpreter._close_on_exit: + self.close() def initiate(self): '''initiate diff --git a/generated/nirfsg/nirfsg/session_pb2.py b/generated/nirfsg/nirfsg/session_pb2.py new file mode 100644 index 000000000..73b79bf26 --- /dev/null +++ b/generated/nirfsg/nirfsg/session_pb2.py @@ -0,0 +1,52 @@ +# -*- coding: utf-8 -*- +# Generated by the protocol buffer compiler. DO NOT EDIT! +# source: session.proto +"""Generated protocol buffer code.""" +from google.protobuf import descriptor as _descriptor +from google.protobuf import descriptor_pool as _descriptor_pool +from google.protobuf import symbol_database as _symbol_database +from google.protobuf.internal import builder as _builder +# @@protoc_insertion_point(imports) + +_sym_db = _symbol_database.Default() + + + + +DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\rsession.proto\x12\rnidevice_grpc\"2\n\x07Session\x12\x0e\n\x04name\x18\x01 \x01(\tH\x00\x12\x0c\n\x02id\x18\x02 \x01(\rH\x00\x42\t\n\x07session\"j\n\x10\x44\x65viceProperties\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\r\n\x05model\x18\x02 \x01(\t\x12\x0e\n\x06vendor\x18\x03 \x01(\t\x12\x15\n\rserial_number\x18\x04 \x01(\t\x12\x12\n\nproduct_id\x18\x05 \x01(\r\"\x19\n\x17\x45numerateDevicesRequest\"L\n\x18\x45numerateDevicesResponse\x12\x30\n\x07\x64\x65vices\x18\x01 \x03(\x0b\x32\x1f.nidevice_grpc.DeviceProperties\";\n\x0eReserveRequest\x12\x16\n\x0ereservation_id\x18\x01 \x01(\t\x12\x11\n\tclient_id\x18\x02 \x01(\t\"&\n\x0fReserveResponse\x12\x13\n\x0bis_reserved\x18\x01 \x01(\x08\"F\n\x19IsReservedByClientRequest\x12\x16\n\x0ereservation_id\x18\x01 \x01(\t\x12\x11\n\tclient_id\x18\x02 \x01(\t\"1\n\x1aIsReservedByClientResponse\x12\x13\n\x0bis_reserved\x18\x01 \x01(\x08\"=\n\x10UnreserveRequest\x12\x16\n\x0ereservation_id\x18\x01 \x01(\t\x12\x11\n\tclient_id\x18\x02 \x01(\t\"*\n\x11UnreserveResponse\x12\x15\n\ris_unreserved\x18\x01 \x01(\x08\"\x14\n\x12ResetServerRequest\".\n\x13ResetServerResponse\x12\x17\n\x0fis_server_reset\x18\x01 \x01(\x08*\xbc\x01\n\x1dSessionInitializationBehavior\x12/\n+SESSION_INITIALIZATION_BEHAVIOR_UNSPECIFIED\x10\x00\x12\x32\n.SESSION_INITIALIZATION_BEHAVIOR_INITIALIZE_NEW\x10\x01\x12\x36\n2SESSION_INITIALIZATION_BEHAVIOR_ATTACH_TO_EXISTING\x10\x02\x32\xd2\x03\n\x10SessionUtilities\x12\x63\n\x10\x45numerateDevices\x12&.nidevice_grpc.EnumerateDevicesRequest\x1a\'.nidevice_grpc.EnumerateDevicesResponse\x12H\n\x07Reserve\x12\x1d.nidevice_grpc.ReserveRequest\x1a\x1e.nidevice_grpc.ReserveResponse\x12i\n\x12IsReservedByClient\x12(.nidevice_grpc.IsReservedByClientRequest\x1a).nidevice_grpc.IsReservedByClientResponse\x12N\n\tUnreserve\x12\x1f.nidevice_grpc.UnreserveRequest\x1a .nidevice_grpc.UnreserveResponse\x12T\n\x0bResetServer\x12!.nidevice_grpc.ResetServerRequest\x1a\".nidevice_grpc.ResetServerResponseBB\n\x12\x63om.ni.grpc.deviceB\x08NiDeviceP\x01\xaa\x02\x1fNationalInstruments.Grpc.Deviceb\x06proto3') + +_globals = globals() +_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals) +_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'session_pb2', _globals) +if _descriptor._USE_C_DESCRIPTORS == False: + DESCRIPTOR._options = None + DESCRIPTOR._serialized_options = b'\n\022com.ni.grpc.deviceB\010NiDeviceP\001\252\002\037NationalInstruments.Grpc.Device' + _globals['_SESSIONINITIALIZATIONBEHAVIOR']._serialized_start=699 + _globals['_SESSIONINITIALIZATIONBEHAVIOR']._serialized_end=887 + _globals['_SESSION']._serialized_start=32 + _globals['_SESSION']._serialized_end=82 + _globals['_DEVICEPROPERTIES']._serialized_start=84 + _globals['_DEVICEPROPERTIES']._serialized_end=190 + _globals['_ENUMERATEDEVICESREQUEST']._serialized_start=192 + _globals['_ENUMERATEDEVICESREQUEST']._serialized_end=217 + _globals['_ENUMERATEDEVICESRESPONSE']._serialized_start=219 + _globals['_ENUMERATEDEVICESRESPONSE']._serialized_end=295 + _globals['_RESERVEREQUEST']._serialized_start=297 + _globals['_RESERVEREQUEST']._serialized_end=356 + _globals['_RESERVERESPONSE']._serialized_start=358 + _globals['_RESERVERESPONSE']._serialized_end=396 + _globals['_ISRESERVEDBYCLIENTREQUEST']._serialized_start=398 + _globals['_ISRESERVEDBYCLIENTREQUEST']._serialized_end=468 + _globals['_ISRESERVEDBYCLIENTRESPONSE']._serialized_start=470 + _globals['_ISRESERVEDBYCLIENTRESPONSE']._serialized_end=519 + _globals['_UNRESERVEREQUEST']._serialized_start=521 + _globals['_UNRESERVEREQUEST']._serialized_end=582 + _globals['_UNRESERVERESPONSE']._serialized_start=584 + _globals['_UNRESERVERESPONSE']._serialized_end=626 + _globals['_RESETSERVERREQUEST']._serialized_start=628 + _globals['_RESETSERVERREQUEST']._serialized_end=648 + _globals['_RESETSERVERRESPONSE']._serialized_start=650 + _globals['_RESETSERVERRESPONSE']._serialized_end=696 + _globals['_SESSIONUTILITIES']._serialized_start=890 + _globals['_SESSIONUTILITIES']._serialized_end=1356 +# @@protoc_insertion_point(module_scope) diff --git a/generated/nirfsg/nirfsg/session_pb2_grpc.py b/generated/nirfsg/nirfsg/session_pb2_grpc.py new file mode 100644 index 000000000..28709265d --- /dev/null +++ b/generated/nirfsg/nirfsg/session_pb2_grpc.py @@ -0,0 +1,204 @@ +# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! +"""Client and server classes corresponding to protobuf-defined services.""" +import grpc + +from . import session_pb2 as session__pb2 + + +class SessionUtilitiesStub(object): + """Missing associated documentation comment in .proto file.""" + + def __init__(self, channel): + """Constructor. + + Args: + channel: A grpc.Channel. + """ + self.EnumerateDevices = channel.unary_unary( + '/nidevice_grpc.SessionUtilities/EnumerateDevices', + request_serializer=session__pb2.EnumerateDevicesRequest.SerializeToString, + response_deserializer=session__pb2.EnumerateDevicesResponse.FromString, + ) + self.Reserve = channel.unary_unary( + '/nidevice_grpc.SessionUtilities/Reserve', + request_serializer=session__pb2.ReserveRequest.SerializeToString, + response_deserializer=session__pb2.ReserveResponse.FromString, + ) + self.IsReservedByClient = channel.unary_unary( + '/nidevice_grpc.SessionUtilities/IsReservedByClient', + request_serializer=session__pb2.IsReservedByClientRequest.SerializeToString, + response_deserializer=session__pb2.IsReservedByClientResponse.FromString, + ) + self.Unreserve = channel.unary_unary( + '/nidevice_grpc.SessionUtilities/Unreserve', + request_serializer=session__pb2.UnreserveRequest.SerializeToString, + response_deserializer=session__pb2.UnreserveResponse.FromString, + ) + self.ResetServer = channel.unary_unary( + '/nidevice_grpc.SessionUtilities/ResetServer', + request_serializer=session__pb2.ResetServerRequest.SerializeToString, + response_deserializer=session__pb2.ResetServerResponse.FromString, + ) + + +class SessionUtilitiesServicer(object): + """Missing associated documentation comment in .proto file.""" + + def EnumerateDevices(self, request, context): + """Provides a list of devices or chassis connected to server under localhost + """ + context.set_code(grpc.StatusCode.UNIMPLEMENTED) + context.set_details('Method not implemented!') + raise NotImplementedError('Method not implemented!') + + def Reserve(self, request, context): + """Reserve a set of client defined resources for exclusive use + """ + context.set_code(grpc.StatusCode.UNIMPLEMENTED) + context.set_details('Method not implemented!') + raise NotImplementedError('Method not implemented!') + + def IsReservedByClient(self, request, context): + """Determines if a set of client defined resources is currently reserved by a + specific client + """ + context.set_code(grpc.StatusCode.UNIMPLEMENTED) + context.set_details('Method not implemented!') + raise NotImplementedError('Method not implemented!') + + def Unreserve(self, request, context): + """Unreserves a previously reserved resource + """ + context.set_code(grpc.StatusCode.UNIMPLEMENTED) + context.set_details('Method not implemented!') + raise NotImplementedError('Method not implemented!') + + def ResetServer(self, request, context): + """Resets the server to a default state with no open sessions + """ + context.set_code(grpc.StatusCode.UNIMPLEMENTED) + context.set_details('Method not implemented!') + raise NotImplementedError('Method not implemented!') + + +def add_SessionUtilitiesServicer_to_server(servicer, server): + rpc_method_handlers = { + 'EnumerateDevices': grpc.unary_unary_rpc_method_handler( + servicer.EnumerateDevices, + request_deserializer=session__pb2.EnumerateDevicesRequest.FromString, + response_serializer=session__pb2.EnumerateDevicesResponse.SerializeToString, + ), + 'Reserve': grpc.unary_unary_rpc_method_handler( + servicer.Reserve, + request_deserializer=session__pb2.ReserveRequest.FromString, + response_serializer=session__pb2.ReserveResponse.SerializeToString, + ), + 'IsReservedByClient': grpc.unary_unary_rpc_method_handler( + servicer.IsReservedByClient, + request_deserializer=session__pb2.IsReservedByClientRequest.FromString, + response_serializer=session__pb2.IsReservedByClientResponse.SerializeToString, + ), + 'Unreserve': grpc.unary_unary_rpc_method_handler( + servicer.Unreserve, + request_deserializer=session__pb2.UnreserveRequest.FromString, + response_serializer=session__pb2.UnreserveResponse.SerializeToString, + ), + 'ResetServer': grpc.unary_unary_rpc_method_handler( + servicer.ResetServer, + request_deserializer=session__pb2.ResetServerRequest.FromString, + response_serializer=session__pb2.ResetServerResponse.SerializeToString, + ), + } + generic_handler = grpc.method_handlers_generic_handler( + 'nidevice_grpc.SessionUtilities', rpc_method_handlers) + server.add_generic_rpc_handlers((generic_handler,)) + + + # This class is part of an EXPERIMENTAL API. +class SessionUtilities(object): + """Missing associated documentation comment in .proto file.""" + + @staticmethod + def EnumerateDevices(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, '/nidevice_grpc.SessionUtilities/EnumerateDevices', + session__pb2.EnumerateDevicesRequest.SerializeToString, + session__pb2.EnumerateDevicesResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def Reserve(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, '/nidevice_grpc.SessionUtilities/Reserve', + session__pb2.ReserveRequest.SerializeToString, + session__pb2.ReserveResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def IsReservedByClient(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, '/nidevice_grpc.SessionUtilities/IsReservedByClient', + session__pb2.IsReservedByClientRequest.SerializeToString, + session__pb2.IsReservedByClientResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def Unreserve(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, '/nidevice_grpc.SessionUtilities/Unreserve', + session__pb2.UnreserveRequest.SerializeToString, + session__pb2.UnreserveResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) + + @staticmethod + def ResetServer(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, '/nidevice_grpc.SessionUtilities/ResetServer', + session__pb2.ResetServerRequest.SerializeToString, + session__pb2.ResetServerResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata) diff --git a/generated/nirfsg/setup.py b/generated/nirfsg/setup.py index 5f6a6e009..b3785491c 100644 --- a/generated/nirfsg/setup.py +++ b/generated/nirfsg/setup.py @@ -35,6 +35,12 @@ def read_contents(file_to_read): 'nitclk', 'numpy', ], + extras_require={ + 'grpc': [ + 'grpcio>=1.59.0,<2.0', + 'protobuf>=4.21.6' + ], + }, classifiers=[ "Development Status :: 4 - Beta", "Intended Audience :: Developers", diff --git a/generated/nirfsg/tox-system_tests.ini b/generated/nirfsg/tox-system_tests.ini index 3bb81aa8c..f6a4e6b11 100644 --- a/generated/nirfsg/tox-system_tests.ini +++ b/generated/nirfsg/tox-system_tests.ini @@ -45,6 +45,7 @@ deps = nirfsg-system_tests: hightime nirfsg-system_tests: fasteners nirfsg-system_tests: pytest-json + nirfsg-system_tests: .[grpc] nirfsg-coverage: coverage diff --git a/src/nirfsg/metadata/functions.py b/src/nirfsg/metadata/functions.py index 3ab6eadc2..ea0a800d8 100644 --- a/src/nirfsg/metadata/functions.py +++ b/src/nirfsg/metadata/functions.py @@ -4120,6 +4120,7 @@ 'description': 'Specifies the value to which you want to set the attribute.', 'note': 'Some values may not be valid. The allowed values depend on the current settings of the instrument session.' }, + 'grpc_enum': 'NiRFSGInt32AttributeValues', 'name': 'value', 'type': 'ViInt32', 'use_array': False, @@ -4179,6 +4180,7 @@ 'documentation': { 'description': 'Pass the value to which you want to set the attribute.\n\n
\nSome values may not be valid. The allowed values depend on the current settings of the instrument session.\n
' }, + 'grpc_enum': 'NiRFSGInt64AttributeValues', 'name': 'value', 'type': 'ViInt64', 'use_array': False, @@ -4239,6 +4241,7 @@ 'description': 'Pass the value to which you want to set the attribute.', 'note': 'Some values may not be valid. The allowed values depend on the current settings of the instrument session.' }, + 'grpc_enum': 'NiRFSGReal64AttributeValues', 'name': 'value', 'type': 'ViReal64', 'use_array': False, @@ -4359,6 +4362,7 @@ 'description': 'Pass the value to which you want to set the attribute.', 'note': 'Some values may not be valid. The allowed values depend on the current settings of the instrument session.' }, + 'grpc_mapped_enum': 'NiRFSGStringAttributeValuesMapped', 'name': 'value', 'type': 'ViConstString', 'use_array': False, diff --git a/src/nirfsg/metadata/nirfsg.proto b/src/nirfsg/metadata/nirfsg.proto new file mode 100644 index 000000000..3d46ed08c --- /dev/null +++ b/src/nirfsg/metadata/nirfsg.proto @@ -0,0 +1,2066 @@ + +//--------------------------------------------------------------------- +// This file is generated from NI-RFSG API metadata version 25.5.0 +//--------------------------------------------------------------------- +// Proto file for the NI-RFSG Metadata +//--------------------------------------------------------------------- +syntax = "proto3"; + +option java_multiple_files = true; +option java_package = "com.ni.grpc.nirfsg"; +option java_outer_classname = "NiRFSG"; +option csharp_namespace = "NationalInstruments.Grpc.NiRFSG"; + +package nirfsg_grpc; + +import "nidevice.proto"; +import "session.proto"; + +service NiRFSG { + rpc Abort(AbortRequest) returns (AbortResponse); + rpc AllocateArbWaveform(AllocateArbWaveformRequest) returns (AllocateArbWaveformResponse); + rpc CheckAttributeViBoolean(CheckAttributeViBooleanRequest) returns (CheckAttributeViBooleanResponse); + rpc CheckAttributeViInt32(CheckAttributeViInt32Request) returns (CheckAttributeViInt32Response); + rpc CheckAttributeViInt64(CheckAttributeViInt64Request) returns (CheckAttributeViInt64Response); + rpc CheckAttributeViReal64(CheckAttributeViReal64Request) returns (CheckAttributeViReal64Response); + rpc CheckAttributeViSession(CheckAttributeViSessionRequest) returns (CheckAttributeViSessionResponse); + rpc CheckAttributeViString(CheckAttributeViStringRequest) returns (CheckAttributeViStringResponse); + rpc CheckGenerationStatus(CheckGenerationStatusRequest) returns (CheckGenerationStatusResponse); + rpc CheckIfConfigurationListExists(CheckIfConfigurationListExistsRequest) returns (CheckIfConfigurationListExistsResponse); + rpc CheckIfScriptExists(CheckIfScriptExistsRequest) returns (CheckIfScriptExistsResponse); + rpc CheckIfWaveformExists(CheckIfWaveformExistsRequest) returns (CheckIfWaveformExistsResponse); + rpc ClearAllArbWaveforms(ClearAllArbWaveformsRequest) returns (ClearAllArbWaveformsResponse); + rpc ClearArbWaveform(ClearArbWaveformRequest) returns (ClearArbWaveformResponse); + rpc ClearError(ClearErrorRequest) returns (ClearErrorResponse); + rpc ClearSelfCalibrateRange(ClearSelfCalibrateRangeRequest) returns (ClearSelfCalibrateRangeResponse); + rpc Close(CloseRequest) returns (CloseResponse); + rpc Commit(CommitRequest) returns (CommitResponse); + rpc ConfigureDeembeddingTableInterpolationLinear(ConfigureDeembeddingTableInterpolationLinearRequest) returns (ConfigureDeembeddingTableInterpolationLinearResponse); + rpc ConfigureDeembeddingTableInterpolationNearest(ConfigureDeembeddingTableInterpolationNearestRequest) returns (ConfigureDeembeddingTableInterpolationNearestResponse); + rpc ConfigureDeembeddingTableInterpolationSpline(ConfigureDeembeddingTableInterpolationSplineRequest) returns (ConfigureDeembeddingTableInterpolationSplineResponse); + rpc ConfigureDigitalEdgeConfigurationListStepTrigger(ConfigureDigitalEdgeConfigurationListStepTriggerRequest) returns (ConfigureDigitalEdgeConfigurationListStepTriggerResponse); + rpc ConfigureDigitalEdgeScriptTrigger(ConfigureDigitalEdgeScriptTriggerRequest) returns (ConfigureDigitalEdgeScriptTriggerResponse); + rpc ConfigureDigitalEdgeStartTrigger(ConfigureDigitalEdgeStartTriggerRequest) returns (ConfigureDigitalEdgeStartTriggerResponse); + rpc ConfigureDigitalLevelScriptTrigger(ConfigureDigitalLevelScriptTriggerRequest) returns (ConfigureDigitalLevelScriptTriggerResponse); + rpc ConfigureDigitalModulationUserDefinedWaveform(ConfigureDigitalModulationUserDefinedWaveformRequest) returns (ConfigureDigitalModulationUserDefinedWaveformResponse); + rpc ConfigureGenerationMode(ConfigureGenerationModeRequest) returns (ConfigureGenerationModeResponse); + rpc ConfigureOutputEnabled(ConfigureOutputEnabledRequest) returns (ConfigureOutputEnabledResponse); + rpc ConfigureP2PEndpointFullnessStartTrigger(ConfigureP2PEndpointFullnessStartTriggerRequest) returns (ConfigureP2PEndpointFullnessStartTriggerResponse); + rpc ConfigurePXIChassisClk10(ConfigurePXIChassisClk10Request) returns (ConfigurePXIChassisClk10Response); + rpc ConfigurePowerLevelType(ConfigurePowerLevelTypeRequest) returns (ConfigurePowerLevelTypeResponse); + rpc ConfigureRF(ConfigureRFRequest) returns (ConfigureRFResponse); + rpc ConfigureRefClock(ConfigureRefClockRequest) returns (ConfigureRefClockResponse); + rpc ConfigureSignalBandwidth(ConfigureSignalBandwidthRequest) returns (ConfigureSignalBandwidthResponse); + rpc ConfigureSoftwareScriptTrigger(ConfigureSoftwareScriptTriggerRequest) returns (ConfigureSoftwareScriptTriggerResponse); + rpc ConfigureSoftwareStartTrigger(ConfigureSoftwareStartTriggerRequest) returns (ConfigureSoftwareStartTriggerResponse); + rpc ConfigureUpconverterPLLSettlingTime(ConfigureUpconverterPLLSettlingTimeRequest) returns (ConfigureUpconverterPLLSettlingTimeResponse); + rpc CreateConfigurationList(CreateConfigurationListRequest) returns (CreateConfigurationListResponse); + rpc CreateConfigurationListStep(CreateConfigurationListStepRequest) returns (CreateConfigurationListStepResponse); + rpc CreateDeembeddingSparameterTableArray(CreateDeembeddingSparameterTableArrayRequest) returns (CreateDeembeddingSparameterTableArrayResponse); + rpc CreateDeembeddingSparameterTableS2PFile(CreateDeembeddingSparameterTableS2PFileRequest) returns (CreateDeembeddingSparameterTableS2PFileResponse); + rpc DeleteAllDeembeddingTables(DeleteAllDeembeddingTablesRequest) returns (DeleteAllDeembeddingTablesResponse); + rpc DeleteConfigurationList(DeleteConfigurationListRequest) returns (DeleteConfigurationListResponse); + rpc DeleteDeembeddingTable(DeleteDeembeddingTableRequest) returns (DeleteDeembeddingTableResponse); + rpc DeleteScript(DeleteScriptRequest) returns (DeleteScriptResponse); + rpc Disable(DisableRequest) returns (DisableResponse); + rpc DisableAllModulation(DisableAllModulationRequest) returns (DisableAllModulationResponse); + rpc DisableConfigurationListStepTrigger(DisableConfigurationListStepTriggerRequest) returns (DisableConfigurationListStepTriggerResponse); + rpc DisableScriptTrigger(DisableScriptTriggerRequest) returns (DisableScriptTriggerResponse); + rpc DisableStartTrigger(DisableStartTriggerRequest) returns (DisableStartTriggerResponse); + rpc ErrorMessage(ErrorMessageRequest) returns (ErrorMessageResponse); + rpc ErrorQuery(ErrorQueryRequest) returns (ErrorQueryResponse); + rpc ExportSignal(ExportSignalRequest) returns (ExportSignalResponse); + rpc GetAllNamedWaveformNames(GetAllNamedWaveformNamesRequest) returns (GetAllNamedWaveformNamesResponse); + rpc GetAllScriptNames(GetAllScriptNamesRequest) returns (GetAllScriptNamesResponse); + rpc GetScript(GetScriptRequest) returns (GetScriptResponse); + rpc GetAttributeViBoolean(GetAttributeViBooleanRequest) returns (GetAttributeViBooleanResponse); + rpc GetAttributeViInt32(GetAttributeViInt32Request) returns (GetAttributeViInt32Response); + rpc GetAttributeViInt64(GetAttributeViInt64Request) returns (GetAttributeViInt64Response); + rpc GetAttributeViReal64(GetAttributeViReal64Request) returns (GetAttributeViReal64Response); + rpc GetAttributeViSession(GetAttributeViSessionRequest) returns (GetAttributeViSessionResponse); + rpc GetAttributeViString(GetAttributeViStringRequest) returns (GetAttributeViStringResponse); + rpc GetChannelName(GetChannelNameRequest) returns (GetChannelNameResponse); + rpc GetDeembeddingSparameters(GetDeembeddingSparametersRequest) returns (GetDeembeddingSparametersResponse); + rpc GetError(GetErrorRequest) returns (GetErrorResponse); + rpc GetExternalCalibrationLastDateAndTime(GetExternalCalibrationLastDateAndTimeRequest) returns (GetExternalCalibrationLastDateAndTimeResponse); + rpc GetMaxSettablePower(GetMaxSettablePowerRequest) returns (GetMaxSettablePowerResponse); + rpc GetSelfCalibrationDateAndTime(GetSelfCalibrationDateAndTimeRequest) returns (GetSelfCalibrationDateAndTimeResponse); + rpc GetSelfCalibrationTemperature(GetSelfCalibrationTemperatureRequest) returns (GetSelfCalibrationTemperatureResponse); + rpc GetTerminalName(GetTerminalNameRequest) returns (GetTerminalNameResponse); + rpc GetUserData(GetUserDataRequest) returns (GetUserDataResponse); + rpc GetWaveformBurstStartLocations(GetWaveformBurstStartLocationsRequest) returns (GetWaveformBurstStartLocationsResponse); + rpc GetWaveformBurstStopLocations(GetWaveformBurstStopLocationsRequest) returns (GetWaveformBurstStopLocationsResponse); + rpc GetWaveformMarkerEventLocations(GetWaveformMarkerEventLocationsRequest) returns (GetWaveformMarkerEventLocationsResponse); + rpc Init(InitRequest) returns (InitResponse); + rpc InitWithOptions(InitWithOptionsRequest) returns (InitWithOptionsResponse); + rpc Initiate(InitiateRequest) returns (InitiateResponse); + rpc InvalidateAllAttributes(InvalidateAllAttributesRequest) returns (InvalidateAllAttributesResponse); + rpc LoadConfigurationsFromFile(LoadConfigurationsFromFileRequest) returns (LoadConfigurationsFromFileResponse); + rpc PerformPowerSearch(PerformPowerSearchRequest) returns (PerformPowerSearchResponse); + rpc PerformThermalCorrection(PerformThermalCorrectionRequest) returns (PerformThermalCorrectionResponse); + rpc QueryArbWaveformCapabilities(QueryArbWaveformCapabilitiesRequest) returns (QueryArbWaveformCapabilitiesResponse); + rpc ReadAndDownloadWaveformFromFileTDMS(ReadAndDownloadWaveformFromFileTDMSRequest) returns (ReadAndDownloadWaveformFromFileTDMSResponse); + rpc Reset(ResetRequest) returns (ResetResponse); + rpc ResetAttribute(ResetAttributeRequest) returns (ResetAttributeResponse); + rpc ResetDevice(ResetDeviceRequest) returns (ResetDeviceResponse); + rpc ResetWithDefaults(ResetWithDefaultsRequest) returns (ResetWithDefaultsResponse); + rpc ResetWithOptions(ResetWithOptionsRequest) returns (ResetWithOptionsResponse); + rpc RevisionQuery(RevisionQueryRequest) returns (RevisionQueryResponse); + rpc SaveConfigurationsToFile(SaveConfigurationsToFileRequest) returns (SaveConfigurationsToFileResponse); + rpc SelectArbWaveform(SelectArbWaveformRequest) returns (SelectArbWaveformResponse); + rpc SelfCal(SelfCalRequest) returns (SelfCalResponse); + rpc SelfCalibrateRange(SelfCalibrateRangeRequest) returns (SelfCalibrateRangeResponse); + rpc SelfTest(SelfTestRequest) returns (SelfTestResponse); + rpc SendSoftwareEdgeTrigger(SendSoftwareEdgeTriggerRequest) returns (SendSoftwareEdgeTriggerResponse); + rpc SetArbWaveformNextWritePosition(SetArbWaveformNextWritePositionRequest) returns (SetArbWaveformNextWritePositionResponse); + rpc SetAttributeViBoolean(SetAttributeViBooleanRequest) returns (SetAttributeViBooleanResponse); + rpc SetAttributeViInt32(SetAttributeViInt32Request) returns (SetAttributeViInt32Response); + rpc SetAttributeViInt64(SetAttributeViInt64Request) returns (SetAttributeViInt64Response); + rpc SetAttributeViReal64(SetAttributeViReal64Request) returns (SetAttributeViReal64Response); + rpc SetAttributeViSession(SetAttributeViSessionRequest) returns (SetAttributeViSessionResponse); + rpc SetAttributeViString(SetAttributeViStringRequest) returns (SetAttributeViStringResponse); + rpc SetUserData(SetUserDataRequest) returns (SetUserDataResponse); + rpc SetWaveformBurstStartLocations(SetWaveformBurstStartLocationsRequest) returns (SetWaveformBurstStartLocationsResponse); + rpc SetWaveformBurstStopLocations(SetWaveformBurstStopLocationsRequest) returns (SetWaveformBurstStopLocationsResponse); + rpc SetWaveformMarkerEventLocations(SetWaveformMarkerEventLocationsRequest) returns (SetWaveformMarkerEventLocationsResponse); + rpc WaitUntilSettled(WaitUntilSettledRequest) returns (WaitUntilSettledResponse); + rpc WriteArbWaveform(WriteArbWaveformRequest) returns (WriteArbWaveformResponse); + rpc WriteArbWaveformComplexF32(WriteArbWaveformComplexF32Request) returns (WriteArbWaveformComplexF32Response); + rpc WriteArbWaveformComplexF64(WriteArbWaveformComplexF64Request) returns (WriteArbWaveformComplexF64Response); + rpc WriteArbWaveformComplexI16(WriteArbWaveformComplexI16Request) returns (WriteArbWaveformComplexI16Response); + rpc WriteArbWaveformF32(WriteArbWaveformF32Request) returns (WriteArbWaveformF32Response); + rpc WriteScript(WriteScriptRequest) returns (WriteScriptResponse); +} + +enum NiRFSGAttribute { + NIRFSG_ATTRIBUTE_UNSPECIFIED = 0; + NIRFSG_ATTRIBUTE_RANGE_CHECK = 1050002; + NIRFSG_ATTRIBUTE_QUERY_INSTRUMENT_STATUS = 1050003; + NIRFSG_ATTRIBUTE_CACHE = 1050004; + NIRFSG_ATTRIBUTE_SIMULATE = 1050005; + NIRFSG_ATTRIBUTE_RECORD_COERCIONS = 1050006; + NIRFSG_ATTRIBUTE_DRIVER_SETUP = 1050007; + NIRFSG_ATTRIBUTE_INTERCHANGE_CHECK = 1050021; + NIRFSG_ATTRIBUTE_SPY = 1050022; + NIRFSG_ATTRIBUTE_USE_SPECIFIC_SIMULATION = 1050023; + NIRFSG_ATTRIBUTE_CHANNEL_COUNT = 1050203; + NIRFSG_ATTRIBUTE_SPECIFIC_DRIVER_PREFIX = 1050302; + NIRFSG_ATTRIBUTE_IO_RESOURCE_DESCRIPTOR = 1050304; + NIRFSG_ATTRIBUTE_LOGICAL_NAME = 1050305; + NIRFSG_ATTRIBUTE_SUPPORTED_INSTRUMENT_MODELS = 1050327; + NIRFSG_ATTRIBUTE_GROUP_CAPABILITIES = 1050401; + NIRFSG_ATTRIBUTE_FUNCTION_CAPABILITIES = 1050402; + NIRFSG_ATTRIBUTE_INSTRUMENT_FIRMWARE_REVISION = 1050510; + NIRFSG_ATTRIBUTE_INSTRUMENT_MANUFACTURER = 1050511; + NIRFSG_ATTRIBUTE_INSTRUMENT_MODEL = 1050512; + NIRFSG_ATTRIBUTE_SPECIFIC_DRIVER_VENDOR = 1050513; + NIRFSG_ATTRIBUTE_SPECIFIC_DRIVER_DESCRIPTION = 1050514; + NIRFSG_ATTRIBUTE_SPECIFIC_DRIVER_CLASS_SPEC_MAJOR_VERSION = 1050515; + NIRFSG_ATTRIBUTE_SPECIFIC_DRIVER_CLASS_SPEC_MINOR_VERSION = 1050516; + NIRFSG_ATTRIBUTE_SPECIFIC_DRIVER_REVISION = 1050551; + NIRFSG_ATTRIBUTE_REF_CLOCK_SOURCE = 1150001; + NIRFSG_ATTRIBUTE_DIGITAL_EDGE_START_TRIGGER_SOURCE = 1150002; + NIRFSG_ATTRIBUTE_EXPORTED_START_TRIGGER_OUTPUT_TERMINAL = 1150003; + NIRFSG_ATTRIBUTE_PXI_CHASSIS_CLK10_SOURCE = 1150004; + NIRFSG_ATTRIBUTE_PHASE_CONTINUITY_ENABLED = 1150005; + NIRFSG_ATTRIBUTE_FREQUENCY_TOLERANCE = 1150006; + NIRFSG_ATTRIBUTE_SIGNAL_BANDWIDTH = 1150007; + NIRFSG_ATTRIBUTE_AUTOMATIC_THERMAL_CORRECTION = 1150008; + NIRFSG_ATTRIBUTE_ATTENUATOR_HOLD_ENABLED = 1150009; + NIRFSG_ATTRIBUTE_ATTENUATOR_HOLD_MAX_POWER = 1150010; + NIRFSG_ATTRIBUTE_PEAK_ENVELOPE_POWER = 1150011; + NIRFSG_ATTRIBUTE_DIGITAL_EQUALIZATION_ENABLED = 1150012; + NIRFSG_ATTRIBUTE_LO_OUT_ENABLED = 1150013; + NIRFSG_ATTRIBUTE_ALLOW_OUT_OF_SPECIFICATION_USER_SETTINGS = 1150014; + NIRFSG_ATTRIBUTE_ARB_CARRIER_FREQUENCY = 1150015; + NIRFSG_ATTRIBUTE_ARB_POWER = 1150016; + NIRFSG_ATTRIBUTE_DEVICE_TEMPERATURE = 1150017; + NIRFSG_ATTRIBUTE_GENERATION_MODE = 1150018; + NIRFSG_ATTRIBUTE_SCRIPT_TRIGGER_TYPE = 1150019; + NIRFSG_ATTRIBUTE_DIGITAL_EDGE_SCRIPT_TRIGGER_SOURCE = 1150020; + NIRFSG_ATTRIBUTE_DIGITAL_EDGE_SCRIPT_TRIGGER_EDGE = 1150021; + NIRFSG_ATTRIBUTE_EXPORTED_SCRIPT_TRIGGER_OUTPUT_TERMINAL = 1150022; + NIRFSG_ATTRIBUTE_SELECTED_SCRIPT = 1150023; + NIRFSG_ATTRIBUTE_PHASE_OFFSET = 1150024; + NIRFSG_ATTRIBUTE_ARB_PRE_FILTER_GAIN = 1150025; + NIRFSG_ATTRIBUTE_SERIAL_NUMBER = 1150026; + NIRFSG_ATTRIBUTE_LOOP_BANDWIDTH = 1150027; + NIRFSG_ATTRIBUTE_ARB_ONBOARD_SAMPLE_CLOCK_MODE = 1150029; + NIRFSG_ATTRIBUTE_ARB_SAMPLE_CLOCK_SOURCE = 1150030; + NIRFSG_ATTRIBUTE_ARB_SAMPLE_CLOCK_RATE = 1150031; + NIRFSG_ATTRIBUTE_ANALOG_MODULATION_TYPE = 1150032; + NIRFSG_ATTRIBUTE_ANALOG_MODULATION_WAVEFORM_TYPE = 1150033; + NIRFSG_ATTRIBUTE_ANALOG_MODULATION_WAVEFORM_FREQUENCY = 1150034; + NIRFSG_ATTRIBUTE_ANALOG_MODULATION_FM_DEVIATION = 1150035; + NIRFSG_ATTRIBUTE_DIGITAL_MODULATION_TYPE = 1150036; + NIRFSG_ATTRIBUTE_DIGITAL_MODULATION_SYMBOL_RATE = 1150037; + NIRFSG_ATTRIBUTE_DIGITAL_MODULATION_WAVEFORM_TYPE = 1150038; + NIRFSG_ATTRIBUTE_DIGITAL_MODULATION_PRBS_ORDER = 1150039; + NIRFSG_ATTRIBUTE_DIGITAL_MODULATION_PRBS_SEED = 1150040; + NIRFSG_ATTRIBUTE_DIGITAL_MODULATION_FSK_DEVIATION = 1150041; + NIRFSG_ATTRIBUTE_DIRECT_DOWNLOAD = 1150042; + NIRFSG_ATTRIBUTE_POWER_LEVEL_TYPE = 1150043; + NIRFSG_ATTRIBUTE_DIGITAL_PATTERN = 1150044; + NIRFSG_ATTRIBUTE_STREAMING_ENABLED = 1150045; + NIRFSG_ATTRIBUTE_STREAMING_WAVEFORM_NAME = 1150046; + NIRFSG_ATTRIBUTE_STREAMING_SPACE_AVAILABLE_IN_WAVEFORM = 1150047; + NIRFSG_ATTRIBUTE_DATA_TRANSFER_BLOCK_SIZE = 1150048; + NIRFSG_ATTRIBUTE_ARB_WAVEFORM_SOFTWARE_SCALING_FACTOR = 1150052; + NIRFSG_ATTRIBUTE_EXPORTED_REF_CLOCK_OUTPUT_TERMINAL = 1150053; + NIRFSG_ATTRIBUTE_DIGITAL_LEVEL_SCRIPT_TRIGGER_SOURCE = 1150054; + NIRFSG_ATTRIBUTE_DIGITAL_LEVEL_SCRIPT_TRIGGER_ACTIVE_LEVEL = 1150055; + NIRFSG_ATTRIBUTE_ARB_FILTER_TYPE = 1150056; + NIRFSG_ATTRIBUTE_ARB_FILTER_ROOT_RAISED_COSINE_ALPHA = 1150057; + NIRFSG_ATTRIBUTE_UPCONVERTER_CENTER_FREQUENCY_INCREMENT = 1150058; + NIRFSG_ATTRIBUTE_UPCONVERTER_CENTER_FREQUENCY_INCREMENT_ANCHOR = 1150059; + NIRFSG_ATTRIBUTE_ARB_FILTER_RAISED_COSINE_ALPHA = 1150060; + NIRFSG_ATTRIBUTE_MEMORY_SIZE = 1150061; + NIRFSG_ATTRIBUTE_ANALOG_MODULATION_PM_DEVIATION = 1150062; + NIRFSG_ATTRIBUTE_EXPORTED_DONE_EVENT_OUTPUT_TERMINAL = 1150063; + NIRFSG_ATTRIBUTE_EXPORTED_MARKER_EVENT_OUTPUT_TERMINAL = 1150064; + NIRFSG_ATTRIBUTE_EXPORTED_STARTED_EVENT_OUTPUT_TERMINAL = 1150065; + NIRFSG_ATTRIBUTE_LO_OUT_POWER = 1150066; + NIRFSG_ATTRIBUTE_LO_IN_POWER = 1150067; + NIRFSG_ATTRIBUTE_ARB_TEMPERATURE = 1150068; + NIRFSG_ATTRIBUTE_IQ_IMPAIRMENT_ENABLED = 1150069; + NIRFSG_ATTRIBUTE_IQ_I_OFFSET = 1150070; + NIRFSG_ATTRIBUTE_IQ_Q_OFFSET = 1150071; + NIRFSG_ATTRIBUTE_IQ_GAIN_IMBALANCE = 1150072; + NIRFSG_ATTRIBUTE_IQ_SKEW = 1150073; + NIRFSG_ATTRIBUTE_LO_TEMPERATURE = 1150075; + NIRFSG_ATTRIBUTE_EXTERNAL_CALIBRATION_RECOMMENDED_INTERVAL = 1150076; + NIRFSG_ATTRIBUTE_EXTERNAL_CALIBRATION_TEMPERATURE = 1150077; + NIRFSG_ATTRIBUTE_EXTERNAL_CALIBRATION_USER_DEFINED_INFO = 1150078; + NIRFSG_ATTRIBUTE_EXTERNAL_CALIBRATION_USER_DEFINED_INFO_MAX_SIZE = 1150079; + NIRFSG_ATTRIBUTE_IQ_OFFSET_UNITS = 1150081; + NIRFSG_ATTRIBUTE_FREQUENCY_SETTLING_UNITS = 1150082; + NIRFSG_ATTRIBUTE_FREQUENCY_SETTLING = 1150083; + NIRFSG_ATTRIBUTE_MODULE_REVISION = 1150084; + NIRFSG_ATTRIBUTE_EXTERNAL_GAIN = 1150085; + NIRFSG_ATTRIBUTE_DATA_TRANSFER_MAXIMUM_BANDWIDTH = 1150086; + NIRFSG_ATTRIBUTE_DATA_TRANSFER_PREFERRED_PACKET_SIZE = 1150087; + NIRFSG_ATTRIBUTE_DATA_TRANSFER_MAXIMUM_IN_FLIGHT_READS = 1150088; + NIRFSG_ATTRIBUTE_ARB_OSCILLATOR_PHASE_DAC_VALUE = 1150089; + NIRFSG_ATTRIBUTE_ACTIVE_CONFIGURATION_LIST = 1150096; + NIRFSG_ATTRIBUTE_ACTIVE_CONFIGURATION_LIST_STEP = 1150097; + NIRFSG_ATTRIBUTE_CONFIGURATION_LIST_STEP_TRIGGER_TYPE = 1150098; + NIRFSG_ATTRIBUTE_DIGITAL_EDGE_CONFIGURATION_LIST_STEP_TRIGGER_SOURCE = 1150099; + NIRFSG_ATTRIBUTE_TIMER_EVENT_INTERVAL = 1150100; + NIRFSG_ATTRIBUTE_CONFIGURATION_LIST_REPEAT = 1150102; + NIRFSG_ATTRIBUTE_DIGITAL_EDGE_CONFIGURATION_LIST_STEP_TRIGGER_EDGE = 1150103; + NIRFSG_ATTRIBUTE_CORRECTION_TEMPERATURE = 1150104; + NIRFSG_ATTRIBUTE_EXPORTED_CONFIGURATION_LIST_STEP_TRIGGER_OUTPUT_TERMINAL = 1150105; + NIRFSG_ATTRIBUTE_STARTED_EVENT_TERMINAL_NAME = 1150112; + NIRFSG_ATTRIBUTE_DONE_EVENT_TERMINAL_NAME = 1150113; + NIRFSG_ATTRIBUTE_START_TRIGGER_TERMINAL_NAME = 1150114; + NIRFSG_ATTRIBUTE_MARKER_EVENT_TERMINAL_NAME = 1150115; + NIRFSG_ATTRIBUTE_SCRIPT_TRIGGER_TERMINAL_NAME = 1150116; + NIRFSG_ATTRIBUTE_CONFIGURATION_LIST_STEP_TRIGGER_TERMINAL_NAME = 1150117; + NIRFSG_ATTRIBUTE_YIG_MAIN_COIL_DRIVE = 1150118; + NIRFSG_ATTRIBUTE_CONFIGURATION_LIST_STEP_IN_PROGRESS = 1150122; + NIRFSG_ATTRIBUTE_P2P_ENABLED = 1150123; + NIRFSG_ATTRIBUTE_P2P_ENDPOINT_SIZE = 1150124; + NIRFSG_ATTRIBUTE_P2P_SPACE_AVAILABLE_IN_ENDPOINT = 1150125; + NIRFSG_ATTRIBUTE_P2P_MOST_SPACE_AVAILABLE_IN_ENDPOINT = 1150126; + NIRFSG_ATTRIBUTE_P2P_ENDPOINT_COUNT = 1150127; + NIRFSG_ATTRIBUTE_P2P_ENDPOINT_FULLNESS_START_TRIGGER_LEVEL = 1150128; + NIRFSG_ATTRIBUTE_EXPORTED_CONFIGURATION_SETTLED_EVENT_OUTPUT_TERMINAL = 1150129; + NIRFSG_ATTRIBUTE_PEAK_POWER_ADJUSTMENT = 1150132; + NIRFSG_ATTRIBUTE_REF_PLL_BANDWIDTH = 1150133; + NIRFSG_ATTRIBUTE_P2P_DATA_TRANSFER_PERMISSION_INTERVAL = 1150134; + NIRFSG_ATTRIBUTE_P2P_DATA_TRANSFER_PERMISSION_INITIAL_CREDITS = 1150135; + NIRFSG_ATTRIBUTE_SELF_CALIBRATION_TEMPERATURE = 1150136; + NIRFSG_ATTRIBUTE_AMPLITUDE_SETTLING = 1150137; + NIRFSG_ATTRIBUTE_STREAMING_WRITE_TIMEOUT = 1150140; + NIRFSG_ATTRIBUTE_PEAK_POWER_ADJUSTMENT_INHERITANCE = 1150141; + NIRFSG_ATTRIBUTE_SYNC_SCRIPT_TRIGGER_MASTER = 1150142; + NIRFSG_ATTRIBUTE_SYNC_SCRIPT_TRIGGER_DIST_LINE = 1150143; + NIRFSG_ATTRIBUTE_OUTPUT_PORT = 1150144; + NIRFSG_ATTRIBUTE_IQ_OUT_PORT_CARRIER_FREQUENCY = 1150145; + NIRFSG_ATTRIBUTE_IQ_OUT_PORT_TERMINAL_CONFIGURATION = 1150146; + NIRFSG_ATTRIBUTE_IQ_OUT_PORT_LEVEL = 1150147; + NIRFSG_ATTRIBUTE_IQ_OUT_PORT_COMMON_MODE_OFFSET = 1150148; + NIRFSG_ATTRIBUTE_IQ_OUT_PORT_OFFSET = 1150149; + NIRFSG_ATTRIBUTE_LO_SOURCE = 1150150; + NIRFSG_ATTRIBUTE_LO_FREQUENCY_STEP_SIZE = 1150151; + NIRFSG_ATTRIBUTE_LO_PLL_FRACTIONAL_MODE_ENABLED = 1150152; + NIRFSG_ATTRIBUTE_INTERPOLATION_DELAY = 1150153; + NIRFSG_ATTRIBUTE_EVENTS_DELAY = 1150154; + NIRFSG_ATTRIBUTE_SYNC_START_TRIGGER_MASTER = 1150155; + NIRFSG_ATTRIBUTE_SYNC_START_TRIGGER_DIST_LINE = 1150156; + NIRFSG_ATTRIBUTE_ARB_WAVEFORM_REPEAT_COUNT_IS_FINITE = 1150157; + NIRFSG_ATTRIBUTE_ARB_WAVEFORM_REPEAT_COUNT = 1150158; + NIRFSG_ATTRIBUTE_UPCONVERTER_FREQUENCY_OFFSET = 1150160; + NIRFSG_ATTRIBUTE_IQ_OUT_PORT_TEMPERATURE = 1150161; + NIRFSG_ATTRIBUTE_RF_BLANKING_SOURCE = 1150162; + NIRFSG_ATTRIBUTE_IQ_OUT_PORT_LOAD_IMPEDANCE = 1150163; + NIRFSG_ATTRIBUTE_ANALOG_MODULATION_FM_NARROWBAND_INTEGRATOR = 1150165; + NIRFSG_ATTRIBUTE_ANALOG_MODULATION_FM_SENSITIVITY = 1150166; + NIRFSG_ATTRIBUTE_ANALOG_MODULATION_AM_SENSITIVITY = 1150167; + NIRFSG_ATTRIBUTE_ANALOG_MODULATION_PM_SENSITIVITY = 1150168; + NIRFSG_ATTRIBUTE_ATTENUATOR_SETTING = 1150173; + NIRFSG_ATTRIBUTE_CONFIGURATION_LIST_IS_DONE = 1150175; + NIRFSG_ATTRIBUTE_SYNC_SAMPLE_CLOCK_MASTER = 1150180; + NIRFSG_ATTRIBUTE_SYNC_SAMPLE_CLOCK_DIST_LINE = 1150181; + NIRFSG_ATTRIBUTE_AE_TEMPERATURE = 1150182; + NIRFSG_ATTRIBUTE_AMP_PATH = 1150185; + NIRFSG_ATTRIBUTE_FPGA_BITFILE_PATH = 1150186; + NIRFSG_ATTRIBUTE_FAST_TUNING_OPTION = 1150188; + NIRFSG_ATTRIBUTE_PULSE_MODULATION_MODE = 1150190; + NIRFSG_ATTRIBUTE_ANALOG_MODULATION_FM_BAND = 1150191; + NIRFSG_ATTRIBUTE_ANALOG_MODULATION_PM_MODE = 1150192; + NIRFSG_ATTRIBUTE_CONFIGURATION_SETTLED_EVENT_TERMINAL_NAME = 1150194; + NIRFSG_ATTRIBUTE_ALC_CONTROL = 1150195; + NIRFSG_ATTRIBUTE_AUTO_POWER_SEARCH = 1150196; + NIRFSG_ATTRIBUTE_LO_FREQUENCY = 1150199; + NIRFSG_ATTRIBUTE_ARB_DIGITAL_GAIN = 1150204; + NIRFSG_ATTRIBUTE_MARKER_EVENT_OUTPUT_BEHAVIOR = 1150206; + NIRFSG_ATTRIBUTE_MARKER_EVENT_PULSE_WIDTH = 1150207; + NIRFSG_ATTRIBUTE_MARKER_EVENT_PULSE_WIDTH_UNITS = 1150208; + NIRFSG_ATTRIBUTE_MARKER_EVENT_TOGGLE_INITIAL_STATE = 1150209; + NIRFSG_ATTRIBUTE_MODULE_POWER_CONSUMPTION = 1150210; + NIRFSG_ATTRIBUTE_FPGA_TEMPERATURE = 1150211; + NIRFSG_ATTRIBUTE_TEMPERATURE_READ_INTERVAL = 1150212; + NIRFSG_ATTRIBUTE_P2P_IS_FINITE_GENERATION = 1150217; + NIRFSG_ATTRIBUTE_P2P_NUMBER_OF_SAMPLES_TO_GENERATE = 1150218; + NIRFSG_ATTRIBUTE_P2P_GENERATION_FIFO_SAMPLE_QUANTUM = 1150219; + NIRFSG_ATTRIBUTE_RELATIVE_DELAY = 1150220; + NIRFSG_ATTRIBUTE_ABSOLUTE_DELAY = 1150225; + NIRFSG_ATTRIBUTE_DEVICE_INSTANTANEOUS_BANDWIDTH = 1150226; + NIRFSG_ATTRIBUTE_OVERFLOW_ERROR_REPORTING = 1150228; + NIRFSG_ATTRIBUTE_HOST_DMA_BUFFER_SIZE = 1150239; + NIRFSG_ATTRIBUTE_SELECTED_PORTS = 1150241; + NIRFSG_ATTRIBUTE_LO_OUT_EXPORT_CONFIGURE_FROM_RFSA = 1150242; + NIRFSG_ATTRIBUTE_RF_IN_LO_EXPORT_ENABLED = 1150243; + NIRFSG_ATTRIBUTE_THERMAL_CORRECTION_TEMPERATURE_RESOLUTION = 1150244; + NIRFSG_ATTRIBUTE_UPCONVERTER_FREQUENCY_OFFSET_MODE = 1150248; + NIRFSG_ATTRIBUTE_AVAILABLE_PORTS = 1150249; + NIRFSG_ATTRIBUTE_FPGA_TARGET_NAME = 1150251; + NIRFSG_ATTRIBUTE_DEEMBEDDING_TYPE = 1150252; + NIRFSG_ATTRIBUTE_DEEMBEDDING_SELECTED_TABLE = 1150253; + NIRFSG_ATTRIBUTE_LO_VCO_FREQUENCY_STEP_SIZE = 1150257; + NIRFSG_ATTRIBUTE_THERMAL_CORRECTION_HEADROOM_RANGE = 1150258; + NIRFSG_ATTRIBUTE_WAVEFORM_IQ_RATE = 1150263; + NIRFSG_ATTRIBUTE_WAVEFORM_SIGNAL_BANDWIDTH = 1150264; + NIRFSG_ATTRIBUTE_WAVEFORM_RUNTIME_SCALING = 1150265; + NIRFSG_ATTRIBUTE_WAVEFORM_PAPR = 1150266; + NIRFSG_ATTRIBUTE_FIXED_GROUP_DELAY_ACROSS_PORTS = 1150271; + NIRFSG_ATTRIBUTE_WAVEFORM_FILEPATH = 1150272; + NIRFSG_ATTRIBUTE_WRITE_WAVEFORM_BURST_DETECTION = 1150273; + NIRFSG_ATTRIBUTE_WRITE_WAVEFORM_BURST_DETECTION_MODE = 1150274; + NIRFSG_ATTRIBUTE_WRITE_WAVEFORM_BURST_DETECTION_MINIMUM_QUIET_TIME = 1150275; + NIRFSG_ATTRIBUTE_WRITE_WAVEFORM_BURST_DETECTION_POWER_THRESHOLD = 1150276; + NIRFSG_ATTRIBUTE_WRITE_WAVEFORM_BURST_DETECTION_MINIMUM_BURST_TIME = 1150277; + NIRFSG_ATTRIBUTE_WAVEFORM_RF_BLANKING = 1150278; + NIRFSG_ATTRIBUTE_DEEMBEDDING_COMPENSATION_GAIN = 1150289; + NIRFSG_ATTRIBUTE_LOAD_CONFIGURATIONS_FROM_FILE_LOAD_OPTIONS = 1150290; + NIRFSG_ATTRIBUTE_LOAD_CONFIGURATIONS_FROM_FILE_RESET_OPTIONS = 1150291; + NIRFSG_ATTRIBUTE_EXPORTED_REF_CLOCK_RATE = 1150292; + NIRFSG_ATTRIBUTE_WRITE_WAVEFORM_NORMALIZATION = 1150293; + NIRFSG_ATTRIBUTE_WAVEFORM_WAVEFORM_SIZE = 1150297; + NIRFSG_ATTRIBUTE_PULSE_MODULATION_ACTIVE_LEVEL = 1150307; + NIRFSG_ATTRIBUTE_PULSE_MODULATION_SOURCE = 1150308; + NIRFSG_ATTRIBUTE_EXPORTED_PULSE_MODULATION_EVENT_OUTPUT_TERMINAL = 1150309; + NIRFSG_ATTRIBUTE_EXPORTED_PULSE_MODULATION_EVENT_ACTIVE_LEVEL = 1150310; + NIRFSG_ATTRIBUTE_SELECTED_PATH = 1150311; + NIRFSG_ATTRIBUTE_AVAILABLE_PATHS = 1150312; + NIRFSG_ATTRIBUTE_COMPENSATE_FOR_FILTER_GROUP_DELAY = 1152832; + NIRFSG_ATTRIBUTE_UPCONVERTER_GAIN = 1154097; + NIRFSG_ATTRIBUTE_UPCONVERTER_CENTER_FREQUENCY = 1154098; + NIRFSG_ATTRIBUTE_FREQUENCY = 1250001; + NIRFSG_ATTRIBUTE_POWER_LEVEL = 1250002; + NIRFSG_ATTRIBUTE_OUTPUT_ENABLED = 1250004; + NIRFSG_ATTRIBUTE_PULSE_MODULATION_ENABLED = 1250051; + NIRFSG_ATTRIBUTE_REF_CLOCK_RATE = 1250322; + NIRFSG_ATTRIBUTE_IQ_ENABLED = 1250401; + NIRFSG_ATTRIBUTE_IQ_NOMINAL_VOLTAGE = 1250402; + NIRFSG_ATTRIBUTE_IQ_SWAP_ENABLED = 1250404; + NIRFSG_ATTRIBUTE_ARB_SELECTED_WAVEFORM = 1250451; + NIRFSG_ATTRIBUTE_IQ_RATE = 1250452; + NIRFSG_ATTRIBUTE_ARB_FILTER_FREQUENCY = 1250453; + NIRFSG_ATTRIBUTE_ARB_MAX_NUMBER_WAVEFORMS = 1250454; + NIRFSG_ATTRIBUTE_ARB_WAVEFORM_QUANTUM = 1250455; + NIRFSG_ATTRIBUTE_ARB_WAVEFORM_SIZE_MIN = 1250456; + NIRFSG_ATTRIBUTE_ARB_WAVEFORM_SIZE_MAX = 1250457; + NIRFSG_ATTRIBUTE_START_TRIGGER_TYPE = 1250458; + NIRFSG_ATTRIBUTE_DIGITAL_EDGE_START_TRIGGER_EDGE = 1250459; +} + +enum DigitalEdgeConfigurationListStepTriggerSource { + DIGITAL_EDGE_CONFIGURATION_LIST_STEP_TRIGGER_SOURCE_UNSPECIFIED = 0; + DIGITAL_EDGE_CONFIGURATION_LIST_STEP_TRIGGER_SOURCE_PFI0 = 1; + DIGITAL_EDGE_CONFIGURATION_LIST_STEP_TRIGGER_SOURCE_PFI1 = 2; + DIGITAL_EDGE_CONFIGURATION_LIST_STEP_TRIGGER_SOURCE_PFI2 = 3; + DIGITAL_EDGE_CONFIGURATION_LIST_STEP_TRIGGER_SOURCE_PFI3 = 4; + DIGITAL_EDGE_CONFIGURATION_LIST_STEP_TRIGGER_SOURCE_PXI_TRIG0 = 5; + DIGITAL_EDGE_CONFIGURATION_LIST_STEP_TRIGGER_SOURCE_PXI_TRIG1 = 6; + DIGITAL_EDGE_CONFIGURATION_LIST_STEP_TRIGGER_SOURCE_PXI_TRIG2 = 7; + DIGITAL_EDGE_CONFIGURATION_LIST_STEP_TRIGGER_SOURCE_PXI_TRIG3 = 8; + DIGITAL_EDGE_CONFIGURATION_LIST_STEP_TRIGGER_SOURCE_PXI_TRIG4 = 9; + DIGITAL_EDGE_CONFIGURATION_LIST_STEP_TRIGGER_SOURCE_PXI_TRIG5 = 10; + DIGITAL_EDGE_CONFIGURATION_LIST_STEP_TRIGGER_SOURCE_PXI_TRIG6 = 11; + DIGITAL_EDGE_CONFIGURATION_LIST_STEP_TRIGGER_SOURCE_PXI_TRIG7 = 12; + DIGITAL_EDGE_CONFIGURATION_LIST_STEP_TRIGGER_SOURCE_PXI_STAR = 13; + DIGITAL_EDGE_CONFIGURATION_LIST_STEP_TRIGGER_SOURCE_MARKER0_EVENT = 14; + DIGITAL_EDGE_CONFIGURATION_LIST_STEP_TRIGGER_SOURCE_MARKER1_EVENT = 15; + DIGITAL_EDGE_CONFIGURATION_LIST_STEP_TRIGGER_SOURCE_MARKER2_EVENT = 16; + DIGITAL_EDGE_CONFIGURATION_LIST_STEP_TRIGGER_SOURCE_MARKER3_EVENT = 17; + DIGITAL_EDGE_CONFIGURATION_LIST_STEP_TRIGGER_SOURCE_TIMER_EVENT = 18; + DIGITAL_EDGE_CONFIGURATION_LIST_STEP_TRIGGER_SOURCE_TRIG_IN = 19; +} + +enum DigitalEdgeEdge { + DIGITAL_EDGE_EDGE_RISING_EDGE = 0; + DIGITAL_EDGE_EDGE_FALLING_EDGE = 1; +} + +enum DigitalEdgeScriptTriggerIdentifier { + DIGITAL_EDGE_SCRIPT_TRIGGER_IDENTIFIER_UNSPECIFIED = 0; + DIGITAL_EDGE_SCRIPT_TRIGGER_IDENTIFIER_SCRIPT_TRIGGER0 = 1; + DIGITAL_EDGE_SCRIPT_TRIGGER_IDENTIFIER_SCRIPT_TRIGGER1 = 2; + DIGITAL_EDGE_SCRIPT_TRIGGER_IDENTIFIER_SCRIPT_TRIGGER2 = 3; + DIGITAL_EDGE_SCRIPT_TRIGGER_IDENTIFIER_SCRIPT_TRIGGER3 = 4; +} + +enum DigitalLevelActiveLevel { + DIGITAL_LEVEL_ACTIVE_LEVEL_UNSPECIFIED = 0; + DIGITAL_LEVEL_ACTIVE_LEVEL_ACTIVE_HIGH = 9000; + DIGITAL_LEVEL_ACTIVE_LEVEL_ACTIVE_LOW = 9001; +} + +enum GenerationMode { + GENERATION_MODE_UNSPECIFIED = 0; + GENERATION_MODE_CW = 1000; + GENERATION_MODE_ARB_WAVEFORM = 1001; + GENERATION_MODE_SCRIPT = 1002; +} + +enum LinearInterpolationFormat { + LINEAR_INTERPOLATION_FORMAT_UNSPECIFIED = 0; + LINEAR_INTERPOLATION_FORMAT_REAL_AND_IMAGINARY = 26000; + LINEAR_INTERPOLATION_FORMAT_MAGNITUDE_AND_PHASE = 26001; + LINEAR_INTERPOLATION_FORMAT_MAGNITUDE_DB_AND_PHASE = 26002; +} + +enum Module { + MODULE_UNSPECIFIED = 0; + MODULE_PRIMARY_MODULE = 13000; + MODULE_AWG = 13001; + MODULE_LO = 13002; +} + +enum OutputSignal { + OUTPUT_SIGNAL_UNSPECIFIED = 0; + OUTPUT_SIGNAL_DO_NOT_EXPORT = 1; + OUTPUT_SIGNAL_PFI0 = 2; + OUTPUT_SIGNAL_PFI1 = 3; + OUTPUT_SIGNAL_PFI4 = 4; + OUTPUT_SIGNAL_PFI5 = 5; + OUTPUT_SIGNAL_PXI_STAR = 6; + OUTPUT_SIGNAL_PXI_TRIG0 = 7; + OUTPUT_SIGNAL_PXI_TRIG1 = 8; + OUTPUT_SIGNAL_PXI_TRIG2 = 9; + OUTPUT_SIGNAL_PXI_TRIG3 = 10; + OUTPUT_SIGNAL_PXI_TRIG4 = 11; + OUTPUT_SIGNAL_PXI_TRIG5 = 12; + OUTPUT_SIGNAL_PXI_TRIG6 = 13; + OUTPUT_SIGNAL_REF_OUT2 = 14; + OUTPUT_SIGNAL_REF_OUT = 15; + OUTPUT_SIGNAL_TRIG_OUT = 16; +} + +enum PXIChassisClk10 { + PXI_CHASSIS_CLK10_UNSPECIFIED = 0; + PXI_CHASSIS_CLK10_NONE = 1; + PXI_CHASSIS_CLK10_ONBOARD_CLOCK = 2; + PXI_CHASSIS_CLK10_REF_IN = 3; +} + +enum PowerLevelType { + POWER_LEVEL_TYPE_UNSPECIFIED = 0; + POWER_LEVEL_TYPE_AVERAGE_POWER = 7000; + POWER_LEVEL_TYPE_PEAK_POWER = 7001; +} + +enum RefClockSource { + REF_CLOCK_SOURCE_UNSPECIFIED = 0; + REF_CLOCK_SOURCE_ONBOARD_CLOCK = 1; + REF_CLOCK_SOURCE_REF_IN = 2; + REF_CLOCK_SOURCE_PXI_CLK = 3; + REF_CLOCK_SOURCE_CLK_IN = 4; + REF_CLOCK_SOURCE_REF_IN_2 = 5; + REF_CLOCK_SOURCE_PXI_CLK_MASTER = 6; +} + +enum RelativeTo { + RELATIVE_TO_UNSPECIFIED = 0; + RELATIVE_TO_START_OF_WAVEFORM = 8000; + RELATIVE_TO_CURRENT_POSITION = 8001; +} + +enum ResetWithOptionsStepsToOmit { + RESET_WITH_OPTIONS_STEPS_TO_OMIT_NONE = 0; + RESET_WITH_OPTIONS_STEPS_TO_OMIT_WAVEFORMS = 1; + RESET_WITH_OPTIONS_STEPS_TO_OMIT_SCRIPTS = 2; + RESET_WITH_OPTIONS_STEPS_TO_OMIT_ROUTES = 4; + RESET_WITH_OPTIONS_STEPS_TO_OMIT_DEEMBEDDING_TABLES = 8; +} + +enum RoutedSignal { + ROUTED_SIGNAL_START_TRIGGER = 0; + ROUTED_SIGNAL_CONFIGURATION_LIST_STEP_TRIGGER = 6; + ROUTED_SIGNAL_CONFIGURATION_SETTLED_EVENT = 7; + ROUTED_SIGNAL_DONE_EVENT = 5; + ROUTED_SIGNAL_MARKER_EVENT = 2; + ROUTED_SIGNAL_REF_CLOCK = 3; + ROUTED_SIGNAL_SCRIPT_TRIGGER = 1; + ROUTED_SIGNAL_STARTED_EVENT = 4; +} + +enum SParameterOrientation { + S_PARAMETER_ORIENTATION_UNSPECIFIED = 0; + S_PARAMETER_ORIENTATION_PORT1_TOWARDS_DUT = 24000; + S_PARAMETER_ORIENTATION_PORT2_TOWARDS_DUT = 24001; +} + +enum SelfCalibrateRangeStepsToOmit { + SELF_CALIBRATE_RANGE_STEPS_TO_OMIT_OMIT_NONE = 0; + SELF_CALIBRATE_RANGE_STEPS_TO_OMIT_LO_SELF_CAL = 1; + SELF_CALIBRATE_RANGE_STEPS_TO_OMIT_POWER_LEVEL_ACCURACY = 2; + SELF_CALIBRATE_RANGE_STEPS_TO_OMIT_RESIDUAL_LO_POWER = 4; + SELF_CALIBRATE_RANGE_STEPS_TO_OMIT_IMAGE_SUPPRESSION = 8; + SELF_CALIBRATE_RANGE_STEPS_TO_OMIT_SYNTHESIZER_ALIGNMENT = 16; +} + +enum SignalIdentifier { + SIGNAL_IDENTIFIER_UNSPECIFIED = 0; + SIGNAL_IDENTIFIER_NONE = 1; + SIGNAL_IDENTIFIER_SCRIPT_TRIGGER0 = 2; + SIGNAL_IDENTIFIER_SCRIPT_TRIGGER1 = 3; + SIGNAL_IDENTIFIER_SCRIPT_TRIGGER2 = 4; + SIGNAL_IDENTIFIER_SCRIPT_TRIGGER3 = 5; + SIGNAL_IDENTIFIER_MARKER0 = 6; + SIGNAL_IDENTIFIER_MARKER1 = 7; + SIGNAL_IDENTIFIER_MARKER2 = 8; + SIGNAL_IDENTIFIER_MARKER3 = 9; +} + +enum TriggerSource { + TRIGGER_SOURCE_UNSPECIFIED = 0; + TRIGGER_SOURCE_PFI0 = 1; + TRIGGER_SOURCE_PFI1 = 2; + TRIGGER_SOURCE_PFI2 = 3; + TRIGGER_SOURCE_PFI3 = 4; + TRIGGER_SOURCE_PXI_TRIG0 = 5; + TRIGGER_SOURCE_PXI_TRIG1 = 6; + TRIGGER_SOURCE_PXI_TRIG2 = 7; + TRIGGER_SOURCE_PXI_TRIG3 = 8; + TRIGGER_SOURCE_PXI_TRIG4 = 9; + TRIGGER_SOURCE_PXI_TRIG5 = 10; + TRIGGER_SOURCE_PXI_TRIG6 = 11; + TRIGGER_SOURCE_PXI_TRIG7 = 12; + TRIGGER_SOURCE_PXI_STAR = 13; + TRIGGER_SOURCE_PXIE_DSTARB = 14; + TRIGGER_SOURCE_SYNC_START_TRIGGER = 15; + TRIGGER_SOURCE_SYNC_SCRIPT_TRIGGER = 16; + TRIGGER_SOURCE_TRIG_IN = 17; + TRIGGER_SOURCE_PULSE_IN = 18; + TRIGGER_SOURCE_DIO0 = 19; + TRIGGER_SOURCE_DIO1 = 20; + TRIGGER_SOURCE_DIO2 = 21; + TRIGGER_SOURCE_DIO3 = 22; + TRIGGER_SOURCE_DIO4 = 23; + TRIGGER_SOURCE_DIO5 = 24; + TRIGGER_SOURCE_DIO6 = 25; + TRIGGER_SOURCE_DIO7 = 26; +} + +enum NiRFSGInt32AttributeValues { + option allow_alias = true; + NIRFSG_INT32_UNSPECIFIED = 0; + NIRFSG_INT32_AMP_PATH_HIGH_POWER = 16000; + NIRFSG_INT32_AMP_PATH_LOW_HARMONIC = 16001; + NIRFSG_INT32_ANALOG_MODULATION_FM_BAND_NARROWBAND = 17000; + NIRFSG_INT32_ANALOG_MODULATION_FM_BAND_WIDEBAND = 17001; + NIRFSG_INT32_ANALOG_MODULATION_FM_NARROWBAND_INTEGRATOR_100_HZ_TO_1_KHZ = 18000; + NIRFSG_INT32_ANALOG_MODULATION_FM_NARROWBAND_INTEGRATOR_1_KHZ_TO_10_KHZ = 18001; + NIRFSG_INT32_ANALOG_MODULATION_FM_NARROWBAND_INTEGRATOR_10_KHZ_TO_100_KHZ = 18002; + NIRFSG_INT32_ANALOG_MODULATION_PM_MODE_HIGH_DEVIATION = 19000; + NIRFSG_INT32_ANALOG_MODULATION_PM_MODE_LOW_PHASE_NOISE = 19001; + NIRFSG_INT32_ANALOG_MODULATION_TYPE_NONE = 0; + NIRFSG_INT32_ANALOG_MODULATION_TYPE_FM = 2000; + NIRFSG_INT32_ANALOG_MODULATION_TYPE_PM = 2001; + NIRFSG_INT32_ANALOG_MODULATION_TYPE_AM = 2002; + NIRFSG_INT32_ANALOG_MODULATION_WAVEFORM_TYPE_SINE = 3000; + NIRFSG_INT32_ANALOG_MODULATION_WAVEFORM_TYPE_SQUARE = 3001; + NIRFSG_INT32_ANALOG_MODULATION_WAVEFORM_TYPE_TRIANGLE = 3002; + NIRFSG_INT32_ARB_FILTER_TYPE_NONE = 10000; + NIRFSG_INT32_ARB_FILTER_TYPE_ROOT_RAISED_COSINE = 10001; + NIRFSG_INT32_ARB_FILTER_TYPE_RAISED_COSINE = 10002; + NIRFSG_INT32_ARB_ONBOARD_SAMPLE_CLOCK_MODE_HIGH_RESOLUTION = 6000; + NIRFSG_INT32_ARB_ONBOARD_SAMPLE_CLOCK_MODE_DIVIDE_DOWN = 6001; + NIRFSG_INT32_CONFIG_LIST_TRIGGER_DIG_EDGE_EDGE_RISING_EDGE = 0; + NIRFSG_INT32_CONFIGURATION_LIST_REPEAT_CONFIGURATION_LIST_REPEAT_CONTINUOUS = 0; + NIRFSG_INT32_CONFIGURATION_LIST_REPEAT_CONFIGURATION_LIST_REPEAT_SINGLE = 1; + NIRFSG_INT32_DEEMBEDDING_TYPE_NONE = 25000; + NIRFSG_INT32_DEEMBEDDING_TYPE_SCALAR = 25001; + NIRFSG_INT32_DEEMBEDDING_TYPE_VECTOR = 25002; + NIRFSG_INT32_DIGITAL_EDGE_EDGE_RISING_EDGE = 0; + NIRFSG_INT32_DIGITAL_EDGE_EDGE_FALLING_EDGE = 1; + NIRFSG_INT32_DIGITAL_LEVEL_ACTIVE_LEVEL_ACTIVE_HIGH = 9000; + NIRFSG_INT32_DIGITAL_LEVEL_ACTIVE_LEVEL_ACTIVE_LOW = 9001; + NIRFSG_INT32_DIGITAL_MODULATION_TYPE_NONE = 0; + NIRFSG_INT32_DIGITAL_MODULATION_TYPE_FSK = 4000; + NIRFSG_INT32_DIGITAL_MODULATION_TYPE_OOK = 4001; + NIRFSG_INT32_DIGITAL_MODULATION_TYPE_PSK = 4002; + NIRFSG_INT32_DIGITAL_MODULATION_WAVEFORM_TYPE_PRBS = 5000; + NIRFSG_INT32_DIGITAL_MODULATION_WAVEFORM_TYPE_USER_DEFINED = 5001; + NIRFSG_INT32_ENABLE_VALUES_DISABLE = 0; + NIRFSG_INT32_ENABLE_VALUES_ENABLE = 1; + NIRFSG_INT32_FREQUENCY_SETTLING_UNITS_TIME_AFTER_LOCK = 12000; + NIRFSG_INT32_FREQUENCY_SETTLING_UNITS_TIME_AFTER_IO = 12001; + NIRFSG_INT32_FREQUENCY_SETTLING_UNITS_PPM = 12002; + NIRFSG_INT32_GENERATION_MODE_CW = 1000; + NIRFSG_INT32_GENERATION_MODE_ARB_WAVEFORM = 1001; + NIRFSG_INT32_GENERATION_MODE_SCRIPT = 1002; + NIRFSG_INT32_IQ_OFFSET_UNITS_PERCENT = 11000; + NIRFSG_INT32_IQ_OFFSET_UNITS_VOLTS = 11001; + NIRFSG_INT32_IQ_OUT_PORT_TERM_CONFIG_DIFFERENTIAL = 15000; + NIRFSG_INT32_IQ_OUT_PORT_TERM_CONFIG_SINGLE_ENDED = 15001; + NIRFSG_INT32_LIST_STEP_TRIGGER_TYPE_NONE = 0; + NIRFSG_INT32_LIST_STEP_TRIGGER_TYPE_DIGITAL_EDGE = 1; + NIRFSG_INT32_LOAD_OPTIONS_SKIP_NONE = 0; + NIRFSG_INT32_LOAD_OPTIONS_SKIP_WAVEFORMS = 1; + NIRFSG_INT32_LOOP_BANDWIDTH_NARROW = 0; + NIRFSG_INT32_LOOP_BANDWIDTH_MEDIUM = 1; + NIRFSG_INT32_LOOP_BANDWIDTH_WIDE = 2; + NIRFSG_INT32_MARKER_EVENT_OUTPUT_BEHAVIOR_PULSE = 23000; + NIRFSG_INT32_MARKER_EVENT_OUTPUT_BEHAVIOR_TOGGLE = 23001; + NIRFSG_INT32_MARKER_EVENT_PULSE_WIDTH_UNITS_SECONDS = 22000; + NIRFSG_INT32_MARKER_EVENT_PULSE_WIDTH_UNITS_SAMPLE_CLOCK_PERIODS = 22001; + NIRFSG_INT32_MARKER_EVENT_TOGGLE_INITIAL_STATE_DIGITAL_LOW = 21000; + NIRFSG_INT32_MARKER_EVENT_TOGGLE_INITIAL_STATE_DIGITAL_HIGH = 21001; + NIRFSG_INT32_OUTPUT_PORT_RF_OUT = 14000; + NIRFSG_INT32_OUTPUT_PORT_IQ_OUT = 14001; + NIRFSG_INT32_OUTPUT_PORT_CAL_OUT = 14002; + NIRFSG_INT32_OUTPUT_PORT_I_ONLY = 14003; + NIRFSG_INT32_OVERFLOW_ERROR_REPORTING_WARNING = 1301; + NIRFSG_INT32_OVERFLOW_ERROR_REPORTING_DISABLED = 1302; + NIRFSG_INT32_PPA_SCRIPT_INHERITANCE_EXACT_MATCH = 0; + NIRFSG_INT32_PPA_SCRIPT_INHERITANCE_MINIMUM = 1; + NIRFSG_INT32_PPA_SCRIPT_INHERITANCE_MAXIMUM = 2; + NIRFSG_INT32_PHASE_CONTINUITY_DISABLE = 0; + NIRFSG_INT32_PHASE_CONTINUITY_AUTO = -1; + NIRFSG_INT32_PHASE_CONTINUITY_ENABLE = 1; + NIRFSG_INT32_POWER_LEVEL_TYPE_AVERAGE_POWER = 7000; + NIRFSG_INT32_POWER_LEVEL_TYPE_PEAK_POWER = 7001; + NIRFSG_INT32_PULSE_MODULATION_MODE_OPTIMAL_MATCH = 20000; + NIRFSG_INT32_PULSE_MODULATION_MODE_HIGH_ISOLATION = 20001; + NIRFSG_INT32_RESET_OPTIONS_SKIP_NONE = 0; + NIRFSG_INT32_RESET_OPTIONS_SKIP_WAVEFORMS = 1; + NIRFSG_INT32_RESET_OPTIONS_SKIP_SCRIPTS = 2; + NIRFSG_INT32_RESET_OPTIONS_SKIP_DEEMBEDING_TABLES = 8; + NIRFSG_INT32_RF_IN_LO_EXPORT_ENABLED_DISABLE = 0; + NIRFSG_INT32_RF_IN_LO_EXPORT_ENABLED_UNSPECIFIED = -2; + NIRFSG_INT32_RF_IN_LO_EXPORT_ENABLED_ENABLE = 1; + NIRFSG_INT32_SCRIPT_TRIGGER_TYPE_NONE = 0; + NIRFSG_INT32_SCRIPT_TRIGGER_TYPE_DIGITAL_EDGE = 1; + NIRFSG_INT32_SCRIPT_TRIGGER_TYPE_DIGITAL_LEVEL = 8000; + NIRFSG_INT32_SCRIPT_TRIGGER_TYPE_SOFTWARE = 2; + NIRFSG_INT32_START_TRIGGER_TYPE_NONE = 0; + NIRFSG_INT32_START_TRIGGER_TYPE_DIGITAL_EDGE = 1; + NIRFSG_INT32_START_TRIGGER_TYPE_SOFTWARE = 2; + NIRFSG_INT32_START_TRIGGER_TYPE_P2_P_ENDPOINT_FULLNESS = 3; + NIRFSG_INT32_UPCONVERTER_FREQUENCY_OFFSET_MODE_AUTO = -1; + NIRFSG_INT32_UPCONVERTER_FREQUENCY_OFFSET_MODE_ENABLE = 1; + NIRFSG_INT32_UPCONVERTER_FREQUENCY_OFFSET_MODE_USER_DEFINED = 5001; + NIRFSG_INT32_WRITE_WAVEFORM_BURST_DETECTION_MODE_MANUAL = 0; + NIRFSG_INT32_WRITE_WAVEFORM_BURST_DETECTION_MODE_AUTO = -1; + NIRFSG_INT32_YIG_MAIN_COIL_SLOW = 0; + NIRFSG_INT32_YIG_MAIN_COIL_FAST = 1; +} + +enum NiRFSGReal64AttributeValues { + NIRFSG_REAL64_UNSPECIFIED = 0; + NIRFSG_REAL64_REF_CLOCK_RATE_10_MHZ = 10000000; + NIRFSG_REAL64_REF_CLOCK_RATE_AUTO = -1; +} + +enum NiRFSGStringAttributeValuesMapped { + NIRFSG_STRING_MAPPED_UNSPECIFIED = 0; + NIRFSG_STRING_ANY_SIGNAL_OUTPUT_TERM_DO_NOT_EXPORT = 1; + NIRFSG_STRING_ANY_SIGNAL_OUTPUT_TERM_PFI0 = 2; + NIRFSG_STRING_ANY_SIGNAL_OUTPUT_TERM_PFI1 = 3; + NIRFSG_STRING_ANY_SIGNAL_OUTPUT_TERM_PFI4 = 4; + NIRFSG_STRING_ANY_SIGNAL_OUTPUT_TERM_PFI5 = 5; + NIRFSG_STRING_ANY_SIGNAL_OUTPUT_TERM_PXI_TRIG0 = 6; + NIRFSG_STRING_ANY_SIGNAL_OUTPUT_TERM_PXI_TRIG1 = 7; + NIRFSG_STRING_ANY_SIGNAL_OUTPUT_TERM_PXI_TRIG2 = 8; + NIRFSG_STRING_ANY_SIGNAL_OUTPUT_TERM_PXI_TRIG3 = 9; + NIRFSG_STRING_ANY_SIGNAL_OUTPUT_TERM_PXI_TRIG4 = 10; + NIRFSG_STRING_ANY_SIGNAL_OUTPUT_TERM_PXI_TRIG5 = 11; + NIRFSG_STRING_ANY_SIGNAL_OUTPUT_TERM_PXI_TRIG6 = 12; + NIRFSG_STRING_ANY_SIGNAL_OUTPUT_TERM_PXIE_DSTARC = 13; + NIRFSG_STRING_ANY_SIGNAL_OUTPUT_TERM_TRIG_OUT = 14; + NIRFSG_STRING_ARB_SAMPLE_CLOCK_SOURCE_ONBOARD_CLOCK = 15; + NIRFSG_STRING_ARB_SAMPLE_CLOCK_SOURCE_CLK_IN = 16; + NIRFSG_STRING_CONFIG_LIST_TRIG_OUTPUT_TERM_DO_NOT_EXPORT = 17; + NIRFSG_STRING_CONFIG_LIST_TRIG_OUTPUT_TERM_PFI0 = 18; + NIRFSG_STRING_CONFIG_LIST_TRIG_OUTPUT_TERM_PFI1 = 19; + NIRFSG_STRING_CONFIG_LIST_TRIG_OUTPUT_TERM_PXI_TRIG0 = 20; + NIRFSG_STRING_CONFIG_LIST_TRIG_OUTPUT_TERM_PXI_TRIG1 = 21; + NIRFSG_STRING_CONFIG_LIST_TRIG_OUTPUT_TERM_PXI_TRIG2 = 22; + NIRFSG_STRING_CONFIG_LIST_TRIG_OUTPUT_TERM_PXI_TRIG3 = 23; + NIRFSG_STRING_CONFIG_LIST_TRIG_OUTPUT_TERM_PXI_TRIG4 = 24; + NIRFSG_STRING_CONFIG_LIST_TRIG_OUTPUT_TERM_PXI_TRIG5 = 25; + NIRFSG_STRING_CONFIG_LIST_TRIG_OUTPUT_TERM_PXI_TRIG6 = 26; + NIRFSG_STRING_CONFIG_LIST_TRIG_OUTPUT_TERM_PXIE_DSTARC = 27; + NIRFSG_STRING_CONFIG_LIST_TRIG_OUTPUT_TERM_TRIG_OUT = 28; + NIRFSG_STRING_CONFIG_LIST_TRIG_SOURCE_PFI0 = 29; + NIRFSG_STRING_CONFIG_LIST_TRIG_SOURCE_PFI1 = 30; + NIRFSG_STRING_CONFIG_LIST_TRIG_SOURCE_PXI_TRIG0 = 31; + NIRFSG_STRING_CONFIG_LIST_TRIG_SOURCE_PXI_TRIG1 = 32; + NIRFSG_STRING_CONFIG_LIST_TRIG_SOURCE_PXI_TRIG2 = 33; + NIRFSG_STRING_CONFIG_LIST_TRIG_SOURCE_PXI_TRIG3 = 34; + NIRFSG_STRING_CONFIG_LIST_TRIG_SOURCE_PXI_TRIG4 = 35; + NIRFSG_STRING_CONFIG_LIST_TRIG_SOURCE_PXI_TRIG5 = 36; + NIRFSG_STRING_CONFIG_LIST_TRIG_SOURCE_PXI_TRIG6 = 37; + NIRFSG_STRING_CONFIG_LIST_TRIG_SOURCE_PXI_TRIG7 = 38; + NIRFSG_STRING_CONFIG_LIST_TRIG_SOURCE_PXIE_DSTARB = 39; + NIRFSG_STRING_CONFIG_LIST_TRIG_SOURCE_MARKER0_EVENT = 40; + NIRFSG_STRING_CONFIG_LIST_TRIG_SOURCE_MARKER1_EVENT = 41; + NIRFSG_STRING_CONFIG_LIST_TRIG_SOURCE_MARKER2_EVENT = 42; + NIRFSG_STRING_CONFIG_LIST_TRIG_SOURCE_MARKER3_EVENT = 43; + NIRFSG_STRING_CONFIG_LIST_TRIG_SOURCE_TIMER_EVENT = 44; + NIRFSG_STRING_CONFIG_LIST_TRIG_SOURCE_TRIG_IN = 45; + NIRFSG_STRING_CONFIG_SETTLED_EVENT_OUTPUT_TERM_DO_NOT_EXPORT = 46; + NIRFSG_STRING_CONFIG_SETTLED_EVENT_OUTPUT_TERM_PXI_TRIG0 = 47; + NIRFSG_STRING_CONFIG_SETTLED_EVENT_OUTPUT_TERM_PXI_TRIG1 = 48; + NIRFSG_STRING_CONFIG_SETTLED_EVENT_OUTPUT_TERM_PXI_TRIG2 = 49; + NIRFSG_STRING_CONFIG_SETTLED_EVENT_OUTPUT_TERM_PXI_TRIG3 = 50; + NIRFSG_STRING_CONFIG_SETTLED_EVENT_OUTPUT_TERM_PXI_TRIG4 = 51; + NIRFSG_STRING_CONFIG_SETTLED_EVENT_OUTPUT_TERM_PXI_TRIG5 = 52; + NIRFSG_STRING_CONFIG_SETTLED_EVENT_OUTPUT_TERM_PXI_TRIG6 = 53; + NIRFSG_STRING_CONFIG_SETTLED_EVENT_OUTPUT_TERM_PXIE_DSTARC = 54; + NIRFSG_STRING_CONFIG_SETTLED_EVENT_OUTPUT_TERM_TRIG_OUT = 55; + NIRFSG_STRING_LO_SOURCE_ONBOARD = 56; + NIRFSG_STRING_LO_SOURCE_LO_IN = 57; + NIRFSG_STRING_LO_SOURCE_SECONDARY = 58; + NIRFSG_STRING_LO_SOURCE_SG_SA_SHARED = 59; + NIRFSG_STRING_LO_SOURCE_AUTOMATIC_SG_SA_SHARED = 60; + NIRFSG_STRING_PXI_CHASSIS_CLK10_NONE = 61; + NIRFSG_STRING_PXI_CHASSIS_CLK10_ONBOARD_CLOCK = 62; + NIRFSG_STRING_PXI_CHASSIS_CLK10_REF_IN = 63; + NIRFSG_STRING_REF_CLOCK_OUTPUT_TERM_DO_NOT_EXPORT = 64; + NIRFSG_STRING_REF_CLOCK_OUTPUT_TERM_REF_OUT = 65; + NIRFSG_STRING_REF_CLOCK_OUTPUT_TERM_REF_OUT2 = 66; + NIRFSG_STRING_REF_CLOCK_OUTPUT_TERM_CLK_OUT = 67; + NIRFSG_STRING_REF_CLOCK_SOURCE_ONBOARD_CLOCK = 68; + NIRFSG_STRING_REF_CLOCK_SOURCE_REF_IN = 69; + NIRFSG_STRING_REF_CLOCK_SOURCE_PXI_CLK = 70; + NIRFSG_STRING_REF_CLOCK_SOURCE_CLK_IN = 71; + NIRFSG_STRING_REF_CLOCK_SOURCE_REF_IN_2 = 72; + NIRFSG_STRING_REF_CLOCK_SOURCE_PXI_CLK_MASTER = 73; + NIRFSG_STRING_TRIGGER_SOURCE_PFI0 = 74; + NIRFSG_STRING_TRIGGER_SOURCE_PFI1 = 75; + NIRFSG_STRING_TRIGGER_SOURCE_PFI2 = 76; + NIRFSG_STRING_TRIGGER_SOURCE_PFI3 = 77; + NIRFSG_STRING_TRIGGER_SOURCE_PXI_TRIG0 = 78; + NIRFSG_STRING_TRIGGER_SOURCE_PXI_TRIG1 = 79; + NIRFSG_STRING_TRIGGER_SOURCE_PXI_TRIG2 = 80; + NIRFSG_STRING_TRIGGER_SOURCE_PXI_TRIG3 = 81; + NIRFSG_STRING_TRIGGER_SOURCE_PXI_TRIG4 = 82; + NIRFSG_STRING_TRIGGER_SOURCE_PXI_TRIG5 = 83; + NIRFSG_STRING_TRIGGER_SOURCE_PXI_TRIG6 = 84; + NIRFSG_STRING_TRIGGER_SOURCE_PXI_TRIG7 = 85; + NIRFSG_STRING_TRIGGER_SOURCE_PXI_STAR = 86; + NIRFSG_STRING_TRIGGER_SOURCE_PXIE_DSTARB = 87; + NIRFSG_STRING_TRIGGER_SOURCE_SYNC_START_TRIGGER = 88; + NIRFSG_STRING_TRIGGER_SOURCE_SYNC_SCRIPT_TRIGGER = 89; + NIRFSG_STRING_TRIGGER_SOURCE_TRIG_IN = 90; + NIRFSG_STRING_ANY_SIGNAL_OUTPUT_TERM_DIO0 = 91; + NIRFSG_STRING_ANY_SIGNAL_OUTPUT_TERM_DIO1 = 92; + NIRFSG_STRING_ANY_SIGNAL_OUTPUT_TERM_DIO2 = 93; + NIRFSG_STRING_ANY_SIGNAL_OUTPUT_TERM_DIO3 = 94; + NIRFSG_STRING_ANY_SIGNAL_OUTPUT_TERM_DIO4 = 95; + NIRFSG_STRING_ANY_SIGNAL_OUTPUT_TERM_DIO5 = 96; + NIRFSG_STRING_ANY_SIGNAL_OUTPUT_TERM_DIO6 = 97; + NIRFSG_STRING_ANY_SIGNAL_OUTPUT_TERM_DIO7 = 98; + NIRFSG_STRING_CONFIG_LIST_TRIG_OUTPUT_TERM_DIO0 = 99; + NIRFSG_STRING_CONFIG_LIST_TRIG_OUTPUT_TERM_DIO1 = 100; + NIRFSG_STRING_CONFIG_LIST_TRIG_OUTPUT_TERM_DIO2 = 101; + NIRFSG_STRING_CONFIG_LIST_TRIG_OUTPUT_TERM_DIO3 = 102; + NIRFSG_STRING_CONFIG_LIST_TRIG_OUTPUT_TERM_DIO4 = 103; + NIRFSG_STRING_CONFIG_LIST_TRIG_OUTPUT_TERM_DIO5 = 104; + NIRFSG_STRING_CONFIG_LIST_TRIG_OUTPUT_TERM_DIO6 = 105; + NIRFSG_STRING_CONFIG_LIST_TRIG_OUTPUT_TERM_DIO7 = 106; + NIRFSG_STRING_CONFIG_LIST_TRIG_SOURCE_DIO0 = 107; + NIRFSG_STRING_CONFIG_LIST_TRIG_SOURCE_DIO1 = 108; + NIRFSG_STRING_CONFIG_LIST_TRIG_SOURCE_DIO2 = 109; + NIRFSG_STRING_CONFIG_LIST_TRIG_SOURCE_DIO3 = 110; + NIRFSG_STRING_CONFIG_LIST_TRIG_SOURCE_DIO4 = 111; + NIRFSG_STRING_CONFIG_LIST_TRIG_SOURCE_DIO5 = 112; + NIRFSG_STRING_CONFIG_LIST_TRIG_SOURCE_DIO6 = 113; + NIRFSG_STRING_CONFIG_LIST_TRIG_SOURCE_DIO7 = 114; + NIRFSG_STRING_TRIGGER_SOURCE_PULSE_IN = 115; + NIRFSG_STRING_TRIGGER_SOURCE_DIO0 = 116; + NIRFSG_STRING_TRIGGER_SOURCE_DIO1 = 117; + NIRFSG_STRING_TRIGGER_SOURCE_DIO2 = 118; + NIRFSG_STRING_TRIGGER_SOURCE_DIO3 = 119; + NIRFSG_STRING_TRIGGER_SOURCE_DIO4 = 120; + NIRFSG_STRING_TRIGGER_SOURCE_DIO5 = 121; + NIRFSG_STRING_TRIGGER_SOURCE_DIO6 = 122; + NIRFSG_STRING_TRIGGER_SOURCE_DIO7 = 123; +} + +message AbortRequest { + nidevice_grpc.Session vi = 1; +} + +message AbortResponse { + int32 status = 1; +} + +message AllocateArbWaveformRequest { + nidevice_grpc.Session vi = 1; + string waveform_name = 2; + sint32 size_in_samples = 3; +} + +message AllocateArbWaveformResponse { + int32 status = 1; +} + +message CheckAttributeViBooleanRequest { + nidevice_grpc.Session vi = 1; + string channel_name = 2; + NiRFSGAttribute attribute_id = 3; + bool value = 4; +} + +message CheckAttributeViBooleanResponse { + int32 status = 1; +} + +message CheckAttributeViInt32Request { + nidevice_grpc.Session vi = 1; + string channel_name = 2; + NiRFSGAttribute attribute_id = 3; + oneof value_enum { + NiRFSGInt32AttributeValues value = 4; + sint32 value_raw = 5; + } +} + +message CheckAttributeViInt32Response { + int32 status = 1; +} + +message CheckAttributeViInt64Request { + nidevice_grpc.Session vi = 1; + string channel_name = 2; + NiRFSGAttribute attribute_id = 3; + int64 value_raw = 4; +} + +message CheckAttributeViInt64Response { + int32 status = 1; +} + +message CheckAttributeViReal64Request { + nidevice_grpc.Session vi = 1; + string channel_name = 2; + NiRFSGAttribute attribute_id = 3; + oneof value_enum { + NiRFSGReal64AttributeValues value = 4; + double value_raw = 5; + } +} + +message CheckAttributeViReal64Response { + int32 status = 1; +} + +message CheckAttributeViSessionRequest { + nidevice_grpc.Session vi = 1; + string channel_name = 2; + NiRFSGAttribute attribute_id = 3; + nidevice_grpc.Session value = 4; +} + +message CheckAttributeViSessionResponse { + int32 status = 1; +} + +message CheckAttributeViStringRequest { + nidevice_grpc.Session vi = 1; + string channel_name = 2; + NiRFSGAttribute attribute_id = 3; + oneof value_enum { + NiRFSGStringAttributeValuesMapped value_mapped = 4; + string value_raw = 5; + } +} + +message CheckAttributeViStringResponse { + int32 status = 1; +} + +message CheckGenerationStatusRequest { + nidevice_grpc.Session vi = 1; +} + +message CheckGenerationStatusResponse { + int32 status = 1; + bool is_done = 2; +} + +message CheckIfConfigurationListExistsRequest { + nidevice_grpc.Session vi = 1; + string list_name = 2; +} + +message CheckIfConfigurationListExistsResponse { + int32 status = 1; + bool list_exists = 2; +} + +message CheckIfScriptExistsRequest { + nidevice_grpc.Session vi = 1; + string script_name = 2; +} + +message CheckIfScriptExistsResponse { + int32 status = 1; + bool script_exists = 2; +} + +message CheckIfWaveformExistsRequest { + nidevice_grpc.Session vi = 1; + string waveform_name = 2; +} + +message CheckIfWaveformExistsResponse { + int32 status = 1; + bool waveform_exists = 2; +} + +message ClearAllArbWaveformsRequest { + nidevice_grpc.Session vi = 1; +} + +message ClearAllArbWaveformsResponse { + int32 status = 1; +} + +message ClearArbWaveformRequest { + nidevice_grpc.Session vi = 1; + string name = 2; +} + +message ClearArbWaveformResponse { + int32 status = 1; +} + +message ClearErrorRequest { + nidevice_grpc.Session vi = 1; +} + +message ClearErrorResponse { + int32 status = 1; +} + +message ClearSelfCalibrateRangeRequest { + nidevice_grpc.Session vi = 1; +} + +message ClearSelfCalibrateRangeResponse { + int32 status = 1; +} + +message CloseRequest { + nidevice_grpc.Session vi = 1; +} + +message CloseResponse { + int32 status = 1; +} + +message CommitRequest { + nidevice_grpc.Session vi = 1; +} + +message CommitResponse { + int32 status = 1; +} + +message ConfigureDeembeddingTableInterpolationLinearRequest { + nidevice_grpc.Session vi = 1; + string port = 2; + string table_name = 3; + oneof format_enum { + LinearInterpolationFormat format = 4; + sint32 format_raw = 5; + } +} + +message ConfigureDeembeddingTableInterpolationLinearResponse { + int32 status = 1; +} + +message ConfigureDeembeddingTableInterpolationNearestRequest { + nidevice_grpc.Session vi = 1; + string port = 2; + string table_name = 3; +} + +message ConfigureDeembeddingTableInterpolationNearestResponse { + int32 status = 1; +} + +message ConfigureDeembeddingTableInterpolationSplineRequest { + nidevice_grpc.Session vi = 1; + string port = 2; + string table_name = 3; +} + +message ConfigureDeembeddingTableInterpolationSplineResponse { + int32 status = 1; +} + +message ConfigureDigitalEdgeConfigurationListStepTriggerRequest { + nidevice_grpc.Session vi = 1; + oneof source_enum { + DigitalEdgeConfigurationListStepTriggerSource source_mapped = 2; + string source_raw = 3; + } + oneof edge_enum { + DigitalEdgeEdge edge = 4; + sint32 edge_raw = 5; + } +} + +message ConfigureDigitalEdgeConfigurationListStepTriggerResponse { + int32 status = 1; +} + +message ConfigureDigitalEdgeScriptTriggerRequest { + nidevice_grpc.Session vi = 1; + oneof trigger_id_enum { + DigitalEdgeScriptTriggerIdentifier trigger_id_mapped = 2; + string trigger_id_raw = 3; + } + oneof source_enum { + TriggerSource source_mapped = 4; + string source_raw = 5; + } + oneof edge_enum { + DigitalEdgeEdge edge = 6; + sint32 edge_raw = 7; + } +} + +message ConfigureDigitalEdgeScriptTriggerResponse { + int32 status = 1; +} + +message ConfigureDigitalEdgeStartTriggerRequest { + nidevice_grpc.Session vi = 1; + oneof source_enum { + TriggerSource source_mapped = 2; + string source_raw = 3; + } + oneof edge_enum { + DigitalEdgeEdge edge = 4; + sint32 edge_raw = 5; + } +} + +message ConfigureDigitalEdgeStartTriggerResponse { + int32 status = 1; +} + +message ConfigureDigitalLevelScriptTriggerRequest { + nidevice_grpc.Session vi = 1; + oneof trigger_id_enum { + DigitalEdgeScriptTriggerIdentifier trigger_id_mapped = 2; + string trigger_id_raw = 3; + } + oneof source_enum { + TriggerSource source_mapped = 4; + string source_raw = 5; + } + oneof level_enum { + DigitalLevelActiveLevel level = 6; + sint32 level_raw = 7; + } +} + +message ConfigureDigitalLevelScriptTriggerResponse { + int32 status = 1; +} + +message ConfigureDigitalModulationUserDefinedWaveformRequest { + nidevice_grpc.Session vi = 1; + bytes user_defined_waveform = 2; +} + +message ConfigureDigitalModulationUserDefinedWaveformResponse { + int32 status = 1; +} + +message ConfigureGenerationModeRequest { + nidevice_grpc.Session vi = 1; + oneof generation_mode_enum { + GenerationMode generation_mode = 2; + sint32 generation_mode_raw = 3; + } +} + +message ConfigureGenerationModeResponse { + int32 status = 1; +} + +message ConfigureOutputEnabledRequest { + nidevice_grpc.Session vi = 1; + bool output_enabled = 2; +} + +message ConfigureOutputEnabledResponse { + int32 status = 1; +} + +message ConfigureP2PEndpointFullnessStartTriggerRequest { + nidevice_grpc.Session vi = 1; + int64 p2p_endpoint_fullness_level = 2; +} + +message ConfigureP2PEndpointFullnessStartTriggerResponse { + int32 status = 1; +} + +message ConfigurePXIChassisClk10Request { + nidevice_grpc.Session vi = 1; + oneof pxi_clk10_source_enum { + PXIChassisClk10 pxi_clk10_source_mapped = 2; + string pxi_clk10_source_raw = 3; + } +} + +message ConfigurePXIChassisClk10Response { + int32 status = 1; +} + +message ConfigurePowerLevelTypeRequest { + nidevice_grpc.Session vi = 1; + oneof power_level_type_enum { + PowerLevelType power_level_type = 2; + sint32 power_level_type_raw = 3; + } +} + +message ConfigurePowerLevelTypeResponse { + int32 status = 1; +} + +message ConfigureRFRequest { + nidevice_grpc.Session vi = 1; + double frequency = 2; + double power_level = 3; +} + +message ConfigureRFResponse { + int32 status = 1; +} + +message ConfigureRefClockRequest { + nidevice_grpc.Session vi = 1; + oneof ref_clock_source_enum { + RefClockSource ref_clock_source_mapped = 2; + string ref_clock_source_raw = 3; + } + double ref_clock_rate = 4; +} + +message ConfigureRefClockResponse { + int32 status = 1; +} + +message ConfigureSignalBandwidthRequest { + nidevice_grpc.Session vi = 1; + double signal_bandwidth = 2; +} + +message ConfigureSignalBandwidthResponse { + int32 status = 1; +} + +message ConfigureSoftwareScriptTriggerRequest { + nidevice_grpc.Session vi = 1; + oneof trigger_id_enum { + DigitalEdgeScriptTriggerIdentifier trigger_id_mapped = 2; + string trigger_id_raw = 3; + } +} + +message ConfigureSoftwareScriptTriggerResponse { + int32 status = 1; +} + +message ConfigureSoftwareStartTriggerRequest { + nidevice_grpc.Session vi = 1; +} + +message ConfigureSoftwareStartTriggerResponse { + int32 status = 1; +} + +message ConfigureUpconverterPLLSettlingTimeRequest { + nidevice_grpc.Session vi = 1; + double pll_settling_time = 2; + bool ensure_pll_locked = 3; +} + +message ConfigureUpconverterPLLSettlingTimeResponse { + int32 status = 1; +} + +message CreateConfigurationListRequest { + nidevice_grpc.Session vi = 1; + string list_name = 2; + repeated NiRFSGAttribute configuration_list_attributes = 3; + bool set_as_active_list = 4; +} + +message CreateConfigurationListResponse { + int32 status = 1; +} + +message CreateConfigurationListStepRequest { + nidevice_grpc.Session vi = 1; + bool set_as_active_step = 2; +} + +message CreateConfigurationListStepResponse { + int32 status = 1; +} + +message CreateDeembeddingSparameterTableArrayRequest { + nidevice_grpc.Session vi = 1; + string port = 2; + string table_name = 3; + repeated double frequencies = 4; + repeated nidevice_grpc.NIComplexNumber sparameter_table = 5; + sint32 number_of_ports = 6; + oneof sparameter_orientation_enum { + SParameterOrientation sparameter_orientation = 7; + sint32 sparameter_orientation_raw = 8; + } +} + +message CreateDeembeddingSparameterTableArrayResponse { + int32 status = 1; +} + +message CreateDeembeddingSparameterTableS2PFileRequest { + nidevice_grpc.Session vi = 1; + string port = 2; + string table_name = 3; + string s2p_file_path = 4; + oneof sparameter_orientation_enum { + SParameterOrientation sparameter_orientation = 5; + sint32 sparameter_orientation_raw = 6; + } +} + +message CreateDeembeddingSparameterTableS2PFileResponse { + int32 status = 1; +} + +message DeleteAllDeembeddingTablesRequest { + nidevice_grpc.Session vi = 1; +} + +message DeleteAllDeembeddingTablesResponse { + int32 status = 1; +} + +message DeleteConfigurationListRequest { + nidevice_grpc.Session vi = 1; + string list_name = 2; +} + +message DeleteConfigurationListResponse { + int32 status = 1; +} + +message DeleteDeembeddingTableRequest { + nidevice_grpc.Session vi = 1; + string port = 2; + string table_name = 3; +} + +message DeleteDeembeddingTableResponse { + int32 status = 1; +} + +message DeleteScriptRequest { + nidevice_grpc.Session vi = 1; + string script_name = 2; +} + +message DeleteScriptResponse { + int32 status = 1; +} + +message DisableRequest { + nidevice_grpc.Session vi = 1; +} + +message DisableResponse { + int32 status = 1; +} + +message DisableAllModulationRequest { + nidevice_grpc.Session vi = 1; +} + +message DisableAllModulationResponse { + int32 status = 1; +} + +message DisableConfigurationListStepTriggerRequest { + nidevice_grpc.Session vi = 1; +} + +message DisableConfigurationListStepTriggerResponse { + int32 status = 1; +} + +message DisableScriptTriggerRequest { + nidevice_grpc.Session vi = 1; + oneof trigger_id_enum { + DigitalEdgeScriptTriggerIdentifier trigger_id_mapped = 2; + string trigger_id_raw = 3; + } +} + +message DisableScriptTriggerResponse { + int32 status = 1; +} + +message DisableStartTriggerRequest { + nidevice_grpc.Session vi = 1; +} + +message DisableStartTriggerResponse { + int32 status = 1; +} + +message ErrorMessageRequest { + nidevice_grpc.Session vi = 1; + sint32 error_code = 2; +} + +message ErrorMessageResponse { + int32 status = 1; + string error_message = 2; +} + +message ErrorQueryRequest { + nidevice_grpc.Session vi = 1; +} + +message ErrorQueryResponse { + int32 status = 1; + sint32 error_code = 2; + string error_message = 3; +} + +message ExportSignalRequest { + nidevice_grpc.Session vi = 1; + oneof signal_enum { + RoutedSignal signal = 2; + sint32 signal_raw = 3; + } + oneof signal_identifier_enum { + SignalIdentifier signal_identifier_mapped = 4; + string signal_identifier_raw = 5; + } + oneof output_terminal_enum { + OutputSignal output_terminal_mapped = 6; + string output_terminal_raw = 7; + } +} + +message ExportSignalResponse { + int32 status = 1; +} + +message GetAllNamedWaveformNamesRequest { + nidevice_grpc.Session vi = 1; +} + +message GetAllNamedWaveformNamesResponse { + int32 status = 1; + string waveform_names = 2; + sint32 actual_buffer_size = 3; +} + +message GetAllScriptNamesRequest { + nidevice_grpc.Session vi = 1; +} + +message GetAllScriptNamesResponse { + int32 status = 1; + string script_names = 2; + sint32 actual_buffer_size = 3; +} + +message GetScriptRequest { + nidevice_grpc.Session vi = 1; + string script_name = 2; +} + +message GetScriptResponse { + int32 status = 1; + string script = 2; + sint32 actual_buffer_size = 3; +} + +message GetAttributeViBooleanRequest { + nidevice_grpc.Session vi = 1; + string channel_name = 2; + NiRFSGAttribute attribute_id = 3; +} + +message GetAttributeViBooleanResponse { + int32 status = 1; + bool value = 2; +} + +message GetAttributeViInt32Request { + nidevice_grpc.Session vi = 1; + string channel_name = 2; + NiRFSGAttribute attribute_id = 3; +} + +message GetAttributeViInt32Response { + int32 status = 1; + sint32 value = 2; +} + +message GetAttributeViInt64Request { + nidevice_grpc.Session vi = 1; + string channel_name = 2; + NiRFSGAttribute attribute_id = 3; +} + +message GetAttributeViInt64Response { + int32 status = 1; + int64 value = 2; +} + +message GetAttributeViReal64Request { + nidevice_grpc.Session vi = 1; + string channel_name = 2; + NiRFSGAttribute attribute_id = 3; +} + +message GetAttributeViReal64Response { + int32 status = 1; + double value = 2; +} + +message GetAttributeViSessionRequest { + nidevice_grpc.Session vi = 1; + string channel_name = 2; + NiRFSGAttribute attribute_id = 3; +} + +message GetAttributeViSessionResponse { + int32 status = 1; + nidevice_grpc.Session value = 2; +} + +message GetAttributeViStringRequest { + nidevice_grpc.Session vi = 1; + string channel_name = 2; + NiRFSGAttribute attribute_id = 3; +} + +message GetAttributeViStringResponse { + int32 status = 1; + string value = 2; +} + +message GetChannelNameRequest { + nidevice_grpc.Session vi = 1; + sint32 index = 2; +} + +message GetChannelNameResponse { + int32 status = 1; + string name = 2; +} + +message GetDeembeddingSparametersRequest { + nidevice_grpc.Session vi = 1; +} + +message GetDeembeddingSparametersResponse { + int32 status = 1; + repeated nidevice_grpc.NIComplexNumber sparameters = 2; + sint32 number_of_sparameters = 3; + sint32 number_of_ports = 4; +} + +message GetErrorRequest { + nidevice_grpc.Session vi = 1; +} + +message GetErrorResponse { + int32 status = 1; + sint32 error_code = 2; + string error_description = 3; +} + +message GetExternalCalibrationLastDateAndTimeRequest { + nidevice_grpc.Session vi = 1; +} + +message GetExternalCalibrationLastDateAndTimeResponse { + int32 status = 1; + sint32 year = 2; + sint32 month = 3; + sint32 day = 4; + sint32 hour = 5; + sint32 minute = 6; + sint32 second = 7; +} + +message GetMaxSettablePowerRequest { + nidevice_grpc.Session vi = 1; +} + +message GetMaxSettablePowerResponse { + int32 status = 1; + double value = 2; +} + +message GetSelfCalibrationDateAndTimeRequest { + nidevice_grpc.Session vi = 1; + oneof module_enum { + Module module = 2; + sint32 module_raw = 3; + } +} + +message GetSelfCalibrationDateAndTimeResponse { + int32 status = 1; + sint32 year = 2; + sint32 month = 3; + sint32 day = 4; + sint32 hour = 5; + sint32 minute = 6; + sint32 second = 7; +} + +message GetSelfCalibrationTemperatureRequest { + nidevice_grpc.Session vi = 1; + oneof module_enum { + Module module = 2; + sint32 module_raw = 3; + } +} + +message GetSelfCalibrationTemperatureResponse { + int32 status = 1; + double temperature = 2; +} + +message GetTerminalNameRequest { + nidevice_grpc.Session vi = 1; + oneof signal_enum { + RoutedSignal signal = 2; + sint32 signal_raw = 3; + } + oneof signal_identifier_enum { + SignalIdentifier signal_identifier_mapped = 4; + string signal_identifier_raw = 5; + } +} + +message GetTerminalNameResponse { + int32 status = 1; + string terminal_name = 2; +} + +message GetUserDataRequest { + nidevice_grpc.Session vi = 1; + string identifier = 2; +} + +message GetUserDataResponse { + int32 status = 1; + bytes data = 2; + sint32 actual_data_size = 3; +} + +message GetWaveformBurstStartLocationsRequest { + nidevice_grpc.Session vi = 1; + string channel_name = 2; +} + +message GetWaveformBurstStartLocationsResponse { + int32 status = 1; + repeated double locations = 2; + sint32 required_size = 3; +} + +message GetWaveformBurstStopLocationsRequest { + nidevice_grpc.Session vi = 1; + string channel_name = 2; +} + +message GetWaveformBurstStopLocationsResponse { + int32 status = 1; + repeated double locations = 2; + sint32 required_size = 3; +} + +message GetWaveformMarkerEventLocationsRequest { + nidevice_grpc.Session vi = 1; + string channel_name = 2; +} + +message GetWaveformMarkerEventLocationsResponse { + int32 status = 1; + repeated double locations = 2; + sint32 required_size = 3; +} + +message InitRequest { + string session_name = 1; + string resource_name = 2; + bool id_query = 3; + bool reset_device = 4; + nidevice_grpc.SessionInitializationBehavior initialization_behavior = 5; +} + +message InitResponse { + int32 status = 1; + nidevice_grpc.Session new_vi = 2; + string error_message = 3 [deprecated = true]; + bool new_session_initialized = 4; +} + +message InitWithOptionsRequest { + string session_name = 1; + string resource_name = 2; + bool id_query = 3; + bool reset_device = 4; + string option_string = 5; + nidevice_grpc.SessionInitializationBehavior initialization_behavior = 6; +} + +message InitWithOptionsResponse { + int32 status = 1; + nidevice_grpc.Session vi = 2; + string error_message = 3 [deprecated = true]; + bool new_session_initialized = 4; +} + +message InitiateRequest { + nidevice_grpc.Session vi = 1; +} + +message InitiateResponse { + int32 status = 1; +} + +message InvalidateAllAttributesRequest { + nidevice_grpc.Session vi = 1; +} + +message InvalidateAllAttributesResponse { + int32 status = 1; +} + +message LoadConfigurationsFromFileRequest { + nidevice_grpc.Session vi = 1; + string channel_name = 2; + string file_path = 3; +} + +message LoadConfigurationsFromFileResponse { + int32 status = 1; +} + +message PerformPowerSearchRequest { + nidevice_grpc.Session vi = 1; +} + +message PerformPowerSearchResponse { + int32 status = 1; +} + +message PerformThermalCorrectionRequest { + nidevice_grpc.Session vi = 1; +} + +message PerformThermalCorrectionResponse { + int32 status = 1; +} + +message QueryArbWaveformCapabilitiesRequest { + nidevice_grpc.Session vi = 1; +} + +message QueryArbWaveformCapabilitiesResponse { + int32 status = 1; + sint32 max_number_waveforms = 2; + sint32 waveform_quantum = 3; + sint32 min_waveform_size = 4; + sint32 max_waveform_size = 5; +} + +message ReadAndDownloadWaveformFromFileTDMSRequest { + nidevice_grpc.Session vi = 1; + string waveform_name = 2; + string file_path = 3; + uint32 waveform_index = 4; +} + +message ReadAndDownloadWaveformFromFileTDMSResponse { + int32 status = 1; +} + +message ResetRequest { + nidevice_grpc.Session vi = 1; +} + +message ResetResponse { + int32 status = 1; +} + +message ResetAttributeRequest { + nidevice_grpc.Session vi = 1; + string channel_name = 2; + NiRFSGAttribute attribute_id = 3; +} + +message ResetAttributeResponse { + int32 status = 1; +} + +message ResetDeviceRequest { + nidevice_grpc.Session vi = 1; +} + +message ResetDeviceResponse { + int32 status = 1; +} + +message ResetWithDefaultsRequest { + nidevice_grpc.Session vi = 1; +} + +message ResetWithDefaultsResponse { + int32 status = 1; +} + +message ResetWithOptionsRequest { + nidevice_grpc.Session vi = 1; + oneof steps_to_omit_enum { + ResetWithOptionsStepsToOmit steps_to_omit = 2; + uint64 steps_to_omit_raw = 3; + } +} + +message ResetWithOptionsResponse { + int32 status = 1; +} + +message RevisionQueryRequest { + nidevice_grpc.Session vi = 1; +} + +message RevisionQueryResponse { + int32 status = 1; + string instrument_driver_revision = 2; + string firmware_revision = 3; +} + +message SaveConfigurationsToFileRequest { + nidevice_grpc.Session vi = 1; + string channel_name = 2; + string file_path = 3; +} + +message SaveConfigurationsToFileResponse { + int32 status = 1; +} + +message SelectArbWaveformRequest { + nidevice_grpc.Session vi = 1; + string name = 2; +} + +message SelectArbWaveformResponse { + int32 status = 1; +} + +message SelfCalRequest { + nidevice_grpc.Session vi = 1; +} + +message SelfCalResponse { + int32 status = 1; +} + +message SelfCalibrateRangeRequest { + nidevice_grpc.Session vi = 1; + oneof steps_to_omit_enum { + SelfCalibrateRangeStepsToOmit steps_to_omit = 2; + int64 steps_to_omit_raw = 3; + } + double min_frequency = 4; + double max_frequency = 5; + double min_power_level = 6; + double max_power_level = 7; +} + +message SelfCalibrateRangeResponse { + int32 status = 1; +} + +message SelfTestRequest { + nidevice_grpc.Session vi = 1; +} + +message SelfTestResponse { + int32 status = 1; + sint32 self_test_result = 2; + string self_test_message = 3; +} + +message SendSoftwareEdgeTriggerRequest { + nidevice_grpc.Session vi = 1; + oneof trigger_enum { + RoutedSignal trigger = 2; + sint32 trigger_raw = 3; + } + oneof trigger_identifier_enum { + SignalIdentifier trigger_identifier_mapped = 4; + string trigger_identifier_raw = 5; + } +} + +message SendSoftwareEdgeTriggerResponse { + int32 status = 1; +} + +message SetArbWaveformNextWritePositionRequest { + nidevice_grpc.Session vi = 1; + string waveform_name = 2; + oneof relative_to_enum { + RelativeTo relative_to = 3; + sint32 relative_to_raw = 4; + } + sint32 offset = 5; +} + +message SetArbWaveformNextWritePositionResponse { + int32 status = 1; +} + +message SetAttributeViBooleanRequest { + nidevice_grpc.Session vi = 1; + string channel_name = 2; + NiRFSGAttribute attribute_id = 3; + bool value = 4; +} + +message SetAttributeViBooleanResponse { + int32 status = 1; +} + +message SetAttributeViInt32Request { + nidevice_grpc.Session vi = 1; + string channel_name = 2; + NiRFSGAttribute attribute_id = 3; + oneof value_enum { + NiRFSGInt32AttributeValues value = 4; + sint32 value_raw = 5; + } +} + +message SetAttributeViInt32Response { + int32 status = 1; +} + +message SetAttributeViInt64Request { + nidevice_grpc.Session vi = 1; + string channel_name = 2; + NiRFSGAttribute attribute_id = 3; + int64 value_raw = 4; +} + +message SetAttributeViInt64Response { + int32 status = 1; +} + +message SetAttributeViReal64Request { + nidevice_grpc.Session vi = 1; + string channel_name = 2; + NiRFSGAttribute attribute_id = 3; + oneof value_enum { + NiRFSGReal64AttributeValues value = 4; + double value_raw = 5; + } +} + +message SetAttributeViReal64Response { + int32 status = 1; +} + +message SetAttributeViSessionRequest { + nidevice_grpc.Session vi = 1; + string channel_name = 2; + NiRFSGAttribute attribute_id = 3; + nidevice_grpc.Session value = 4; +} + +message SetAttributeViSessionResponse { + int32 status = 1; +} + +message SetAttributeViStringRequest { + nidevice_grpc.Session vi = 1; + string channel_name = 2; + NiRFSGAttribute attribute_id = 3; + oneof value_enum { + NiRFSGStringAttributeValuesMapped value_mapped = 4; + string value_raw = 5; + } +} + +message SetAttributeViStringResponse { + int32 status = 1; +} + +message SetUserDataRequest { + nidevice_grpc.Session vi = 1; + string identifier = 2; + bytes data = 3; +} + +message SetUserDataResponse { + int32 status = 1; +} + +message SetWaveformBurstStartLocationsRequest { + nidevice_grpc.Session vi = 1; + string channel_name = 2; + repeated double locations = 3; +} + +message SetWaveformBurstStartLocationsResponse { + int32 status = 1; +} + +message SetWaveformBurstStopLocationsRequest { + nidevice_grpc.Session vi = 1; + string channel_name = 2; + repeated double locations = 3; +} + +message SetWaveformBurstStopLocationsResponse { + int32 status = 1; +} + +message SetWaveformMarkerEventLocationsRequest { + nidevice_grpc.Session vi = 1; + string channel_name = 2; + repeated double locations = 3; +} + +message SetWaveformMarkerEventLocationsResponse { + int32 status = 1; +} + +message WaitUntilSettledRequest { + nidevice_grpc.Session vi = 1; + sint32 max_time_milliseconds = 2; +} + +message WaitUntilSettledResponse { + int32 status = 1; +} + +message WriteArbWaveformRequest { + nidevice_grpc.Session vi = 1; + string waveform_name = 2; + repeated double i_data = 3; + repeated double q_data = 4; + bool more_data_pending = 5; +} + +message WriteArbWaveformResponse { + int32 status = 1; +} + +message WriteArbWaveformComplexF32Request { + nidevice_grpc.Session vi = 1; + string waveform_name = 2; + repeated nidevice_grpc.NIComplexNumberF32 wfm_data = 3; + bool more_data_pending = 4; +} + +message WriteArbWaveformComplexF32Response { + int32 status = 1; +} + +message WriteArbWaveformComplexF64Request { + nidevice_grpc.Session vi = 1; + string waveform_name = 2; + repeated nidevice_grpc.NIComplexNumber wfm_data = 3; + bool more_data_pending = 4; +} + +message WriteArbWaveformComplexF64Response { + int32 status = 1; +} + +message WriteArbWaveformComplexI16Request { + nidevice_grpc.Session vi = 1; + string waveform_name = 2; + repeated nidevice_grpc.NIComplexI16 wfm_data = 3; +} + +message WriteArbWaveformComplexI16Response { + int32 status = 1; +} + +message WriteArbWaveformF32Request { + nidevice_grpc.Session vi = 1; + string waveform_name = 2; + repeated float i_data = 3; + repeated float q_data = 4; + bool more_data_pending = 5; +} + +message WriteArbWaveformF32Response { + int32 status = 1; +} + +message WriteScriptRequest { + nidevice_grpc.Session vi = 1; + string script = 2; +} + +message WriteScriptResponse { + int32 status = 1; +} + diff --git a/src/nirfsg/templates/_grpc_stub_interpreter.py/get_deembedding_sparameter.py.mako b/src/nirfsg/templates/_grpc_stub_interpreter.py/get_deembedding_sparameter.py.mako index 27c91dd4f..21f6d66e5 100644 --- a/src/nirfsg/templates/_grpc_stub_interpreter.py/get_deembedding_sparameter.py.mako +++ b/src/nirfsg/templates/_grpc_stub_interpreter.py/get_deembedding_sparameter.py.mako @@ -3,6 +3,7 @@ '''Retrieves S-parameters from the gRPC call response and converts them to a reshaped numpy array.''' import build.helper as helper %>\ + def ${f['interpreter_name']}(self): import numpy as np response = self._invoke(