Source code for RsSmbv.Implementations.Source.Bb.Nr5G.Tcw.Ws.Uci.Csi2

from typing import List

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


# 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) -> List[str]: """SCPI: [SOURce<HW>]:BB:NR5G:TCW:WS:UCI:CSI2:PATTern \n Snippet: value: List[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 Conversions.str_to_str_list(response)
[docs] def set_pattern(self, csi_2_pattern: List[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 = ['rawAbc1', 'rawAbc2', 'rawAbc3']) \n Defines the frequency and time domain of the CSI part 2 subcarrier location. \n :param csi_2_pattern: Nr5gPUCCHUcidataPattLenMax bits """ param = Conversions.list_to_csv_str(csi_2_pattern) self._core.io.write(f'SOURce<HwInstance>:BB:NR5G:TCW:WS:UCI:CSI2:PATTern {param}')