Source code for RsSmw.Implementations.Source.Bb.LrWpan.SymbolRate

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class SymbolRateCls:
	"""
	| Commands in total: 1
	| Subgroups: 0
	| Direct child commands: 1
	"""

	def __init__(self, core: Core, parent):
		self._core = core
		self._cmd_group = CommandsGroup("symbolRate", core, parent)

[docs] def get_variation(self) -> float: """ ``[SOURce<HW>]:BB:LRWPan:SRATe:VARiation`` \n Snippet: ``value: float = driver.source.bb.lrWpan.symbolRate.get_variation()`` \n Sets the sample rate of the signal. A variation of this parameter affects the ARB clock rate; all other signal parameters remain unchanged. When changing values of the affecting parameters, the sample rate is reset. :return: sym_rate_var: float Range: 400 to 3.19488E10 """ response = self._core.io.query_str('SOURce<HwInstance>:BB:LRWPan:SRATe:VARiation?') return Conversions.str_to_float(response)
[docs] def set_variation(self, sym_rate_var: float) -> None: """ ``[SOURce<HW>]:BB:LRWPan:SRATe:VARiation`` \n Snippet: ``driver.source.bb.lrWpan.symbolRate.set_variation(sym_rate_var = 1.0)`` \n Sets the sample rate of the signal. A variation of this parameter affects the ARB clock rate; all other signal parameters remain unchanged. When changing values of the affecting parameters, the sample rate is reset. :param sym_rate_var: float Range: 400 to 3.19488E10 """ param = Conversions.decimal_value_to_str(sym_rate_var) self._core.io.write(f'SOURce<HwInstance>:BB:LRWPan:SRATe:VARiation {param}')