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
Performs a self-test on the NI-RFSG device and returns the test results.
7095
-
7096
-
This method performs a simple series of tests to ensure that the NI-RFSG device is powered up and responding.
7097
-
7098
-
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.
self_test_result (int): This parameter contains the value returned from the NI-RFSG device self test.
7108
-
7109
-
+----------------+------------------+
7110
-
| Self-Test Code | Description |
7111
-
+================+==================+
7112
-
| 0 | Self test passed |
7113
-
+----------------+------------------+
7114
-
| 1 | Self test failed |
7115
-
+----------------+------------------+
7116
-
7117
-
self_test_message (str): 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.
7118
-
7119
-
You must pass a ViChar array with at least 256 bytes.
Note: This method resets all configured routes for the PXIe-5644/5645/5646 and PXIe-5820/5830/5831/5832/5840/5841/5842/5860 in NI-RFSA and NI-RFSG.
7419
7384
'''
7420
7385
self._interpreter.reset()
7386
+
7387
+
@ivi_synchronized
7388
+
def _self_test(self):
7389
+
r'''_self_test
7390
+
7391
+
Performs a self-test on the NI-RFSG device and returns the test results.
7392
+
7393
+
This method performs a simple series of tests to ensure that the NI-RFSG device is powered up and responding.
7394
+
7395
+
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.
self_test_result (int): This parameter contains the value returned from the NI-RFSG device self test.
7405
+
7406
+
+----------------+------------------+
7407
+
| Self-Test Code | Description |
7408
+
+================+==================+
7409
+
| 0 | Self test passed |
7410
+
+----------------+------------------+
7411
+
| 1 | Self test failed |
7412
+
+----------------+------------------+
7413
+
7414
+
self_test_message (str): 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.
7415
+
7416
+
You must pass a ViChar array with at least 256 bytes.
Copy file name to clipboardExpand all lines: src/nirfsg/metadata/functions.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -3702,7 +3702,7 @@
3702
3702
],
3703
3703
'returns': 'ViStatus'
3704
3704
},
3705
-
'SelfTest': {
3705
+
'self_test': {
3706
3706
'codegen_method': 'private',
3707
3707
'documentation': {
3708
3708
'description': '\nPerforms a self-test on the NI-RFSG device and returns the test results.\n\nThis function performs a simple series of tests to ensure that the NI-RFSG device is powered up and responding.\n\nThis function does not affect external I/O connections or connections between devices. Complete functional testing and calibration are not performed by this function. The NI-RFSG device must be in the Configuration state before you call this function.\n\n**Supported Devices** : PXI-5610, PXIe-5611, PXI/PXIe-5650/5651/5652, PXIe-5653/5654/5654 with PXIe-5696, PXI-5670/5671, PXIe-5672/5673/5673E, PXIe-5820/5830/5831/5832/5840/5841/5842/5860\n\n**Related Topics**\n\n`Device Warm-Up <https://www.ni.com/docs/en-US/bundle/rfsg/page/rfsg/warmup.html>`_'
0 commit comments