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: 202
| Subgroups: 12
| Direct child commands: 13
"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("uplink", core, parent)
@property
def ca(self):
"""
| Commands in total: 6
| 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: 5
| Subgroups: 0
| Direct child commands: 5
"""
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: 18
| Subgroups: 2
| 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 rtfb(self):
"""
| Commands in total: 15
| Subgroups: 0
| Direct child commands: 15
"""
if not hasattr(self, '_rtfb'):
from .Rtfb import RtfbCls
self._rtfb = RtfbCls(self._core, self._cmd_group)
return self._rtfb
@property
def subf(self):
"""
| Commands in total: 30
| 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
@property
def ue(self):
"""
| Commands in total: 58
| Subgroups: 10
| 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: 4
| Subgroups: 0
| Direct child commands: 4
"""
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: 38
| 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
# noinspection PyTypeChecker
[docs]
def get_bw(self) -> enums.ChannelBandwidth:
"""
``[SOURce<HW>]:BB:V5G:UL:BW`` \n
Snippet: ``value: enums.ChannelBandwidth = driver.source.bb.v5G.uplink.get_bw()`` \n
No help available
"""
response = self._core.io.query_str('SOURce<HwInstance>:BB:V5G:UL:BW?')
return Conversions.str_to_scalar_enum(response, enums.ChannelBandwidth)
[docs]
def set_bw(self, bandwidth: enums.ChannelBandwidth) -> None:
"""
``[SOURce<HW>]:BB:V5G:UL:BW`` \n
Snippet: ``driver.source.bb.v5G.uplink.set_bw(bandwidth = enums.ChannelBandwidth.BW0_20)`` \n
No help available
"""
param = Conversions.enum_scalar_to_str(bandwidth, enums.ChannelBandwidth)
self._core.io.write(f'SOURce<HwInstance>:BB:V5G:UL:BW {param}')
[docs]
def get_con_sub_frames(self) -> int:
"""
``[SOURce<HW>]:BB:V5G:UL:CONSubframes`` \n
Snippet: ``value: int = driver.source.bb.v5G.uplink.get_con_sub_frames()`` \n
No help available
"""
response = self._core.io.query_str('SOURce<HwInstance>:BB:V5G:UL:CONSubframes?')
return Conversions.str_to_int(response)
[docs]
def set_con_sub_frames(self, conf_subframes: int) -> None:
"""
``[SOURce<HW>]:BB:V5G:UL:CONSubframes`` \n
Snippet: ``driver.source.bb.v5G.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:V5G:UL:CONSubframes {param}')
# noinspection PyTypeChecker
[docs]
def get_cpc(self) -> enums.CyclicPrefixGs:
"""
``[SOURce<HW>]:BB:V5G:UL:CPC`` \n
Snippet: ``value: enums.CyclicPrefixGs = driver.source.bb.v5G.uplink.get_cpc()`` \n
No help available
"""
response = self._core.io.query_str('SOURce<HwInstance>:BB:V5G:UL:CPC?')
return Conversions.str_to_scalar_enum(response, enums.CyclicPrefixGs)
[docs]
def set_cpc(self, cyclic_prefix: enums.CyclicPrefixGs) -> None:
"""
``[SOURce<HW>]:BB:V5G:UL:CPC`` \n
Snippet: ``driver.source.bb.v5G.uplink.set_cpc(cyclic_prefix = enums.CyclicPrefixGs.EXTended)`` \n
No help available
"""
param = Conversions.enum_scalar_to_str(cyclic_prefix, enums.CyclicPrefixGs)
self._core.io.write(f'SOURce<HwInstance>:BB:V5G:UL:CPC {param}')
# noinspection PyTypeChecker
[docs]
def get_dl_cpc(self) -> enums.EuTraDuration:
"""
``[SOURce<HW>]:BB:V5G:UL:DLCPc`` \n
Snippet: ``value: enums.EuTraDuration = driver.source.bb.v5G.uplink.get_dl_cpc()`` \n
No help available
"""
response = self._core.io.query_str('SOURce<HwInstance>:BB:V5G:UL:DLCPc?')
return Conversions.str_to_scalar_enum(response, enums.EuTraDuration)
[docs]
def set_dl_cpc(self, gs_cpc_opp_dir: enums.EuTraDuration) -> None:
"""
``[SOURce<HW>]:BB:V5G:UL:DLCPc`` \n
Snippet: ``driver.source.bb.v5G.uplink.set_dl_cpc(gs_cpc_opp_dir = enums.EuTraDuration.EXTended)`` \n
No help available
"""
param = Conversions.enum_scalar_to_str(gs_cpc_opp_dir, enums.EuTraDuration)
self._core.io.write(f'SOURce<HwInstance>:BB:V5G:UL:DLCPc {param}')
[docs]
def get_fft(self) -> int:
"""
``[SOURce<HW>]:BB:V5G:UL:FFT`` \n
Snippet: ``value: int = driver.source.bb.v5G.uplink.get_fft()`` \n
No help available
"""
response = self._core.io.query_str('SOURce<HwInstance>:BB:V5G:UL:FFT?')
return Conversions.str_to_int(response)
[docs]
def set_fft(self, fft_size: int) -> None:
"""
``[SOURce<HW>]:BB:V5G:UL:FFT`` \n
Snippet: ``driver.source.bb.v5G.uplink.set_fft(fft_size = 1)`` \n
No help available
"""
param = Conversions.decimal_value_to_str(fft_size)
self._core.io.write(f'SOURce<HwInstance>:BB:V5G:UL:FFT {param}')
[docs]
def get_lgs(self) -> int:
"""
``[SOURce<HW>]:BB:V5G:UL:LGS`` \n
Snippet: ``value: int = driver.source.bb.v5G.uplink.get_lgs()`` \n
No help available
"""
response = self._core.io.query_str('SOURce<HwInstance>:BB:V5G:UL:LGS?')
return Conversions.str_to_int(response)
[docs]
def get_no_rb(self) -> int:
"""
``[SOURce<HW>]:BB:V5G:UL:NORB`` \n
Snippet: ``value: int = driver.source.bb.v5G.uplink.get_no_rb()`` \n
No help available
"""
response = self._core.io.query_str('SOURce<HwInstance>:BB:V5G:UL:NORB?')
return Conversions.str_to_int(response)
[docs]
def set_no_rb(self, num_res_blocks: int) -> None:
"""
``[SOURce<HW>]:BB:V5G:UL:NORB`` \n
Snippet: ``driver.source.bb.v5G.uplink.set_no_rb(num_res_blocks = 1)`` \n
No help available
"""
param = Conversions.decimal_value_to_str(num_res_blocks)
self._core.io.write(f'SOURce<HwInstance>:BB:V5G:UL:NORB {param}')
[docs]
def get_occ_bandwidth(self) -> float:
"""
``[SOURce<HW>]:BB:V5G:UL:OCCBandwidth`` \n
Snippet: ``value: float = driver.source.bb.v5G.uplink.get_occ_bandwidth()`` \n
No help available
"""
response = self._core.io.query_str('SOURce<HwInstance>:BB:V5G:UL:OCCBandwidth?')
return Conversions.str_to_float(response)
[docs]
def get_occ_subcarriers(self) -> int:
"""
``[SOURce<HW>]:BB:V5G:UL:OCCSubcarriers`` \n
Snippet: ``value: int = driver.source.bb.v5G.uplink.get_occ_subcarriers()`` \n
No help available
"""
response = self._core.io.query_str('SOURce<HwInstance>:BB:V5G:UL:OCCSubcarriers?')
return Conversions.str_to_int(response)
[docs]
def get_rgs(self) -> int:
"""
``[SOURce<HW>]:BB:V5G:UL:RGS`` \n
Snippet: ``value: int = driver.source.bb.v5G.uplink.get_rgs()`` \n
No help available
"""
response = self._core.io.query_str('SOURce<HwInstance>:BB:V5G:UL:RGS?')
return Conversions.str_to_int(response)
[docs]
def get_sf_selection(self) -> int:
"""
``[SOURce<HW>]:BB:V5G:UL:SFSelection`` \n
Snippet: ``value: int = driver.source.bb.v5G.uplink.get_sf_selection()`` \n
No help available
"""
response = self._core.io.query_str('SOURce<HwInstance>:BB:V5G:UL:SFSelection?')
return Conversions.str_to_int(response)
[docs]
def set_sf_selection(self, sub_frame_sel: int) -> None:
"""
``[SOURce<HW>]:BB:V5G:UL:SFSelection`` \n
Snippet: ``driver.source.bb.v5G.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:V5G:UL:SFSelection {param}')
[docs]
def get_soffset(self) -> int:
"""
``[SOURce<HW>]:BB:V5G:UL:SOFFset`` \n
Snippet: ``value: int = driver.source.bb.v5G.uplink.get_soffset()`` \n
No help available
"""
response = self._core.io.query_str('SOURce<HwInstance>:BB:V5G:UL:SOFFset?')
return Conversions.str_to_int(response)
[docs]
def set_soffset(self, sfn_offset: int) -> None:
"""
``[SOURce<HW>]:BB:V5G:UL:SOFFset`` \n
Snippet: ``driver.source.bb.v5G.uplink.set_soffset(sfn_offset = 1)`` \n
No help available
"""
param = Conversions.decimal_value_to_str(sfn_offset)
self._core.io.write(f'SOURce<HwInstance>:BB:V5G:UL:SOFFset {param}')
[docs]
def get_symbol_rate(self) -> float:
"""
``[SOURce<HW>]:BB:V5G:UL:SRATe`` \n
Snippet: ``value: float = driver.source.bb.v5G.uplink.get_symbol_rate()`` \n
No help available
"""
response = self._core.io.query_str('SOURce<HwInstance>:BB:V5G: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