You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Returns the temperature, in degrees Celsius, of the device at the last successful self-calibration.
1392
1392
@@ -2069,7 +2069,7 @@ select_arb_waveform
2069
2069
2070
2070
.. py:currentmodule:: nirfsg.Session
2071
2071
2072
-
.. py:method:: select_arb_waveform(name)
2072
+
.. py:method:: select_arb_waveform(waveform_name)
2073
2073
2074
2074
Specifies the waveform that is generated upon a call to the :py:meth:`nirfsg.Session._initiate` method when the generation_mode property is set to :py:data:`~nirfsg.GenerationMode.ARB_WAVEFORM`.
2075
2075
@@ -2087,15 +2087,15 @@ select_arb_waveform
2087
2087
2088
2088
2089
2089
2090
-
:param name:
2090
+
:param waveform_name:
2091
2091
2092
2092
2093
2093
Specifies the name of the stored waveform to generate. This is a case-insensitive alphanumeric string that does not use reserved words. NI-RFSG sets the :py:attr:`nirfsg.Session.arb_selected_waveform` property to this value.
2094
2094
2095
2095
2096
2096
2097
2097
2098
-
:type name: str
2098
+
:type waveform_name: str
2099
2099
2100
2100
self_cal
2101
2101
--------
@@ -2216,7 +2216,7 @@ self_test
2216
2216
2217
2217
.. py:currentmodule:: nirfsg.Session
2218
2218
2219
-
.. py:method:: self_test(self_test_message)
2219
+
.. py:method:: self_test()
2220
2220
2221
2221
Performs a self-test on the NI-RFSG device and returns the test results.
Returns the self-test response string from the NI-RFSG device. For an explanation of the string contents, refer to the **status** parameter of this method.
2241
-
2242
-
You must pass a ViChar array with at least 256 bytes.
2243
-
2244
-
2245
-
2246
-
2247
-
:type self_test_message: str
2248
-
2249
-
:rtype: int
2250
-
:return:
2251
-
2252
-
2253
-
This parameter contains the value returned from the NI-RFSG device self test.
One or more of the referenced properties are not in the Python API for this driver.
7009
7009
7010
7010
Args:
7011
-
name (str): Specifies the name of the stored waveform to generate. This is a case-insensitive alphanumeric string that does not use reserved words. NI-RFSG sets the arb_selected_waveform property to this value.
7011
+
waveform_name (str): Specifies the name of the stored waveform to generate. This is a case-insensitive alphanumeric string that does not use reserved words. NI-RFSG sets the arb_selected_waveform property to this value.
Performs a self-test on the NI-RFSG device and returns the test results.
7095
7095
@@ -7374,6 +7374,35 @@ def _close(self):
7374
7374
'''
7375
7375
self._interpreter.close()
7376
7376
7377
+
@ivi_synchronized
7378
+
def self_test(self):
7379
+
'''self_test
7380
+
7381
+
Performs a self-test on the NI-RFSG device and returns the test results.
7382
+
7383
+
This method performs a simple series of tests to ensure that the NI-RFSG device is powered up and responding.
7384
+
7385
+
This method does not affect external I/O connections or connections between devices. Complete functional testing and calibration are not performed by this method. The NI-RFSG device must be in the Configuration state before you call this method.
0 commit comments