Source code for RsSmbv.Implementations.Source.Bb.Evdo.User.Rate

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 RateCls: """Rate commands group definition. 2 total commands, 1 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("rate", core, parent) @property def index(self): """index commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_index'): from .Index import IndexCls self._index = IndexCls(self._core, self._cmd_group) return self._index # noinspection PyTypeChecker
[docs] def get(self, userIx=repcap.UserIx.Default) -> enums.EvdoDataRate: """SCPI: [SOURce<HW>]:BB:EVDO:USER<ST>:RATE \n Snippet: value: enums.EvdoDataRate = driver.source.bb.evdo.user.rate.get(userIx = repcap.UserIx.Default) \n Queries the data rate of the packets sent to the selected user. Note: Selected rate becomes effective at the beginning of the next packet transmitted to the selected user. \n :param userIx: optional repeated capability selector. Default value: Nr1 (settable in the interface 'User') :return: rate: DR4K8| DR9K6| DR19K2| DR38K4| DR76K8| DR153K6| DR307K2| DR614K4| DR921K6| DR1228K8| DR1536K| DR1843K2| DR2457K6| DR3072K| DR460K8| DR768K| DR1075K2| DR2150K4| DR3686K4| DR4300K8| DR4915K2""" 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}:RATE?') return Conversions.str_to_scalar_enum(response, enums.EvdoDataRate)
def clone(self) -> 'RateCls': """Clones the group by creating new object from it and its whole existing subgroups Also copies all the existing default Repeated Capabilities setting, which you can change independently without affecting the original group""" new_group = RateCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group