Source code for RsSmbv.Implementations.Source.Bb.Tdscdma.Crate

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class CrateCls: """Crate commands group definition. 2 total commands, 0 Subgroups, 2 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("crate", core, parent)
[docs] def get_variation(self) -> float: """SCPI: [SOURce<HW>]:BB:TDSCdma:CRATe:VARiation \n Snippet: value: float = driver.source.bb.tdscdma.crate.get_variation() \n Sets the output chip rate. The output chip rate changes the output clock and the modulation bandwidth, as well as the synchronization signals that are output. It does not affect the calculated chip sequence. \n :return: variation: float Range: 400 to 5E6, Unit: Hz (c/s) """ response = self._core.io.query_str('SOURce<HwInstance>:BB:TDSCdma:CRATe:VARiation?') return Conversions.str_to_float(response)
[docs] def set_variation(self, variation: float) -> None: """SCPI: [SOURce<HW>]:BB:TDSCdma:CRATe:VARiation \n Snippet: driver.source.bb.tdscdma.crate.set_variation(variation = 1.0) \n Sets the output chip rate. The output chip rate changes the output clock and the modulation bandwidth, as well as the synchronization signals that are output. It does not affect the calculated chip sequence. \n :param variation: float Range: 400 to 5E6, Unit: Hz (c/s) """ param = Conversions.decimal_value_to_str(variation) self._core.io.write(f'SOURce<HwInstance>:BB:TDSCdma:CRATe:VARiation {param}')
# noinspection PyTypeChecker
[docs] def get_value(self) -> enums.TdscdmaChipRate: """SCPI: [SOURce<HW>]:BB:TDSCdma:CRATe \n Snippet: value: enums.TdscdmaChipRate = driver.source.bb.tdscdma.crate.get_value() \n Queries the system chip rate. The output chip rate which determines the rate of the spread symbols as is used for signal output can be set with the command SOUR:BB:TDSC:CRAT:VAR. \n :return: crate: R1M28 """ response = self._core.io.query_str('SOURce<HwInstance>:BB:TDSCdma:CRATe?') return Conversions.str_to_scalar_enum(response, enums.TdscdmaChipRate)