from .........Internal.Core import Core
from .........Internal.CommandsGroup import CommandsGroup
from .........Internal import Conversions
from ......... import enums
from ......... import repcap
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class SchemeCls:
"""Scheme commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("scheme", core, parent)
[docs] def set(self, scheme: enums.EutraDlecpRecScheme, subframeNull=repcap.SubframeNull.Default) -> None:
"""SCPI: [SOURce<HW>]:BB:EUTRa:DL:[SUBF<ST0>]:ENCC:PRECoding:SCHeme \n
Snippet: driver.source.bb.eutra.downlink.subf.encc.precoding.scheme.set(scheme = enums.EutraDlecpRecScheme.NONE, subframeNull = repcap.SubframeNull.Default) \n
Selects the precoding scheme for PDCCH. \n
:param scheme: NONE| TXD NONE Disables precoding. TXD Precoding for transmit diversity will be performed according to 3GPP TS 36.211 and the selected parameters
:param subframeNull: optional repeated capability selector. Default value: Nr0 (settable in the interface 'Subf')
"""
param = Conversions.enum_scalar_to_str(scheme, enums.EutraDlecpRecScheme)
subframeNull_cmd_val = self._cmd_group.get_repcap_cmd_value(subframeNull, repcap.SubframeNull)
self._core.io.write(f'SOURce<HwInstance>:BB:EUTRa:DL:SUBF{subframeNull_cmd_val}:ENCC:PRECoding:SCHeme {param}')
# noinspection PyTypeChecker
[docs] def get(self, subframeNull=repcap.SubframeNull.Default) -> enums.EutraDlecpRecScheme:
"""SCPI: [SOURce<HW>]:BB:EUTRa:DL:[SUBF<ST0>]:ENCC:PRECoding:SCHeme \n
Snippet: value: enums.EutraDlecpRecScheme = driver.source.bb.eutra.downlink.subf.encc.precoding.scheme.get(subframeNull = repcap.SubframeNull.Default) \n
Selects the precoding scheme for PDCCH. \n
:param subframeNull: optional repeated capability selector. Default value: Nr0 (settable in the interface 'Subf')
:return: scheme: NONE| TXD NONE Disables precoding. TXD Precoding for transmit diversity will be performed according to 3GPP TS 36.211 and the selected parameters"""
subframeNull_cmd_val = self._cmd_group.get_repcap_cmd_value(subframeNull, repcap.SubframeNull)
response = self._core.io.query_str(f'SOURce<HwInstance>:BB:EUTRa:DL:SUBF{subframeNull_cmd_val}:ENCC:PRECoding:SCHeme?')
return Conversions.str_to_scalar_enum(response, enums.EutraDlecpRecScheme)