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 Csi2Cls:
"""Csi2 commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("csi2", core, parent)
[docs] def get_pattern(self) -> str:
"""SCPI: [SOURce<HW>]:BB:NR5G:TCW:WS:UCI:CSI2:PATTern \n
Snippet: value: str = driver.source.bb.nr5G.tcw.ws.uci.csi2.get_pattern() \n
Defines the frequency and time domain of the CSI part 2 subcarrier location. \n
:return: csi_2_pattern: Nr5gPUCCHUcidataPattLenMax bits
"""
response = self._core.io.query_str('SOURce<HwInstance>:BB:NR5G:TCW:WS:UCI:CSI2:PATTern?')
return trim_str_response(response)
[docs] def set_pattern(self, csi_2_pattern: str) -> None:
"""SCPI: [SOURce<HW>]:BB:NR5G:TCW:WS:UCI:CSI2:PATTern \n
Snippet: driver.source.bb.nr5G.tcw.ws.uci.csi2.set_pattern(csi_2_pattern = rawAbc) \n
Defines the frequency and time domain of the CSI part 2 subcarrier location. \n
:param csi_2_pattern: Nr5gPUCCHUcidataPattLenMax bits
"""
param = Conversions.value_to_str(csi_2_pattern)
self._core.io.write(f'SOURce<HwInstance>:BB:NR5G:TCW:WS:UCI:CSI2:PATTern {param}')