Source code for RsCma.Implementations.Source.AfRf.Generator.Voip.Ptt

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class PttCls: """Ptt commands group definition. 2 total commands, 0 Subgroups, 2 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("ptt", core, parent)
[docs] def get_state(self) -> bool: """SCPI: SOURce:AFRF:GENerator<Instance>:VOIP:PTT:STATe \n Snippet: value: bool = driver.source.afRf.generator.voip.ptt.get_state() \n Sets the DUT's PTT state. Disable PTT at the DUT side, if you are finished with the TX testing. \n :return: ptt_state: OFF | ON """ response = self._core.io.query_str('SOURce:AFRF:GENerator<Instance>:VOIP:PTT:STATe?') return Conversions.str_to_bool(response)
[docs] def get_value(self) -> bool: """SCPI: SOURce:AFRF:GENerator<Instance>:VOIP:PTT \n Snippet: value: bool = driver.source.afRf.generator.voip.ptt.get_value() \n Enables or disables the PTT state. \n :return: ptt: OFF | ON """ response = self._core.io.query_str('SOURce:AFRF:GENerator<Instance>:VOIP:PTT?') return Conversions.str_to_bool(response)
[docs] def set_value(self, ptt: bool) -> None: """SCPI: SOURce:AFRF:GENerator<Instance>:VOIP:PTT \n Snippet: driver.source.afRf.generator.voip.ptt.set_value(ptt = False) \n Enables or disables the PTT state. \n :param ptt: OFF | ON """ param = Conversions.bool_to_str(ptt) self._core.io.write(f'SOURce:AFRF:GENerator<Instance>:VOIP:PTT {param}')