Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -1702,6 +1702,14 @@
- Changed `interpolation_delay` and `relative_delay` properties to be of type hightime.timedelta, so that it aligns with _delay_ attributes across other APIs in the repository
- Updated `wait_until_settled` method to have `max_time_milliseconds` parameter as type hightime.timedelta with a default value of 10 seconds
- Changed `exported_ref_clock_rate` and `ref_clock_rate` properties to be of type float instead of enum, since the enums just represented raw float values
- Updated below attributes and method parameters to be of string enum type instead of plain string, since they would support only fixed set of strings
Comment thread
vnktshr21 marked this conversation as resolved.
Outdated
- `pulse_modulation_source`
- `exported_pulse_modulation_event_output_terminal`
- `exported_ref_clock_output_terminal`
- `lo_source`
- `arb_sample_clock_source`
- `ref_clock_source`
- `trigger_identifier` parameter in `send_software_edge_trigger` method
- Removed
- Methods and properties applicable only to hardware which are not supported anymore
- Methods
Expand Down
110 changes: 55 additions & 55 deletions docs/nirfsg/class.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2310,7 +2310,7 @@ send_software_edge_trigger
.. note:: One or more of the referenced values are not in the Python API for this driver. Enums that only define values, or represent True/False, have been removed.


:type trigger_identifier: str
:type trigger_identifier: :py:data:`nirfsg.TriggerIdentifier`

set_arb_waveform_next_write_position
------------------------------------
Expand Down Expand Up @@ -3460,15 +3460,15 @@ arb_sample_clock_source

The following table lists the characteristics of this property.

+-----------------------+------------+
| Characteristic | Value |
+=======================+============+
| Datatype | str |
+-----------------------+------------+
| Permissions | read-write |
+-----------------------+------------+
| Repeated Capabilities | None |
+-----------------------+------------+
+-----------------------+----------------------------+
| Characteristic | Value |
+=======================+============================+
| Datatype | enums.ArbSampleClockSource |
+-----------------------+----------------------------+
| Permissions | read-write |
+-----------------------+----------------------------+
| Repeated Capabilities | None |
+-----------------------+----------------------------+

.. tip::
This property corresponds to the following LabVIEW Property or C Attribute:
Expand Down Expand Up @@ -5243,15 +5243,15 @@ exported_pulse_modulation_event_output_terminal

The following table lists the characteristics of this property.

+-----------------------+------------+
| Characteristic | Value |
+=======================+============+
| Datatype | str |
+-----------------------+------------+
| Permissions | read-write |
+-----------------------+------------+
| Repeated Capabilities | None |
+-----------------------+------------+
+-----------------------+-------------------------------------+
| Characteristic | Value |
+=======================+=====================================+
| Datatype | enums.PulseModulationOutputTerminal |
+-----------------------+-------------------------------------+
| Permissions | read-write |
+-----------------------+-------------------------------------+
| Repeated Capabilities | None |
+-----------------------+-------------------------------------+

.. tip::
This property corresponds to the following LabVIEW Property or C Attribute:
Expand Down Expand Up @@ -5302,15 +5302,15 @@ exported_ref_clock_output_terminal

The following table lists the characteristics of this property.

+-----------------------+------------+
| Characteristic | Value |
+=======================+============+
| Datatype | str |
+-----------------------+------------+
| Permissions | read-write |
+-----------------------+------------+
| Repeated Capabilities | None |
+-----------------------+------------+
+-----------------------+------------------------------------------+
| Characteristic | Value |
+=======================+==========================================+
| Datatype | enums.ReferenceClockExportOutputTerminal |
+-----------------------+------------------------------------------+
| Permissions | read-write |
+-----------------------+------------------------------------------+
| Repeated Capabilities | None |
+-----------------------+------------------------------------------+

.. tip::
This property corresponds to the following LabVIEW Property or C Attribute:
Expand Down Expand Up @@ -7604,15 +7604,15 @@ lo_source

The following table lists the characteristics of this property.

+-----------------------+------------+
| Characteristic | Value |
+=======================+============+
| Datatype | str |
+-----------------------+------------+
| Permissions | read-write |
+-----------------------+------------+
| Repeated Capabilities | los |
+-----------------------+------------+
+-----------------------+----------------+
| Characteristic | Value |
+=======================+================+
| Datatype | enums.LoSource |
+-----------------------+----------------+
| Permissions | read-write |
+-----------------------+----------------+
| Repeated Capabilities | los |
+-----------------------+----------------+

.. tip::
This property corresponds to the following LabVIEW Property or C Attribute:
Expand Down Expand Up @@ -8638,15 +8638,15 @@ pulse_modulation_source

The following table lists the characteristics of this property.

+-----------------------+------------+
| Characteristic | Value |
+=======================+============+
| Datatype | str |
+-----------------------+------------+
| Permissions | read-write |
+-----------------------+------------+
| Repeated Capabilities | None |
+-----------------------+------------+
+-----------------------+-----------------------------+
| Characteristic | Value |
+=======================+=============================+
| Datatype | enums.PulseModulationSource |
+-----------------------+-----------------------------+
| Permissions | read-write |
+-----------------------+-----------------------------+
| Repeated Capabilities | None |
+-----------------------+-----------------------------+

.. tip::
This property corresponds to the following LabVIEW Property or C Attribute:
Expand Down Expand Up @@ -8760,15 +8760,15 @@ ref_clock_source

The following table lists the characteristics of this property.

+-----------------------+------------+
| Characteristic | Value |
+=======================+============+
| Datatype | str |
+-----------------------+------------+
| Permissions | read-write |
+-----------------------+------------+
| Repeated Capabilities | None |
+-----------------------+------------+
+-----------------------+----------------------------+
| Characteristic | Value |
+=======================+============================+
| Datatype | enums.ReferenceClockSource |
+-----------------------+----------------------------+
| Permissions | read-write |
+-----------------------+----------------------------+
| Repeated Capabilities | None |
+-----------------------+----------------------------+

.. tip::
This property corresponds to the following LabVIEW Property or C Attribute:
Expand Down
Loading