Source code for RsSmbv.Implementations.Source.Bb.Evdo.User.Drclock.Length

from .......Internal.Core import Core
from .......Internal.CommandsGroup import CommandsGroup
from .......Internal import Conversions
from ....... import enums
from ....... import repcap


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class LengthCls: """Length commands group definition. 1 total commands, 0 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("length", core, parent)
[docs] def set(self, length: enums.EvdoDrcLenDn, userIx=repcap.UserIx.Default) -> None: """SCPI: [SOURce<HW>]:BB:EVDO:USER<ST>:DRCLock:LENGth \n Snippet: driver.source.bb.evdo.user.drclock.length.set(length = enums.EvdoDrcLenDn.DL1, userIx = repcap.UserIx.Default) \n Sets the number of DRC (Data Rate Control) Lock periods that the state of the DRC Lock for the selected user is held constant. Note: Changes in the DRC Lock state are only considered at the interval defined by the parameter DRC Lock Length. A value of one allows updating of the DRC Lock bit at anytime. \n :param length: DL1| DL4| DL8| DL16| DL32| DL64 :param userIx: optional repeated capability selector. Default value: Nr1 (settable in the interface 'User') """ param = Conversions.enum_scalar_to_str(length, enums.EvdoDrcLenDn) userIx_cmd_val = self._cmd_group.get_repcap_cmd_value(userIx, repcap.UserIx) self._core.io.write(f'SOURce<HwInstance>:BB:EVDO:USER{userIx_cmd_val}:DRCLock:LENGth {param}')
# noinspection PyTypeChecker
[docs] def get(self, userIx=repcap.UserIx.Default) -> enums.EvdoDrcLenDn: """SCPI: [SOURce<HW>]:BB:EVDO:USER<ST>:DRCLock:LENGth \n Snippet: value: enums.EvdoDrcLenDn = driver.source.bb.evdo.user.drclock.length.get(userIx = repcap.UserIx.Default) \n Sets the number of DRC (Data Rate Control) Lock periods that the state of the DRC Lock for the selected user is held constant. Note: Changes in the DRC Lock state are only considered at the interval defined by the parameter DRC Lock Length. A value of one allows updating of the DRC Lock bit at anytime. \n :param userIx: optional repeated capability selector. Default value: Nr1 (settable in the interface 'User') :return: length: DL1| DL4| DL8| DL16| DL32| DL64""" userIx_cmd_val = self._cmd_group.get_repcap_cmd_value(userIx, repcap.UserIx) response = self._core.io.query_str(f'SOURce<HwInstance>:BB:EVDO:USER{userIx_cmd_val}:DRCLock:LENGth?') return Conversions.str_to_scalar_enum(response, enums.EvdoDrcLenDn)