@@ -76,9 +76,6 @@ def __init__(self, ctypes_library):
7676 self .niRFSG_GetSelfCalibrationTemperature_cfunc = None
7777 self .niRFSG_GetStreamEndpointHandle_cfunc = None
7878 self .niRFSG_GetTerminalName_cfunc = None
79- self .niRFSG_GetWaveformBurstStartLocations_cfunc = None
80- self .niRFSG_GetWaveformBurstStopLocations_cfunc = None
81- self .niRFSG_GetWaveformMarkerEventLocations_cfunc = None
8279 self .niRFSG_InitWithOptions_cfunc = None
8380 self .niRFSG_Initiate_cfunc = None
8481 self .niRFSG_LoadConfigurationsFromFile_cfunc = None
@@ -105,9 +102,6 @@ def __init__(self, ctypes_library):
105102 self .niRFSG_SetAttributeViReal64_cfunc = None
106103 self .niRFSG_SetAttributeViSession_cfunc = None
107104 self .niRFSG_SetAttributeViString_cfunc = None
108- self .niRFSG_SetWaveformBurstStartLocations_cfunc = None
109- self .niRFSG_SetWaveformBurstStopLocations_cfunc = None
110- self .niRFSG_SetWaveformMarkerEventLocations_cfunc = None
111105 self .niRFSG_UnlockSession_cfunc = None
112106 self .niRFSG_WaitUntilSettled_cfunc = None
113107 self .niRFSG_WriteP2PEndpointI16_cfunc = None
@@ -577,30 +571,6 @@ def niRFSG_GetTerminalName(self, vi, signal, signal_identifier, buffer_size, ter
577571 self .niRFSG_GetTerminalName_cfunc .restype = ViStatus # noqa: F405
578572 return self .niRFSG_GetTerminalName_cfunc (vi , signal , signal_identifier , buffer_size , terminal_name )
579573
580- def niRFSG_GetWaveformBurstStartLocations (self , vi , channel_name , number_of_locations , locations , required_size ): # noqa: N802
581- with self ._func_lock :
582- if self .niRFSG_GetWaveformBurstStartLocations_cfunc is None :
583- self .niRFSG_GetWaveformBurstStartLocations_cfunc = self ._get_library_function ('niRFSG_GetWaveformBurstStartLocations' )
584- self .niRFSG_GetWaveformBurstStartLocations_cfunc .argtypes = [ViSession , ctypes .POINTER (ViChar ), ViInt32 , ctypes .POINTER (ViReal64 ), ctypes .POINTER (ViInt32 )] # noqa: F405
585- self .niRFSG_GetWaveformBurstStartLocations_cfunc .restype = ViStatus # noqa: F405
586- return self .niRFSG_GetWaveformBurstStartLocations_cfunc (vi , channel_name , number_of_locations , locations , required_size )
587-
588- def niRFSG_GetWaveformBurstStopLocations (self , vi , channel_name , number_of_locations , locations , required_size ): # noqa: N802
589- with self ._func_lock :
590- if self .niRFSG_GetWaveformBurstStopLocations_cfunc is None :
591- self .niRFSG_GetWaveformBurstStopLocations_cfunc = self ._get_library_function ('niRFSG_GetWaveformBurstStopLocations' )
592- self .niRFSG_GetWaveformBurstStopLocations_cfunc .argtypes = [ViSession , ctypes .POINTER (ViChar ), ViInt32 , ctypes .POINTER (ViReal64 ), ctypes .POINTER (ViInt32 )] # noqa: F405
593- self .niRFSG_GetWaveformBurstStopLocations_cfunc .restype = ViStatus # noqa: F405
594- return self .niRFSG_GetWaveformBurstStopLocations_cfunc (vi , channel_name , number_of_locations , locations , required_size )
595-
596- def niRFSG_GetWaveformMarkerEventLocations (self , vi , channel_name , number_of_locations , locations , required_size ): # noqa: N802
597- with self ._func_lock :
598- if self .niRFSG_GetWaveformMarkerEventLocations_cfunc is None :
599- self .niRFSG_GetWaveformMarkerEventLocations_cfunc = self ._get_library_function ('niRFSG_GetWaveformMarkerEventLocations' )
600- self .niRFSG_GetWaveformMarkerEventLocations_cfunc .argtypes = [ViSession , ctypes .POINTER (ViChar ), ViInt32 , ctypes .POINTER (ViReal64 ), ctypes .POINTER (ViInt32 )] # noqa: F405
601- self .niRFSG_GetWaveformMarkerEventLocations_cfunc .restype = ViStatus # noqa: F405
602- return self .niRFSG_GetWaveformMarkerEventLocations_cfunc (vi , channel_name , number_of_locations , locations , required_size )
603-
604574 def niRFSG_InitWithOptions (self , resource_name , id_query , reset_device , option_string , new_vi ): # noqa: N802
605575 with self ._func_lock :
606576 if self .niRFSG_InitWithOptions_cfunc is None :
@@ -809,30 +779,6 @@ def niRFSG_SetAttributeViString(self, vi, channel_name, attribute, value): # no
809779 self .niRFSG_SetAttributeViString_cfunc .restype = ViStatus # noqa: F405
810780 return self .niRFSG_SetAttributeViString_cfunc (vi , channel_name , attribute , value )
811781
812- def niRFSG_SetWaveformBurstStartLocations (self , vi , channel_name , number_of_locations , locations ): # noqa: N802
813- with self ._func_lock :
814- if self .niRFSG_SetWaveformBurstStartLocations_cfunc is None :
815- self .niRFSG_SetWaveformBurstStartLocations_cfunc = self ._get_library_function ('niRFSG_SetWaveformBurstStartLocations' )
816- self .niRFSG_SetWaveformBurstStartLocations_cfunc .argtypes = [ViSession , ctypes .POINTER (ViChar ), ViInt32 , ViReal64 ] # noqa: F405
817- self .niRFSG_SetWaveformBurstStartLocations_cfunc .restype = ViStatus # noqa: F405
818- return self .niRFSG_SetWaveformBurstStartLocations_cfunc (vi , channel_name , number_of_locations , locations )
819-
820- def niRFSG_SetWaveformBurstStopLocations (self , vi , channel_name , number_of_locations , locations ): # noqa: N802
821- with self ._func_lock :
822- if self .niRFSG_SetWaveformBurstStopLocations_cfunc is None :
823- self .niRFSG_SetWaveformBurstStopLocations_cfunc = self ._get_library_function ('niRFSG_SetWaveformBurstStopLocations' )
824- self .niRFSG_SetWaveformBurstStopLocations_cfunc .argtypes = [ViSession , ctypes .POINTER (ViChar ), ViInt32 , ViReal64 ] # noqa: F405
825- self .niRFSG_SetWaveformBurstStopLocations_cfunc .restype = ViStatus # noqa: F405
826- return self .niRFSG_SetWaveformBurstStopLocations_cfunc (vi , channel_name , number_of_locations , locations )
827-
828- def niRFSG_SetWaveformMarkerEventLocations (self , vi , channel_name , number_of_locations , locations ): # noqa: N802
829- with self ._func_lock :
830- if self .niRFSG_SetWaveformMarkerEventLocations_cfunc is None :
831- self .niRFSG_SetWaveformMarkerEventLocations_cfunc = self ._get_library_function ('niRFSG_SetWaveformMarkerEventLocations' )
832- self .niRFSG_SetWaveformMarkerEventLocations_cfunc .argtypes = [ViSession , ctypes .POINTER (ViChar ), ViInt32 , ViReal64 ] # noqa: F405
833- self .niRFSG_SetWaveformMarkerEventLocations_cfunc .restype = ViStatus # noqa: F405
834- return self .niRFSG_SetWaveformMarkerEventLocations_cfunc (vi , channel_name , number_of_locations , locations )
835-
836782 def niRFSG_UnlockSession (self , vi , caller_has_lock ): # noqa: N802
837783 with self ._func_lock :
838784 if self .niRFSG_UnlockSession_cfunc is None :
0 commit comments