Source code for RsSmw.Implementations.Source.Bb.Lora.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:LORA:SRATe:VARiation`` \n Snippet: ``value: float = driver.source.bb.lora.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: variation: float Range: 4E2 to 20E6 """ response = self._core.io.query_str('SOURce<HwInstance>:BB:LORA:SRATe:VARiation?') return Conversions.str_to_float(response)
[docs] def set_variation(self, variation: float) -> None: """ ``[SOURce<HW>]:BB:LORA:SRATe:VARiation`` \n Snippet: ``driver.source.bb.lora.symbolRate.set_variation(variation = 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 variation: float Range: 4E2 to 20E6 """ param = Conversions.decimal_value_to_str(variation) self._core.io.write(f'SOURce<HwInstance>:BB:LORA:SRATe:VARiation {param}')