Source code for RsCmwWlanSig.Implementations.Configure.Sta.Connection.Hetf.Sss

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs] class SssCls: """Sss commands group definition. 1 total commands, 0 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("sss", core, parent)
[docs] def get(self, station=repcap.Station.Default) -> int: """SCPI: CONFigure:WLAN:SIGNaling<instance>:STA<s>:CONNection:HETF:SSS \n Snippet: value: int = driver.configure.sta.connection.hetf.sss.get(station = repcap.Station.Default) \n Sets the starting spatial stream for the HE TB PPDU. \n :param station: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Sta') :return: starting_ss: decimal Range: 1 to 8""" station_cmd_val = self._cmd_group.get_repcap_cmd_value(station, repcap.Station) response = self._core.io.query_str(f'CONFigure:WLAN:SIGNaling<Instance>:STA{station_cmd_val}:CONNection:HETF:SSS?') return Conversions.str_to_int(response)