from .......Internal.Core import Core
from .......Internal.CommandsGroup import CommandsGroup
from .......Internal import Conversions
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class SidxCls:
"""Sidx commands group definition. 2 total commands, 0 Subgroups, 2 group commands"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("sidx", core, parent)
[docs] def get_interval(self) -> int:
"""SCPI: [SOURce<HW>]:BB:NR5G:UBWP:RESTart:SIDX:INTerval \n
Snippet: value: int = driver.source.bb.nr5G.ubwp.restart.sidx.get_interval() \n
Defines the number of slots after which the slot index within a frame restarts.
INTRO_CMD_HELP: Prerequisites for this command \n
- Turn on custom slot index restart ([:SOURce<hw>]:BB:NR5G:UBWP:RESTart:SIDX:STATe) . \n
:return: res_slot_idx_int: No help available
"""
response = self._core.io.query_str('SOURce<HwInstance>:BB:NR5G:UBWP:RESTart:SIDX:INTerval?')
return Conversions.str_to_int(response)
[docs] def set_interval(self, res_slot_idx_int: int) -> None:
"""SCPI: [SOURce<HW>]:BB:NR5G:UBWP:RESTart:SIDX:INTerval \n
Snippet: driver.source.bb.nr5G.ubwp.restart.sidx.set_interval(res_slot_idx_int = 1) \n
Defines the number of slots after which the slot index within a frame restarts.
INTRO_CMD_HELP: Prerequisites for this command \n
- Turn on custom slot index restart ([:SOURce<hw>]:BB:NR5G:UBWP:RESTart:SIDX:STATe) . \n
:param res_slot_idx_int: integer Range: 0 to 640
"""
param = Conversions.decimal_value_to_str(res_slot_idx_int)
self._core.io.write(f'SOURce<HwInstance>:BB:NR5G:UBWP:RESTart:SIDX:INTerval {param}')
[docs] def get_state(self) -> bool:
"""SCPI: [SOURce<HW>]:BB:NR5G:UBWP:RESTart:SIDX:STATe \n
Snippet: value: bool = driver.source.bb.nr5G.ubwp.restart.sidx.get_state() \n
Turns a restart of the slot index within a frame on and off.
If on, define the restart interval with [:SOURce<hw>]:BB:NR5G:UBWP:RESTart:SIDX:INTerval. \n
:return: restart_slot_idx: No help available
"""
response = self._core.io.query_str('SOURce<HwInstance>:BB:NR5G:UBWP:RESTart:SIDX:STATe?')
return Conversions.str_to_bool(response)
[docs] def set_state(self, restart_slot_idx: bool) -> None:
"""SCPI: [SOURce<HW>]:BB:NR5G:UBWP:RESTart:SIDX:STATe \n
Snippet: driver.source.bb.nr5G.ubwp.restart.sidx.set_state(restart_slot_idx = False) \n
Turns a restart of the slot index within a frame on and off.
If on, define the restart interval with [:SOURce<hw>]:BB:NR5G:UBWP:RESTart:SIDX:INTerval. \n
:param restart_slot_idx: 1| ON| 0| OFF
"""
param = Conversions.bool_to_str(restart_slot_idx)
self._core.io.write(f'SOURce<HwInstance>:BB:NR5G:UBWP:RESTart:SIDX:STATe {param}')