Skip to content

Commit dc25fca

Browse files
Latest metadata
1 parent 596caf7 commit dc25fca

File tree

10 files changed

+70
-590
lines changed

10 files changed

+70
-590
lines changed

docs/nirfsg/class.rst

Lines changed: 10 additions & 288 deletions
Large diffs are not rendered by default.

docs/nirfsg/enums.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -927,7 +927,7 @@ LoopBandwidth
927927
928928
929929
930-
Uses the narrowest loop bandwidth setting for the PLL. Setting this property to :py:data:`~nirfsg.NIRFSG_VAL_NARROW` allows the PXIe-5653 to lock to a reference with worse phase noise than the PXIe-5653 and utilize the better phase noise of the PXIe-5653.
930+
Uses the narrowest loop bandwidth setting for the PLL.
931931

932932

933933

@@ -1431,7 +1431,7 @@ RefPllBandwidth
14311431
14321432
14331433
1434-
Uses the narrowest loop bandwidth setting for the PLL.
1434+
Uses the narrowest loop bandwidth setting for the PLL. Setting this property to :py:data:`~nirfsg.NIRFSG_VAL_NARROW` allows the PXIe-5653 to lock to a reference with worse phase noise than the PXIe-5653 and utilize the better phase noise of the PXIe-5653.
14351435

14361436

14371437

@@ -1451,7 +1451,7 @@ RefPllBandwidth
14511451
14521452
14531453
1454-
Uses the widest loop bandwidth setting for the PLL.
1454+
Uses the widest loop bandwidth setting for the PLL. Setting this property to :py:data:`~nirfsg.NIRFSG_VAL_WIDE` on the PXIe-5653 allows the reference PLL to lock to a better reference with better phase noise than the PXIe-5653 and utilize the better phase noise of the reference.
14551455

14561456

14571457

generated/nirfsg/nirfsg/_library.py

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,6 @@ def __init__(self, ctypes_library):
8888
self.niRFSG_ResetAttribute_cfunc = None
8989
self.niRFSG_ResetDevice_cfunc = None
9090
self.niRFSG_ResetWithDefaults_cfunc = None
91-
self.niRFSG_ResetWithOptions_cfunc = None
9291
self.niRFSG_SaveConfigurationsToFile_cfunc = None
9392
self.niRFSG_SelectArbWaveform_cfunc = None
9493
self.niRFSG_SelfCal_cfunc = None
@@ -667,14 +666,6 @@ def niRFSG_ResetWithDefaults(self, vi): # noqa: N802
667666
self.niRFSG_ResetWithDefaults_cfunc.restype = ViStatus # noqa: F405
668667
return self.niRFSG_ResetWithDefaults_cfunc(vi)
669668

670-
def niRFSG_ResetWithOptions(self, vi, steps_to_omit): # noqa: N802
671-
with self._func_lock:
672-
if self.niRFSG_ResetWithOptions_cfunc is None:
673-
self.niRFSG_ResetWithOptions_cfunc = self._get_library_function('niRFSG_ResetWithOptions')
674-
self.niRFSG_ResetWithOptions_cfunc.argtypes = [ViSession, ViUInt64] # noqa: F405
675-
self.niRFSG_ResetWithOptions_cfunc.restype = ViStatus # noqa: F405
676-
return self.niRFSG_ResetWithOptions_cfunc(vi, steps_to_omit)
677-
678669
def niRFSG_SaveConfigurationsToFile(self, vi, channel_name, file_path): # noqa: N802
679670
with self._func_lock:
680671
if self.niRFSG_SaveConfigurationsToFile_cfunc is None:

generated/nirfsg/nirfsg/_library_interpreter.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -652,13 +652,6 @@ def reset_with_defaults(self): # noqa: N802
652652
errors.handle_error(self, error_code, ignore_warnings=False, is_error_handling=False)
653653
return
654654

655-
def reset_with_options(self, steps_to_omit): # noqa: N802
656-
vi_ctype = _visatype.ViSession(self._vi) # case S110
657-
steps_to_omit_ctype = _visatype.ViUInt64(steps_to_omit.value) # case S130
658-
error_code = self._library.niRFSG_ResetWithOptions(vi_ctype, steps_to_omit_ctype)
659-
errors.handle_error(self, error_code, ignore_warnings=False, is_error_handling=False)
660-
return
661-
662655
def save_configurations_to_file(self, channel_name, file_path): # noqa: N802
663656
vi_ctype = _visatype.ViSession(self._vi) # case S110
664657
channel_name_ctype = ctypes.create_string_buffer(channel_name.encode(self._encoding)) # case C010

generated/nirfsg/nirfsg/enums.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,7 @@ class LoadOptions(Enum):
397397
class LoopBandwidth(Enum):
398398
NARROW = 0
399399
r'''
400-
Uses the narrowest loop bandwidth setting for the PLL. Setting this property to NIRFSG_VAL_NARROW allows the PXIe-5653 to lock to a reference with worse phase noise than the PXIe-5653 and utilize the better phase noise of the PXIe-5653.
400+
Uses the narrowest loop bandwidth setting for the PLL.
401401
'''
402402
MEDIUM = 1
403403
r'''
@@ -614,15 +614,15 @@ class RFInLoExportEnabled(Enum):
614614
class RefPllBandwidth(Enum):
615615
NARROW = 0
616616
r'''
617-
Uses the narrowest loop bandwidth setting for the PLL.
617+
Uses the narrowest loop bandwidth setting for the PLL. Setting this property to NIRFSG_VAL_NARROW allows the PXIe-5653 to lock to a reference with worse phase noise than the PXIe-5653 and utilize the better phase noise of the PXIe-5653.
618618
'''
619619
MEDIUM = 1
620620
r'''
621621
Uses the medium loop bandwidth setting for the PLL.
622622
'''
623623
WIDE = 2
624624
r'''
625-
Uses the widest loop bandwidth setting for the PLL.
625+
Uses the widest loop bandwidth setting for the PLL. Setting this property to NIRFSG_VAL_WIDE on the PXIe-5653 allows the reference PLL to lock to a better reference with better phase noise than the PXIe-5653 and utilize the better phase noise of the reference.
626626
'''
627627

628628

0 commit comments

Comments
 (0)