Source code for RsCMPX_NrFr1Meas.Implementations.Configure.NrSubMeas.ListPy.Segment.Ccall.TxBwidth.ScSpacing

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 ScSpacingCls: """ScSpacing commands group definition. 1 total commands, 0 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("scSpacing", core, parent)
[docs] def set(self, used_scs: enums.SubCarrSpacing, sEGMent=repcap.SEGMent.Default) -> None: """SCPI: CONFigure:NRSub:MEASurement<Instance>:LIST:SEGMent<no>:CCALl:TXBWidth:SCSPacing \n Snippet: driver.configure.nrSubMeas.listPy.segment.ccall.txBwidth.scSpacing.set(used_scs = enums.SubCarrSpacing.S15K, sEGMent = repcap.SEGMent.Default) \n Selects the subcarrier spacing used in segment <no>, for all carriers. \n :param used_scs: 15 kHz, 30 kHz, 60 kHz In the current software version, you must configure the same value for all segments. :param sEGMent: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Segment') """ param = Conversions.enum_scalar_to_str(used_scs, enums.SubCarrSpacing) sEGMent_cmd_val = self._cmd_group.get_repcap_cmd_value(sEGMent, repcap.SEGMent) self._core.io.write(f'CONFigure:NRSub:MEASurement<Instance>:LIST:SEGMent{sEGMent_cmd_val}:CCALl:TXBWidth:SCSPacing {param}')
# noinspection PyTypeChecker
[docs] def get(self, sEGMent=repcap.SEGMent.Default) -> enums.SubCarrSpacing: """SCPI: CONFigure:NRSub:MEASurement<Instance>:LIST:SEGMent<no>:CCALl:TXBWidth:SCSPacing \n Snippet: value: enums.SubCarrSpacing = driver.configure.nrSubMeas.listPy.segment.ccall.txBwidth.scSpacing.get(sEGMent = repcap.SEGMent.Default) \n Selects the subcarrier spacing used in segment <no>, for all carriers. \n :param sEGMent: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Segment') :return: used_scs: 15 kHz, 30 kHz, 60 kHz In the current software version, you must configure the same value for all segments.""" sEGMent_cmd_val = self._cmd_group.get_repcap_cmd_value(sEGMent, repcap.SEGMent) response = self._core.io.query_str(f'CONFigure:NRSub:MEASurement<Instance>:LIST:SEGMent{sEGMent_cmd_val}:CCALl:TXBWidth:SCSPacing?') return Conversions.str_to_scalar_enum(response, enums.SubCarrSpacing)