from ........Internal.Core import Core
from ........Internal.CommandsGroup import CommandsGroup
from ........Internal import Conversions
from ........ import repcap
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class PrStateCls:
"""
| Commands in total: 1
| Subgroups: 0
| Direct child commands: 1
"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("prState", core, parent)
[docs]
def set(self, state: bool, userEquipment=repcap.UserEquipment.Default) -> None:
"""
``[SOURce<HW>]:BB:ONEWeb:UL:UE<ST>:PRACh:PRSTate`` \n
Snippet: ``driver.source.bb.oneweb.uplink.ue.prach.prState.set(state = False, userEquipment = repcap.UserEquipment.Default)`` \n
Activates Power Ramping for the PRACH preamble. The start and the end of the preamble is cyclically extended and
multiplied with a ramping function (sin^2) .
:param state: 1 | ON | 0| OFF
:param userEquipment: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Ue')
"""
param = Conversions.bool_to_str(state)
userEquipment_cmd_val = self._cmd_group.get_repcap_cmd_value(userEquipment, repcap.UserEquipment)
self._core.io.write(f'SOURce<HwInstance>:BB:ONEWeb:UL:UE{userEquipment_cmd_val}:PRACh:PRSTate {param}')
[docs]
def get(self, userEquipment=repcap.UserEquipment.Default) -> bool:
"""
``[SOURce<HW>]:BB:ONEWeb:UL:UE<ST>:PRACh:PRSTate`` \n
Snippet: ``value: bool = driver.source.bb.oneweb.uplink.ue.prach.prState.get(userEquipment = repcap.UserEquipment.Default)`` \n
Activates Power Ramping for the PRACH preamble. The start and the end of the preamble is cyclically extended and
multiplied with a ramping function (sin^2) .
:param userEquipment: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Ue')
:return: state: 1 | ON | 0| OFF
"""
userEquipment_cmd_val = self._cmd_group.get_repcap_cmd_value(userEquipment, repcap.UserEquipment)
response = self._core.io.query_str(f'SOURce<HwInstance>:BB:ONEWeb:UL:UE{userEquipment_cmd_val}:PRACh:PRSTate?')
return Conversions.str_to_bool(response)