Skip to content

Commit c4a445c

Browse files
committed
removed changelog change since its internal and adding the built files
1 parent 1dbb836 commit c4a445c

File tree

3 files changed

+15
-8
lines changed

3 files changed

+15
-8
lines changed

CHANGELOG.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1687,7 +1687,6 @@
16871687
- Basic example
16881688
- Documentation for APIs (not final)
16891689
- Changed
1690-
- (Common) Updated helper script to not split names when uppercase follows a number
16911690
- Removed
16921691

16931692
### niscope (NI-SCOPE)

docs/nirfsg/class.rst

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2758,7 +2758,7 @@ revision_query
27582758

27592759
Returns the revision numbers of the NI-RFSG driver and the instrument firmware.
27602760

2761-
**Supported Devices** : PXI-5610, PXIe-5611, PXIe-5644/5645/5646, 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
2761+
**Supported Devices** : PXI-5610, PXIe-5611, PXIe-5644/5645/5646, 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
27622762

27632763

27642764

@@ -2771,15 +2771,19 @@ revision_query
27712771
instrument_driver_revision (str):
27722772

27732773

2774-
Returns the value of the :py:attr:`nirfsg.Session.specific_driver_revision` property in the form of a string. You must pass a ViChar array with at least 256 bytes.
2774+
Returns the value of the :py:attr:`nirfsg.Session.specific_driver_revision` property in the form of a string.
2775+
2776+
You must pass a ViChar array with at least 256 bytes.
27752777

27762778

27772779

27782780

27792781
firmware_revision (str):
27802782

27812783

2782-
Returns the value of the :py:attr:`nirfsg.Session.instrument_firmware_revision` property in the form of a string. You must pass a ViChar array with at least 256 bytes.
2784+
Returns the value of the :py:attr:`nirfsg.Session.instrument_firmware_revision` property in the form of a string.
2785+
2786+
You must pass a ViChar array with at least 256 bytes.
27832787

27842788

27852789

@@ -7890,7 +7894,7 @@ instrument_firmware_revision
78907894

78917895
**High-Level Methods**:
78927896

7893-
- :py:meth:`nirfsg.Session.RevisionQuery`
7897+
- :py:meth:`nirfsg.Session.revision_query`
78947898

78957899
The following table lists the characteristics of this property.
78967900

generated/nirfsg/nirfsg/session.py

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2580,7 +2580,7 @@ class _SessionBase(object):
25802580

25812581
**High-Level Methods**:
25822582

2583-
- RevisionQuery
2583+
- revision_query
25842584
'''
25852585
instrument_manufacturer = _attributes.AttributeViString(1050511)
25862586
'''Type: str
@@ -7997,9 +7997,13 @@ def revision_query(self):
79977997
**Supported Devices** : PXI-5610, PXIe-5611, PXIe-5644/5645/5646, 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
79987998

79997999
Returns:
8000-
instrument_driver_revision (str): Returns the value of the specific_driver_revision property in the form of a string. You must pass a ViChar array with at least 256 bytes.
8000+
instrument_driver_revision (str): Returns the value of the specific_driver_revision property in the form of a string.
80018001

8002-
firmware_revision (str): Returns the value of the instrument_firmware_revision property in the form of a string. You must pass a ViChar array with at least 256 bytes.
8002+
You must pass a ViChar array with at least 256 bytes.
8003+
8004+
firmware_revision (str): Returns the value of the instrument_firmware_revision property in the form of a string.
8005+
8006+
You must pass a ViChar array with at least 256 bytes.
80038007

80048008
'''
80058009
instrument_driver_revision, firmware_revision = self._interpreter.revision_query()

0 commit comments

Comments
 (0)