Source code for RsSmbv.Implementations.Source.Bb.Nr5G.Feature

from ......Internal.Core import Core
from ......Internal.CommandsGroup import CommandsGroup
from ......Internal import Conversions
from ......Internal.Utilities import trim_str_response


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class FeatureCls: """Feature commands group definition. 3 total commands, 1 Subgroups, 2 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("feature", core, parent) @property def snos(self): """snos commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_snos'): from .Snos import SnosCls self._snos = SnosCls(self._core, self._cmd_group) return self._snos
[docs] def get_activate(self) -> str: """SCPI: [SOURce<HW>]:BB:NR5G:FEATure:ACTivate \n Snippet: value: str = driver.source.bb.nr5G.feature.get_activate() \n No command help available \n :return: activat_hidden_fn: No help available """ response = self._core.io.query_str('SOURce<HwInstance>:BB:NR5G:FEATure:ACTivate?') return trim_str_response(response)
[docs] def set_activate(self, activat_hidden_fn: str) -> None: """SCPI: [SOURce<HW>]:BB:NR5G:FEATure:ACTivate \n Snippet: driver.source.bb.nr5G.feature.set_activate(activat_hidden_fn = 'abc') \n No command help available \n :param activat_hidden_fn: No help available """ param = Conversions.value_to_quoted_str(activat_hidden_fn) self._core.io.write(f'SOURce<HwInstance>:BB:NR5G:FEATure:ACTivate {param}')
[docs] def get_deactivate(self) -> str: """SCPI: [SOURce<HW>]:BB:NR5G:FEATure:DEACtivate \n Snippet: value: str = driver.source.bb.nr5G.feature.get_deactivate() \n No command help available \n :return: deactivate_feat: No help available """ response = self._core.io.query_str('SOURce<HwInstance>:BB:NR5G:FEATure:DEACtivate?') return trim_str_response(response)
[docs] def set_deactivate(self, deactivate_feat: str) -> None: """SCPI: [SOURce<HW>]:BB:NR5G:FEATure:DEACtivate \n Snippet: driver.source.bb.nr5G.feature.set_deactivate(deactivate_feat = 'abc') \n No command help available \n :param deactivate_feat: No help available """ param = Conversions.value_to_quoted_str(deactivate_feat) self._core.io.write(f'SOURce<HwInstance>:BB:NR5G:FEATure:DEACtivate {param}')
def clone(self) -> 'FeatureCls': """Clones the group by creating new object from it and its whole existing subgroups Also copies all the existing default Repeated Capabilities setting, which you can change independently without affecting the original group""" new_group = FeatureCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group