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

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class PuschCls: """Pusch commands group definition. 5 total commands, 0 Subgroups, 5 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("pusch", core, parent) # noinspection PyTypeChecker
[docs] def get_fh_mode(self) -> enums.EutraUlFreqHopMode: """SCPI: [SOURce<HW>]:BB:EUTRa:UL:PUSCh:FHMode \n Snippet: value: enums.EutraUlFreqHopMode = driver.source.bb.eutra.uplink.pusch.get_fh_mode() \n Sets the frequency hopping mode for PUSCH. \n :return: freq_hopping_mode: INTRa| INTer """ response = self._core.io.query_str('SOURce<HwInstance>:BB:EUTRa:UL:PUSCh:FHMode?') return Conversions.str_to_scalar_enum(response, enums.EutraUlFreqHopMode)
[docs] def set_fh_mode(self, freq_hopping_mode: enums.EutraUlFreqHopMode) -> None: """SCPI: [SOURce<HW>]:BB:EUTRa:UL:PUSCh:FHMode \n Snippet: driver.source.bb.eutra.uplink.pusch.set_fh_mode(freq_hopping_mode = enums.EutraUlFreqHopMode.INTer) \n Sets the frequency hopping mode for PUSCH. \n :param freq_hopping_mode: INTRa| INTer """ param = Conversions.enum_scalar_to_str(freq_hopping_mode, enums.EutraUlFreqHopMode) self._core.io.write(f'SOURce<HwInstance>:BB:EUTRa:UL:PUSCh:FHMode {param}')
[docs] def get_fh_offset(self) -> int: """SCPI: [SOURce<HW>]:BB:EUTRa:UL:PUSCh:FHOFfset \n Snippet: value: int = driver.source.bb.eutra.uplink.pusch.get_fh_offset() \n Sets the PUSCH Hopping Offset NRBHO. The PUSCH Hopping Offset determines the first physical resource block and the maximum number of physical resource blocks available for PUSCH transmission if PUSCH frequency hopping is used. \n :return: fhopp_offset: integer Range: dynamic to dynamic """ response = self._core.io.query_str('SOURce<HwInstance>:BB:EUTRa:UL:PUSCh:FHOFfset?') return Conversions.str_to_int(response)
[docs] def set_fh_offset(self, fhopp_offset: int) -> None: """SCPI: [SOURce<HW>]:BB:EUTRa:UL:PUSCh:FHOFfset \n Snippet: driver.source.bb.eutra.uplink.pusch.set_fh_offset(fhopp_offset = 1) \n Sets the PUSCH Hopping Offset NRBHO. The PUSCH Hopping Offset determines the first physical resource block and the maximum number of physical resource blocks available for PUSCH transmission if PUSCH frequency hopping is used. \n :param fhopp_offset: integer Range: dynamic to dynamic """ param = Conversions.decimal_value_to_str(fhopp_offset) self._core.io.write(f'SOURce<HwInstance>:BB:EUTRa:UL:PUSCh:FHOFfset {param}')
[docs] def get_nhoffset(self) -> int: """SCPI: [SOURce<HW>]:BB:EUTRa:UL:PUSCh:NHOFfset \n Snippet: value: int = driver.source.bb.eutra.uplink.pusch.get_nhoffset() \n Sets the narrowband hopping offset. \n :return: nb_hopping_offset: integer Range: 1 to 16 """ response = self._core.io.query_str('SOURce<HwInstance>:BB:EUTRa:UL:PUSCh:NHOFfset?') return Conversions.str_to_int(response)
[docs] def set_nhoffset(self, nb_hopping_offset: int) -> None: """SCPI: [SOURce<HW>]:BB:EUTRa:UL:PUSCh:NHOFfset \n Snippet: driver.source.bb.eutra.uplink.pusch.set_nhoffset(nb_hopping_offset = 1) \n Sets the narrowband hopping offset. \n :param nb_hopping_offset: integer Range: 1 to 16 """ param = Conversions.decimal_value_to_str(nb_hopping_offset) self._core.io.write(f'SOURce<HwInstance>:BB:EUTRa:UL:PUSCh:NHOFfset {param}')
[docs] def get_nhopping(self) -> bool: """SCPI: [SOURce<HW>]:BB:EUTRa:UL:PUSCh:NHOPping \n Snippet: value: bool = driver.source.bb.eutra.uplink.pusch.get_nhopping() \n Enables narrowband hopping. \n :return: nb_hopping: 1| ON| 0| OFF """ response = self._core.io.query_str('SOURce<HwInstance>:BB:EUTRa:UL:PUSCh:NHOPping?') return Conversions.str_to_bool(response)
[docs] def set_nhopping(self, nb_hopping: bool) -> None: """SCPI: [SOURce<HW>]:BB:EUTRa:UL:PUSCh:NHOPping \n Snippet: driver.source.bb.eutra.uplink.pusch.set_nhopping(nb_hopping = False) \n Enables narrowband hopping. \n :param nb_hopping: 1| ON| 0| OFF """ param = Conversions.bool_to_str(nb_hopping) self._core.io.write(f'SOURce<HwInstance>:BB:EUTRa:UL:PUSCh:NHOPping {param}')
[docs] def get_nosm(self) -> int: """SCPI: [SOURce<HW>]:BB:EUTRa:UL:PUSCh:NOSM \n Snippet: value: int = driver.source.bb.eutra.uplink.pusch.get_nosm() \n Sets the number of sub-bands (Nsb) into that the total range of physical resource blocks available for PUSCH transmission is divided. The frequency hopping is performed at sub-band level. \n :return: sub_band_count: integer Range: 1 to 110 """ response = self._core.io.query_str('SOURce<HwInstance>:BB:EUTRa:UL:PUSCh:NOSM?') return Conversions.str_to_int(response)
[docs] def set_nosm(self, sub_band_count: int) -> None: """SCPI: [SOURce<HW>]:BB:EUTRa:UL:PUSCh:NOSM \n Snippet: driver.source.bb.eutra.uplink.pusch.set_nosm(sub_band_count = 1) \n Sets the number of sub-bands (Nsb) into that the total range of physical resource blocks available for PUSCH transmission is divided. The frequency hopping is performed at sub-band level. \n :param sub_band_count: integer Range: 1 to 110 """ param = Conversions.decimal_value_to_str(sub_band_count) self._core.io.write(f'SOURce<HwInstance>:BB:EUTRa:UL:PUSCh:NOSM {param}')