Source code for RsCmwWlanMeas.Implementations.MultiEval.Sinfo.Htsig.StbCoding

from .....Internal.Core import Core
from .....Internal.CommandsGroup import CommandsGroup
from .....Internal.StructBase import StructBase
from .....Internal.ArgStruct import ArgStruct


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs] class StbCodingCls: """StbCoding commands group definition. 1 total commands, 0 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("stbCoding", core, parent) # noinspection PyTypeChecker
[docs] class FetchStruct(StructBase): """Response structure. Fields: \n - Reliability: int: decimal 'Reliability indicator' - Value_Bin: str: string - Value_Dec: int: decimal Range: 0 to 255""" __meta_args_list = [ ArgStruct.scalar_int('Reliability', 'Reliability'), ArgStruct.scalar_str('Value_Bin'), ArgStruct.scalar_int('Value_Dec')] def __init__(self): StructBase.__init__(self, self) self.Reliability: int = None self.Value_Bin: str = None self.Value_Dec: int = None
[docs] def fetch(self) -> FetchStruct: """SCPI: FETCh:WLAN:MEASurement<instance>:MEValuation:SINFo:HTSig:STBCoding \n Snippet: value: FetchStruct = driver.multiEval.sinfo.htsig.stbCoding.fetch() \n Queries the value of STBC field signaled in high throughput signal field for 802.11n signal (HT-SIG) . \n :return: structure: for return value, see the help for FetchStruct structure arguments.""" return self._core.io.query_struct(f'FETCh:WLAN:MEASurement<Instance>:MEValuation:SINFo:HTSig:STBCoding?', self.__class__.FetchStruct())