Source code for RsSmbv.Implementations.Source.Bb.Nr5G.Ubwp.Restart

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class RestartCls: """Restart commands group definition. 4 total commands, 1 Subgroups, 2 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("restart", core, parent) @property def sidx(self): """sidx commands group. 0 Sub-classes, 2 commands.""" if not hasattr(self, '_sidx'): from .Sidx import SidxCls self._sidx = SidxCls(self._core, self._cmd_group) return self._sidx
[docs] def get_state(self) -> bool: """SCPI: [SOURce<HW>]:BB:NR5G:UBWP:RESTart:STATe \n Snippet: value: bool = driver.source.bb.nr5G.ubwp.restart.get_state() \n No command help available \n :return: restart_data_stat: No help available """ response = self._core.io.query_str('SOURce<HwInstance>:BB:NR5G:UBWP:RESTart:STATe?') return Conversions.str_to_bool(response)
[docs] def set_state(self, restart_data_stat: bool) -> None: """SCPI: [SOURce<HW>]:BB:NR5G:UBWP:RESTart:STATe \n Snippet: driver.source.bb.nr5G.ubwp.restart.set_state(restart_data_stat = False) \n No command help available \n :param restart_data_stat: No help available """ param = Conversions.bool_to_str(restart_data_stat) self._core.io.write(f'SOURce<HwInstance>:BB:NR5G:UBWP:RESTart:STATe {param}')
# noinspection PyTypeChecker
[docs] def get_value(self) -> enums.RestartDataAll: """SCPI: [SOURce<HW>]:BB:NR5G:UBWP:RESTart \n Snippet: value: enums.RestartDataAll = driver.source.bb.nr5G.ubwp.restart.get_value() \n Sets the parameter for restarting the configured data sources in customized DCIs. \n :return: restart_data_sel: OFF| COAL| FRAMe| SLOT OFF Disables the restart of data and control. Data sources are initialized only once at the start of the generated signal. COAL Enables the restart of data and control after each codeword and allocation. For example, the same payload is used for repeated allocations. FRAMe Enables the restart of data and control after each frame. For example, the same payload is used for allocations which are repeated each frame. SLOT Enables the restart of data and control after each slot. For example, the same payload is used for allocations which are repeated each slot. """ response = self._core.io.query_str('SOURce<HwInstance>:BB:NR5G:UBWP:RESTart?') return Conversions.str_to_scalar_enum(response, enums.RestartDataAll)
[docs] def set_value(self, restart_data_sel: enums.RestartDataAll) -> None: """SCPI: [SOURce<HW>]:BB:NR5G:UBWP:RESTart \n Snippet: driver.source.bb.nr5G.ubwp.restart.set_value(restart_data_sel = enums.RestartDataAll.COAL) \n Sets the parameter for restarting the configured data sources in customized DCIs. \n :param restart_data_sel: OFF| COAL| FRAMe| SLOT OFF Disables the restart of data and control. Data sources are initialized only once at the start of the generated signal. COAL Enables the restart of data and control after each codeword and allocation. For example, the same payload is used for repeated allocations. FRAMe Enables the restart of data and control after each frame. For example, the same payload is used for allocations which are repeated each frame. SLOT Enables the restart of data and control after each slot. For example, the same payload is used for allocations which are repeated each slot. """ param = Conversions.enum_scalar_to_str(restart_data_sel, enums.RestartDataAll) self._core.io.write(f'SOURce<HwInstance>:BB:NR5G:UBWP:RESTart {param}')
def clone(self) -> 'RestartCls': """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 = RestartCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group