Source code for RsFsw.Implementations.Applications.K91_Wlan.Sense.Demod.FormatPy.Banalyze.Duration.Min

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class MinCls: """Min commands group definition. 1 total commands, 0 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("min", core, parent)
[docs] def set(self, duration: float) -> None: """SCPI: [SENSe]:DEMod:FORMat:BANalyze:DURation:MIN \n Snippet: driver.applications.k91Wlan.sense.demod.formatPy.banalyze.duration.min.set(duration = 1.0) \n For IEEE 802.11b and g (DSSS) signals only: If the [SENSe:]DEMod:FORMat:BANalyze:DURation:EQUal command is set to true then this command specifies the exact duration required for a PPDU to take part in measurement analysis. If the [SENSe:]DEMod:FORMat:BANalyze:DURation:EQUal command is set to false this command specifies the minimum duration required for a PPDU to take part in measurement analysis. \n :param duration: Unit: us """ param = Conversions.decimal_value_to_str(duration) self._core.io.write(f'SENSe:DEMod:FORMat:BANalyze:DURation:MIN {param}')
[docs] def get(self) -> float: """SCPI: [SENSe]:DEMod:FORMat:BANalyze:DURation:MIN \n Snippet: value: float = driver.applications.k91Wlan.sense.demod.formatPy.banalyze.duration.min.get() \n For IEEE 802.11b and g (DSSS) signals only: If the [SENSe:]DEMod:FORMat:BANalyze:DURation:EQUal command is set to true then this command specifies the exact duration required for a PPDU to take part in measurement analysis. If the [SENSe:]DEMod:FORMat:BANalyze:DURation:EQUal command is set to false this command specifies the minimum duration required for a PPDU to take part in measurement analysis. \n :return: duration: Unit: us""" response = self._core.io.query_str(f'SENSe:DEMod:FORMat:BANalyze:DURation:MIN?') return Conversions.str_to_float(response)