from ....Internal.Core import Core
from ....Internal.CommandsGroup import CommandsGroup
from ....Internal import Conversions
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]
class SpotCheckCls:
"""SpotCheck commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("spotCheck", core, parent)
[docs]
def get_level(self) -> float:
"""SCPI: CONFigure:BLUetooth:MEASurement<Instance>:RXQuality:SPOTcheck:LEVel \n
Snippet: value: float = driver.configure.rxQuality.spotCheck.get_level() \n
Sets the Tx level of R&S CMW for spot check. The allowed value range can be calculated as follows: Range (Level) = Range
(Output Power) - External Attenuation Range (Output Power) = -130 dBm to 0 dBm (RFx COM) or -120 dBm to 8 dBm (RFx OUT) ;
please also notice the ranges quoted in the data sheet. \n
:return: level: numeric Range: see above
"""
response = self._core.io.query_str('CONFigure:BLUetooth:MEASurement<Instance>:RXQuality:SPOTcheck:LEVel?')
return Conversions.str_to_float(response)
[docs]
def set_level(self, level: float) -> None:
"""SCPI: CONFigure:BLUetooth:MEASurement<Instance>:RXQuality:SPOTcheck:LEVel \n
Snippet: driver.configure.rxQuality.spotCheck.set_level(level = 1.0) \n
Sets the Tx level of R&S CMW for spot check. The allowed value range can be calculated as follows: Range (Level) = Range
(Output Power) - External Attenuation Range (Output Power) = -130 dBm to 0 dBm (RFx COM) or -120 dBm to 8 dBm (RFx OUT) ;
please also notice the ranges quoted in the data sheet. \n
:param level: numeric Range: see above
"""
param = Conversions.decimal_value_to_str(level)
self._core.io.write(f'CONFigure:BLUetooth:MEASurement<Instance>:RXQuality:SPOTcheck:LEVel {param}')