from .........Internal.Core import Core
from .........Internal.CommandsGroup import CommandsGroup
from ......... import repcap
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class AdjustCls:
"""
| Commands in total: 1
| Subgroups: 0
| Direct child commands: 1
"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("adjust", core, parent)
[docs]
def set(self, mobileStation=repcap.MobileStation.Default) -> None:
"""
``[SOURce<HW>]:BB:W3GPp:MSTation<ST>:DPCCh:HS:SLENgth:ADJust`` \n
Snippet: ``driver.source.bb.w3Gpp.mstation.dpcch.hs.slength.adjust.set(mobileStation = repcap.MobileStation.Default)`` \n
(Release 8 and Later) Sets the current ARB sequence length to the suggested value.
:param mobileStation: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Mstation')
"""
mobileStation_cmd_val = self._cmd_group.get_repcap_cmd_value(mobileStation, repcap.MobileStation)
self._core.io.write(f'SOURce<HwInstance>:BB:W3GPp:MSTation{mobileStation_cmd_val}:DPCCh:HS:SLENgth:ADJust')
[docs]
def set_with_opc(self, mobileStation=repcap.MobileStation.Default, opc_timeout_ms: int = -1) -> None:
mobileStation_cmd_val = self._cmd_group.get_repcap_cmd_value(mobileStation, repcap.MobileStation)
"""
``[SOURce<HW>]:BB:W3GPp:MSTation<ST>:DPCCh:HS:SLENgth:ADJust`` \n
Snippet: ``driver.source.bb.w3Gpp.mstation.dpcch.hs.slength.adjust.set_with_opc(mobileStation = repcap.MobileStation.Default)`` \n
(Release 8 and Later) Sets the current ARB sequence length to the suggested value.
Same as set, but waits for the operation to complete before continuing further. Use the RsSmw.utilities.opc_timeout_set() to set the timeout value.
:param mobileStation: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Mstation')
:param opc_timeout_ms: Maximum time to wait in milliseconds, valid only for this call.
"""
self._core.io.write_with_opc(f'SOURce<HwInstance>:BB:W3GPp:MSTation{mobileStation_cmd_val}:DPCCh:HS:SLENgth:ADJust', opc_timeout_ms)