Source code for RsSmbv.Implementations.Source.Bb.Eutra.Uplink.Refsig

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class RefsigCls: """Refsig commands group definition. 18 total commands, 2 Subgroups, 4 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("refsig", core, parent) @property def drs(self): """drs commands group. 0 Sub-classes, 8 commands.""" if not hasattr(self, '_drs'): from .Drs import DrsCls self._drs = DrsCls(self._core, self._cmd_group) return self._drs @property def srs(self): """srs commands group. 0 Sub-classes, 6 commands.""" if not hasattr(self, '_srs'): from .Srs import SrsCls self._srs = SrsCls(self._core, self._cmd_group) return self._srs
[docs] def get_dmrs(self) -> int: """SCPI: [SOURce<HW>]:BB:EUTRa:UL:REFSig:DMRS \n Snippet: value: int = driver.source.bb.eutra.uplink.refsig.get_dmrs() \n Sets the part of the demodulation reference signal (DMRS) index which is broadcasted and therefore valid for the whole cell. This index applies when multiple shifts within a cell are used and is used by the calculation of the DMRS sequence. \n :return: drs_dmrs: integer Range: 0 to 11 """ response = self._core.io.query_str('SOURce<HwInstance>:BB:EUTRa:UL:REFSig:DMRS?') return Conversions.str_to_int(response)
[docs] def set_dmrs(self, drs_dmrs: int) -> None: """SCPI: [SOURce<HW>]:BB:EUTRa:UL:REFSig:DMRS \n Snippet: driver.source.bb.eutra.uplink.refsig.set_dmrs(drs_dmrs = 1) \n Sets the part of the demodulation reference signal (DMRS) index which is broadcasted and therefore valid for the whole cell. This index applies when multiple shifts within a cell are used and is used by the calculation of the DMRS sequence. \n :param drs_dmrs: integer Range: 0 to 11 """ param = Conversions.decimal_value_to_str(drs_dmrs) self._core.io.write(f'SOURce<HwInstance>:BB:EUTRa:UL:REFSig:DMRS {param}')
[docs] def get_ds_shift(self) -> int: """SCPI: [SOURce<HW>]:BB:EUTRa:UL:REFSig:DSSHift \n Snippet: value: int = driver.source.bb.eutra.uplink.refsig.get_ds_shift() \n Sets the delta sequence shift for PUSCH needed for the calculation of the group hopping pattern. \n :return: delta_seq_shift: integer Range: 0 to 29 """ response = self._core.io.query_str('SOURce<HwInstance>:BB:EUTRa:UL:REFSig:DSSHift?') return Conversions.str_to_int(response)
[docs] def set_ds_shift(self, delta_seq_shift: int) -> None: """SCPI: [SOURce<HW>]:BB:EUTRa:UL:REFSig:DSSHift \n Snippet: driver.source.bb.eutra.uplink.refsig.set_ds_shift(delta_seq_shift = 1) \n Sets the delta sequence shift for PUSCH needed for the calculation of the group hopping pattern. \n :param delta_seq_shift: integer Range: 0 to 29 """ param = Conversions.decimal_value_to_str(delta_seq_shift) self._core.io.write(f'SOURce<HwInstance>:BB:EUTRa:UL:REFSig:DSSHift {param}')
[docs] def get_grp_hopping(self) -> bool: """SCPI: [SOURce<HW>]:BB:EUTRa:UL:REFSig:GRPHopping \n Snippet: value: bool = driver.source.bb.eutra.uplink.refsig.get_grp_hopping() \n Enables/disables group hopping for the uplink reference signals demodulation reference signal (DMRS) and sounding reference signal (SRS) . \n :return: group_hopping: 1| ON| 0| OFF """ response = self._core.io.query_str('SOURce<HwInstance>:BB:EUTRa:UL:REFSig:GRPHopping?') return Conversions.str_to_bool(response)
[docs] def set_grp_hopping(self, group_hopping: bool) -> None: """SCPI: [SOURce<HW>]:BB:EUTRa:UL:REFSig:GRPHopping \n Snippet: driver.source.bb.eutra.uplink.refsig.set_grp_hopping(group_hopping = False) \n Enables/disables group hopping for the uplink reference signals demodulation reference signal (DMRS) and sounding reference signal (SRS) . \n :param group_hopping: 1| ON| 0| OFF """ param = Conversions.bool_to_str(group_hopping) self._core.io.write(f'SOURce<HwInstance>:BB:EUTRa:UL:REFSig:GRPHopping {param}')
[docs] def get_seq_hopping(self) -> bool: """SCPI: [SOURce<HW>]:BB:EUTRa:UL:REFSig:SEQHopping \n Snippet: value: bool = driver.source.bb.eutra.uplink.refsig.get_seq_hopping() \n Enables/disables sequence hopping for the uplink reference signals demodulation reference signal (DMRS) and sounding reference signal (SRS) . \n :return: sequence_hopping: 1| ON| 0| OFF """ response = self._core.io.query_str('SOURce<HwInstance>:BB:EUTRa:UL:REFSig:SEQHopping?') return Conversions.str_to_bool(response)
[docs] def set_seq_hopping(self, sequence_hopping: bool) -> None: """SCPI: [SOURce<HW>]:BB:EUTRa:UL:REFSig:SEQHopping \n Snippet: driver.source.bb.eutra.uplink.refsig.set_seq_hopping(sequence_hopping = False) \n Enables/disables sequence hopping for the uplink reference signals demodulation reference signal (DMRS) and sounding reference signal (SRS) . \n :param sequence_hopping: 1| ON| 0| OFF """ param = Conversions.bool_to_str(sequence_hopping) self._core.io.write(f'SOURce<HwInstance>:BB:EUTRa:UL:REFSig:SEQHopping {param}')
def clone(self) -> 'RefsigCls': """Clones the group by creating new object from it and its whole existing subgroups Also copies all the existing default Repeated Capabilities setting, which you can change independently without affecting the original group""" new_group = RefsigCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group