@@ -7016,8 +7016,8 @@ def configure_output_enabled(self, output_enabled):
70167016 self._interpreter.configure_output_enabled(output_enabled)
70177017
70187018 @ivi_synchronized
7019- def configure_p2_p_endpoint_fullness_start_trigger (self, p2p_endpoint_fullness_level):
7020- r'''configure_p2_p_endpoint_fullness_start_trigger
7019+ def configure_p2p_endpoint_fullness_start_trigger (self, p2p_endpoint_fullness_level):
7020+ r'''configure_p2p_endpoint_fullness_start_trigger
70217021
70227022 Configures the Start Trigger to detect peer-to-peer endpoint fullness.
70237023
@@ -7038,7 +7038,7 @@ def configure_p2_p_endpoint_fullness_start_trigger(self, p2p_endpoint_fullness_l
70387038 p2p_endpoint_fullness_level (int): Specifies the quantity of data in the FIFO endpoint that asserts the trigger. Units are samples per channel. The default value is -1, which allows NI-RFSG to select the appropriate fullness value.
70397039
70407040 '''
7041- self._interpreter.configure_p2_p_endpoint_fullness_start_trigger (p2p_endpoint_fullness_level)
7041+ self._interpreter.configure_p2p_endpoint_fullness_start_trigger (p2p_endpoint_fullness_level)
70427042
70437043 @ivi_synchronized
70447044 def configure_power_level_type(self, power_level_type):
@@ -7233,8 +7233,8 @@ def configure_software_start_trigger(self):
72337233 self._interpreter.configure_software_start_trigger()
72347234
72357235 @ivi_synchronized
7236- def create_deembedding_sparameter_table_s2_p_file (self, port, table_name, s2p_file_path, sparameter_orientation):
7237- r'''create_deembedding_sparameter_table_s2_p_file
7236+ def create_deembedding_sparameter_table_s2p_file (self, port, table_name, s2p_file_path, sparameter_orientation):
7237+ r'''create_deembedding_sparameter_table_s2p_file
72387238
72397239 Creates an S-parameter de-embedding table for the port based on the specified S2P file.
72407240
@@ -7268,7 +7268,7 @@ def create_deembedding_sparameter_table_s2_p_file(self, port, table_name, s2p_fi
72687268 '''
72697269 if type(sparameter_orientation) is not enums.SparameterOrientation:
72707270 raise TypeError('Parameter sparameter_orientation must be of type ' + str(enums.SparameterOrientation))
7271- self._interpreter.create_deembedding_sparameter_table_s2_p_file (port, table_name, s2p_file_path, sparameter_orientation)
7271+ self._interpreter.create_deembedding_sparameter_table_s2p_file (port, table_name, s2p_file_path, sparameter_orientation)
72727272
72737273 @ivi_synchronized
72747274 def delete_all_deembedding_tables(self):
@@ -8234,8 +8234,8 @@ def wait_until_settled(self, max_time_milliseconds):
82348234 self._interpreter.wait_until_settled(max_time_milliseconds)
82358235
82368236 @ivi_synchronized
8237- def write_p2_p_endpoint_i16 (self, stream_endpoint, number_of_samples, endpoint_data):
8238- r'''write_p2_p_endpoint_i16
8237+ def write_p2p_endpoint_i16 (self, stream_endpoint, number_of_samples, endpoint_data):
8238+ r'''write_p2p_endpoint_i16
82398239
82408240 Writes an array of 16-bit integer data to the peer-to-peer endpoint.
82418241
@@ -8258,10 +8258,10 @@ def write_p2_p_endpoint_i16(self, stream_endpoint, number_of_samples, endpoint_d
82588258
82598259 number_of_samples (int): Specifies the number of samples to write into the endpoint FIFO.
82608260
8261- endpoint_data (list of int ): Specifies the array of data to write into the endpoint FIFO. The binary data is left-justified.
8261+ endpoint_data (array.array("h") ): Specifies the array of data to write into the endpoint FIFO. The binary data is left-justified.
82628262
82638263 '''
8264- self._interpreter.write_p2_p_endpoint_i16 (stream_endpoint, number_of_samples, endpoint_data)
8264+ self._interpreter.write_p2p_endpoint_i16 (stream_endpoint, number_of_samples, endpoint_data)
82658265
82668266 @ivi_synchronized
82678267 def write_script(self, script):
0 commit comments