from .......Internal.Core import Core
from .......Internal.CommandsGroup import CommandsGroup
from .......Internal import Conversions
from .......Internal.Utilities import trim_str_response
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class SrsCls:
"""Srs commands group definition. 6 total commands, 0 Subgroups, 6 group commands"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("srs", core, parent)
[docs] def get_ans_tx(self) -> bool:
"""SCPI: [SOURce<HW>]:BB:V5G:UL:REFSig:SRS:ANSTx \n
Snippet: value: bool = driver.source.bb.v5G.uplink.refsig.srs.get_ans_tx() \n
No command help available \n
:return: an_srs_sim_tx_state: No help available
"""
response = self._core.io.query_str('SOURce<HwInstance>:BB:V5G:UL:REFSig:SRS:ANSTx?')
return Conversions.str_to_bool(response)
[docs] def set_ans_tx(self, an_srs_sim_tx_state: bool) -> None:
"""SCPI: [SOURce<HW>]:BB:V5G:UL:REFSig:SRS:ANSTx \n
Snippet: driver.source.bb.v5G.uplink.refsig.srs.set_ans_tx(an_srs_sim_tx_state = False) \n
No command help available \n
:param an_srs_sim_tx_state: No help available
"""
param = Conversions.bool_to_str(an_srs_sim_tx_state)
self._core.io.write(f'SOURce<HwInstance>:BB:V5G:UL:REFSig:SRS:ANSTx {param}')
[docs] def get_csrs(self) -> int:
"""SCPI: [SOURce<HW>]:BB:V5G:UL:REFSig:SRS:CSRS \n
Snippet: value: int = driver.source.bb.v5G.uplink.refsig.srs.get_csrs() \n
No command help available \n
:return: csrs: No help available
"""
response = self._core.io.query_str('SOURce<HwInstance>:BB:V5G:UL:REFSig:SRS:CSRS?')
return Conversions.str_to_int(response)
[docs] def set_csrs(self, csrs: int) -> None:
"""SCPI: [SOURce<HW>]:BB:V5G:UL:REFSig:SRS:CSRS \n
Snippet: driver.source.bb.v5G.uplink.refsig.srs.set_csrs(csrs = 1) \n
No command help available \n
:param csrs: No help available
"""
param = Conversions.decimal_value_to_str(csrs)
self._core.io.write(f'SOURce<HwInstance>:BB:V5G:UL:REFSig:SRS:CSRS {param}')
[docs] def get_dsfc(self) -> str:
"""SCPI: [SOURce<HW>]:BB:V5G:UL:REFSig:SRS:DSFC \n
Snippet: value: str = driver.source.bb.v5G.uplink.refsig.srs.get_dsfc() \n
No command help available \n
:return: delta_sfc: No help available
"""
response = self._core.io.query_str('SOURce<HwInstance>:BB:V5G:UL:REFSig:SRS:DSFC?')
return trim_str_response(response)
[docs] def get_mu_pts(self) -> bool:
"""SCPI: [SOURce<HW>]:BB:V5G:UL:REFSig:SRS:MUPTs \n
Snippet: value: bool = driver.source.bb.v5G.uplink.refsig.srs.get_mu_pts() \n
No command help available \n
:return: max_up_pts: No help available
"""
response = self._core.io.query_str('SOURce<HwInstance>:BB:V5G:UL:REFSig:SRS:MUPTs?')
return Conversions.str_to_bool(response)
[docs] def set_mu_pts(self, max_up_pts: bool) -> None:
"""SCPI: [SOURce<HW>]:BB:V5G:UL:REFSig:SRS:MUPTs \n
Snippet: driver.source.bb.v5G.uplink.refsig.srs.set_mu_pts(max_up_pts = False) \n
No command help available \n
:param max_up_pts: No help available
"""
param = Conversions.bool_to_str(max_up_pts)
self._core.io.write(f'SOURce<HwInstance>:BB:V5G:UL:REFSig:SRS:MUPTs {param}')
[docs] def get_su_configuration(self) -> int:
"""SCPI: [SOURce<HW>]:BB:V5G:UL:REFSig:SRS:SUConfiguration \n
Snippet: value: int = driver.source.bb.v5G.uplink.refsig.srs.get_su_configuration() \n
No command help available \n
:return: sub_frame_config: No help available
"""
response = self._core.io.query_str('SOURce<HwInstance>:BB:V5G:UL:REFSig:SRS:SUConfiguration?')
return Conversions.str_to_int(response)
[docs] def set_su_configuration(self, sub_frame_config: int) -> None:
"""SCPI: [SOURce<HW>]:BB:V5G:UL:REFSig:SRS:SUConfiguration \n
Snippet: driver.source.bb.v5G.uplink.refsig.srs.set_su_configuration(sub_frame_config = 1) \n
No command help available \n
:param sub_frame_config: No help available
"""
param = Conversions.decimal_value_to_str(sub_frame_config)
self._core.io.write(f'SOURce<HwInstance>:BB:V5G:UL:REFSig:SRS:SUConfiguration {param}')
[docs] def get_tsfc(self) -> str:
"""SCPI: [SOURce<HW>]:BB:V5G:UL:REFSig:SRS:TSFC \n
Snippet: value: str = driver.source.bb.v5G.uplink.refsig.srs.get_tsfc() \n
No command help available \n
:return: tsfc: No help available
"""
response = self._core.io.query_str('SOURce<HwInstance>:BB:V5G:UL:REFSig:SRS:TSFC?')
return trim_str_response(response)