from ......Internal.Core import Core
from ......Internal.CommandsGroup import CommandsGroup
from ......Internal import Conversions
from ...... import enums
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class UplinkCls:
"""
| Commands in total: 171
| Subgroups: 11
| Direct child commands: 12
"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("uplink", core, parent)
@property
def ca(self):
"""
| Commands in total: 13
| Subgroups: 1
| Direct child commands: 1
"""
if not hasattr(self, '_ca'):
from .Ca import CaCls
self._ca = CaCls(self._core, self._cmd_group)
return self._ca
@property
def prach(self):
"""
| Commands in total: 3
| Subgroups: 0
| Direct child commands: 3
"""
if not hasattr(self, '_prach'):
from .Prach import PrachCls
self._prach = PrachCls(self._core, self._cmd_group)
return self._prach
@property
def pucch(self):
"""
| Commands in total: 8
| Subgroups: 0
| Direct child commands: 8
"""
if not hasattr(self, '_pucch'):
from .Pucch import PucchCls
self._pucch = PucchCls(self._core, self._cmd_group)
return self._pucch
@property
def pusch(self):
"""
| Commands in total: 3
| Subgroups: 0
| Direct child commands: 3
"""
if not hasattr(self, '_pusch'):
from .Pusch import PuschCls
self._pusch = PuschCls(self._core, self._cmd_group)
return self._pusch
@property
def refsig(self):
"""
| Commands in total: 10
| Subgroups: 1
| Direct child commands: 4
"""
if not hasattr(self, '_refsig'):
from .Refsig import RefsigCls
self._refsig = RefsigCls(self._core, self._cmd_group)
return self._refsig
@property
def rstFrame(self):
"""
| Commands in total: 1
| Subgroups: 0
| Direct child commands: 1
"""
if not hasattr(self, '_rstFrame'):
from .RstFrame import RstFrameCls
self._rstFrame = RstFrameCls(self._core, self._cmd_group)
return self._rstFrame
@property
def ue(self):
"""
| Commands in total: 54
| Subgroups: 8
| Direct child commands: 0
"""
if not hasattr(self, '_ue'):
from .Ue import UeCls
self._ue = UeCls(self._core, self._cmd_group)
return self._ue
@property
def view(self):
"""
| Commands in total: 3
| Subgroups: 0
| Direct child commands: 3
"""
if not hasattr(self, '_view'):
from .View import ViewCls
self._view = ViewCls(self._core, self._cmd_group)
return self._view
@property
def cell(self):
"""
| Commands in total: 45
| Subgroups: 1
| Direct child commands: 0
"""
if not hasattr(self, '_cell'):
from .Cell import CellCls
self._cell = CellCls(self._core, self._cmd_group)
return self._cell
@property
def plci(self):
"""
| Commands in total: 3
| Subgroups: 0
| Direct child commands: 3
"""
if not hasattr(self, '_plci'):
from .Plci import PlciCls
self._plci = PlciCls(self._core, self._cmd_group)
return self._plci
@property
def subf(self):
"""
| Commands in total: 16
| Subgroups: 2
| Direct child commands: 0
"""
if not hasattr(self, '_subf'):
from .Subf import SubfCls
self._subf = SubfCls(self._core, self._cmd_group)
return self._subf
# noinspection PyTypeChecker
[docs]
def get_bw(self) -> enums.OneWebUlChannelBandwidth:
"""
``[SOURce<HW>]:BB:ONEWeb:UL:BW`` \n
Snippet: ``value: enums.OneWebUlChannelBandwidth = driver.source.bb.oneweb.uplink.get_bw()`` \n
Queries the UL channel bandwidth.
:return: bandwidth: BW20_00
"""
response = self._core.io.query_str('SOURce<HwInstance>:BB:ONEWeb:UL:BW?')
return Conversions.str_to_scalar_enum(response, enums.OneWebUlChannelBandwidth)
[docs]
def get_con_sub_frames(self) -> int:
"""
``[SOURce<HW>]:BB:ONEWeb:UL:CONSubframes`` \n
Snippet: ``value: int = driver.source.bb.oneweb.uplink.get_con_sub_frames()`` \n
No help available
"""
response = self._core.io.query_str('SOURce<HwInstance>:BB:ONEWeb:UL:CONSubframes?')
return Conversions.str_to_int(response)
[docs]
def set_con_sub_frames(self, conf_subframes: int) -> None:
"""
``[SOURce<HW>]:BB:ONEWeb:UL:CONSubframes`` \n
Snippet: ``driver.source.bb.oneweb.uplink.set_con_sub_frames(conf_subframes = 1)`` \n
No help available
"""
param = Conversions.decimal_value_to_str(conf_subframes)
self._core.io.write(f'SOURce<HwInstance>:BB:ONEWeb:UL:CONSubframes {param}')
# noinspection PyTypeChecker
[docs]
def get_cpc(self) -> enums.OneWebCyclicPrefixGs:
"""
``[SOURce<HW>]:BB:ONEWeb:UL:CPC`` \n
Snippet: ``value: enums.OneWebCyclicPrefixGs = driver.source.bb.oneweb.uplink.get_cpc()`` \n
Queries the cyclic prefix length for all subframes.
:return: cyclic_prefix: NORMal
"""
response = self._core.io.query_str('SOURce<HwInstance>:BB:ONEWeb:UL:CPC?')
return Conversions.str_to_scalar_enum(response, enums.OneWebCyclicPrefixGs)
[docs]
def get_fft(self) -> int:
"""
``[SOURce<HW>]:BB:ONEWeb:UL:FFT`` \n
Snippet: ``value: int = driver.source.bb.oneweb.uplink.get_fft()`` \n
Queries the FFT (Fast Fourier Transformation) size. The available values depend on the selected number of resource blocks
per subframe.
:return: fft_size: integer Range: 128 to 2048
"""
response = self._core.io.query_str('SOURce<HwInstance>:BB:ONEWeb:UL:FFT?')
return Conversions.str_to_int(response)
[docs]
def get_lgs(self) -> int:
"""
``[SOURce<HW>]:BB:ONEWeb:UL:LGS`` \n
Snippet: ``value: int = driver.source.bb.oneweb.uplink.get_lgs()`` \n
Queries the number of right guard subcarriers. The value is set automatically according to the selected number of
resource blocks per subframe.
:return: lg_sub_carr: integer Range: 35 to 601
"""
response = self._core.io.query_str('SOURce<HwInstance>:BB:ONEWeb:UL:LGS?')
return Conversions.str_to_int(response)
[docs]
def get_no_rb(self) -> int:
"""
``[SOURce<HW>]:BB:ONEWeb:UL:NORB`` \n
Snippet: ``value: int = driver.source.bb.oneweb.uplink.get_no_rb()`` \n
Queries the number of physical resource blocks per subframe.
:return: num_res_blocks: integer Range: 6 to 110
"""
response = self._core.io.query_str('SOURce<HwInstance>:BB:ONEWeb:UL:NORB?')
return Conversions.str_to_int(response)
[docs]
def get_occ_bandwidth(self) -> float:
"""
``[SOURce<HW>]:BB:ONEWeb:UL:OCCBandwidth`` \n
Snippet: ``value: float = driver.source.bb.oneweb.uplink.get_occ_bandwidth()`` \n
Queries the occupied bandwidth. This value is set automatically according to the selected number of resource blocks per
subframe.
:return: occ_bandwidth: float
"""
response = self._core.io.query_str('SOURce<HwInstance>:BB:ONEWeb:UL:OCCBandwidth?')
return Conversions.str_to_float(response)
[docs]
def get_occ_subcarriers(self) -> int:
"""
``[SOURce<HW>]:BB:ONEWeb:UL:OCCSubcarriers`` \n
Snippet: ``value: int = driver.source.bb.oneweb.uplink.get_occ_subcarriers()`` \n
Queries the occupied subcarriers. The value is set automatically according to the selected number of resource blocks per
subframe.
:return: occ_subcarriers: integer Range: 72 to 1321
"""
response = self._core.io.query_str('SOURce<HwInstance>:BB:ONEWeb:UL:OCCSubcarriers?')
return Conversions.str_to_int(response)
[docs]
def get_rgs(self) -> int:
"""
``[SOURce<HW>]:BB:ONEWeb:UL:RGS`` \n
Snippet: ``value: int = driver.source.bb.oneweb.uplink.get_rgs()`` \n
Queries the number of right guard subcarriers. The value is set automatically according to the selected number of
resource blocks per subframe.
:return: rg_sub_carr: integer Range: 35 to 601
"""
response = self._core.io.query_str('SOURce<HwInstance>:BB:ONEWeb:UL:RGS?')
return Conversions.str_to_int(response)
[docs]
def get_sf_selection(self) -> int:
"""
``[SOURce<HW>]:BB:ONEWeb:UL:SFSelection`` \n
Snippet: ``value: int = driver.source.bb.oneweb.uplink.get_sf_selection()`` \n
No help available
"""
response = self._core.io.query_str('SOURce<HwInstance>:BB:ONEWeb:UL:SFSelection?')
return Conversions.str_to_int(response)
[docs]
def set_sf_selection(self, sub_frame_sel: int) -> None:
"""
``[SOURce<HW>]:BB:ONEWeb:UL:SFSelection`` \n
Snippet: ``driver.source.bb.oneweb.uplink.set_sf_selection(sub_frame_sel = 1)`` \n
No help available
"""
param = Conversions.decimal_value_to_str(sub_frame_sel)
self._core.io.write(f'SOURce<HwInstance>:BB:ONEWeb:UL:SFSelection {param}')
[docs]
def get_soffset(self) -> int:
"""
``[SOURce<HW>]:BB:ONEWeb:UL:SOFFset`` \n
Snippet: ``value: int = driver.source.bb.oneweb.uplink.get_soffset()`` \n
Sets the start SFN value.
:return: sfn_offset: integer Range: 0 to 4095
"""
response = self._core.io.query_str('SOURce<HwInstance>:BB:ONEWeb:UL:SOFFset?')
return Conversions.str_to_int(response)
[docs]
def set_soffset(self, sfn_offset: int) -> None:
"""
``[SOURce<HW>]:BB:ONEWeb:UL:SOFFset`` \n
Snippet: ``driver.source.bb.oneweb.uplink.set_soffset(sfn_offset = 1)`` \n
Sets the start SFN value.
:param sfn_offset: integer Range: 0 to 4095
"""
param = Conversions.decimal_value_to_str(sfn_offset)
self._core.io.write(f'SOURce<HwInstance>:BB:ONEWeb:UL:SOFFset {param}')
[docs]
def get_symbol_rate(self) -> float:
"""
``[SOURce<HW>]:BB:ONEWeb:UL:SRATe`` \n
Snippet: ``value: float = driver.source.bb.oneweb.uplink.get_symbol_rate()`` \n
Queries the sampling rate.
:return: samp_rate: float Range: 192E4 to 3072E4
"""
response = self._core.io.query_str('SOURce<HwInstance>:BB:ONEWeb:UL:SRATe?')
return Conversions.str_to_float(response)
def clone(self) -> 'UplinkCls':
"""
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 = UplinkCls(self._core, self._cmd_group.parent)
self._cmd_group.synchronize_repcaps(new_group)
return new_group