Source code for RsSmbv.Implementations.Source.Bb.Nr5G.Ubwp.User.Cell.Downlink.Bwp.Pdsch.Dmtb.Ctype

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 CtypeCls: """Ctype commands group definition. 1 total commands, 0 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("ctype", core, parent)
[docs] def set(self, type_bconfig_type: enums.Nr5GpdschConfigType, userNull=repcap.UserNull.Default, cellNull=repcap.CellNull.Default, bwPartNull=repcap.BwPartNull.Default) -> None: """SCPI: [SOURce<HW>]:BB:NR5G:UBWP:USER<US(CH0)>:CELL<CC(ST0)>:DL:BWP<BWP(DIR0)>:PDSCh:DMTB:CTYPe \n Snippet: driver.source.bb.nr5G.ubwp.user.cell.downlink.bwp.pdsch.dmtb.ctype.set(type_bconfig_type = enums.Nr5GpdschConfigType.T1, userNull = repcap.UserNull.Default, cellNull = repcap.CellNull.Default, bwPartNull = repcap.BwPartNull.Default) \n Sets the configuration type (type 1 or type 2) and defines the mapping of the DMRS to the physical resource elements. \n :param type_bconfig_type: T1| T2 :param userNull: optional repeated capability selector. Default value: Nr0 (settable in the interface 'User') :param cellNull: optional repeated capability selector. Default value: Nr0 (settable in the interface 'Cell') :param bwPartNull: optional repeated capability selector. Default value: Nr0 (settable in the interface 'Bwp') """ param = Conversions.enum_scalar_to_str(type_bconfig_type, enums.Nr5GpdschConfigType) userNull_cmd_val = self._cmd_group.get_repcap_cmd_value(userNull, repcap.UserNull) cellNull_cmd_val = self._cmd_group.get_repcap_cmd_value(cellNull, repcap.CellNull) bwPartNull_cmd_val = self._cmd_group.get_repcap_cmd_value(bwPartNull, repcap.BwPartNull) self._core.io.write(f'SOURce<HwInstance>:BB:NR5G:UBWP:USER{userNull_cmd_val}:CELL{cellNull_cmd_val}:DL:BWP{bwPartNull_cmd_val}:PDSCh:DMTB:CTYPe {param}')
# noinspection PyTypeChecker
[docs] def get(self, userNull=repcap.UserNull.Default, cellNull=repcap.CellNull.Default, bwPartNull=repcap.BwPartNull.Default) -> enums.Nr5GpdschConfigType: """SCPI: [SOURce<HW>]:BB:NR5G:UBWP:USER<US(CH0)>:CELL<CC(ST0)>:DL:BWP<BWP(DIR0)>:PDSCh:DMTB:CTYPe \n Snippet: value: enums.Nr5GpdschConfigType = driver.source.bb.nr5G.ubwp.user.cell.downlink.bwp.pdsch.dmtb.ctype.get(userNull = repcap.UserNull.Default, cellNull = repcap.CellNull.Default, bwPartNull = repcap.BwPartNull.Default) \n Sets the configuration type (type 1 or type 2) and defines the mapping of the DMRS to the physical resource elements. \n :param userNull: optional repeated capability selector. Default value: Nr0 (settable in the interface 'User') :param cellNull: optional repeated capability selector. Default value: Nr0 (settable in the interface 'Cell') :param bwPartNull: optional repeated capability selector. Default value: Nr0 (settable in the interface 'Bwp') :return: type_bconfig_type: No help available""" userNull_cmd_val = self._cmd_group.get_repcap_cmd_value(userNull, repcap.UserNull) cellNull_cmd_val = self._cmd_group.get_repcap_cmd_value(cellNull, repcap.CellNull) bwPartNull_cmd_val = self._cmd_group.get_repcap_cmd_value(bwPartNull, repcap.BwPartNull) response = self._core.io.query_str(f'SOURce<HwInstance>:BB:NR5G:UBWP:USER{userNull_cmd_val}:CELL{cellNull_cmd_val}:DL:BWP{bwPartNull_cmd_val}:PDSCh:DMTB:CTYPe?') return Conversions.str_to_scalar_enum(response, enums.Nr5GpdschConfigType)