Source code for RsSmbv.Implementations.Source.Bb.Wlnn.Fblock.User.StaId

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class StaIdCls: """StaId commands group definition. 1 total commands, 0 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("staId", core, parent)
[docs] def set(self, sta_id: int, frameBlock=repcap.FrameBlock.Default, userIx=repcap.UserIx.Default) -> None: """SCPI: [SOURce<HW>]:BB:WLNN:FBLock<CH>:USER<DI>:STAid \n Snippet: driver.source.bb.wlnn.fblock.user.staId.set(sta_id = 1, frameBlock = repcap.FrameBlock.Default, userIx = repcap.UserIx.Default) \n Sets the station ID for the current user, the 11 least significant bits of the association identifier (AID) . \n :param sta_id: integer Range: 0 to 2047 :param frameBlock: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Fblock') :param userIx: optional repeated capability selector. Default value: Nr1 (settable in the interface 'User') """ param = Conversions.decimal_value_to_str(sta_id) frameBlock_cmd_val = self._cmd_group.get_repcap_cmd_value(frameBlock, repcap.FrameBlock) userIx_cmd_val = self._cmd_group.get_repcap_cmd_value(userIx, repcap.UserIx) self._core.io.write(f'SOURce<HwInstance>:BB:WLNN:FBLock{frameBlock_cmd_val}:USER{userIx_cmd_val}:STAid {param}')
[docs] def get(self, frameBlock=repcap.FrameBlock.Default, userIx=repcap.UserIx.Default) -> int: """SCPI: [SOURce<HW>]:BB:WLNN:FBLock<CH>:USER<DI>:STAid \n Snippet: value: int = driver.source.bb.wlnn.fblock.user.staId.get(frameBlock = repcap.FrameBlock.Default, userIx = repcap.UserIx.Default) \n Sets the station ID for the current user, the 11 least significant bits of the association identifier (AID) . \n :param frameBlock: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Fblock') :param userIx: optional repeated capability selector. Default value: Nr1 (settable in the interface 'User') :return: sta_id: integer Range: 0 to 2047""" frameBlock_cmd_val = self._cmd_group.get_repcap_cmd_value(frameBlock, repcap.FrameBlock) userIx_cmd_val = self._cmd_group.get_repcap_cmd_value(userIx, repcap.UserIx) response = self._core.io.query_str(f'SOURce<HwInstance>:BB:WLNN:FBLock{frameBlock_cmd_val}:USER{userIx_cmd_val}:STAid?') return Conversions.str_to_int(response)