Source code for RsSmw.Implementations.Source.Bb.Gnss.Awgn.Rf.Frequency.Target

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


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

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

[docs] def set(self, cw_freq_offset: float, path=repcap.Path.Default) -> None: """ ``[SOURce<HW>]:BB:GNSS:AWGN:[RF<CH>]:FREQuency:TARGet`` \n Snippet: ``driver.source.bb.gnss.awgn.rf.frequency.target.set(cw_freq_offset = 1.0, path = repcap.Path.Default)`` \n Sets the frequency offset of the sine wave relative to the 'Reference Frequency'. :param cw_freq_offset: float Range: -250E6 to 250E6 :param path: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Rf') """ param = Conversions.decimal_value_to_str(cw_freq_offset) path_cmd_val = self._cmd_group.get_repcap_cmd_value(path, repcap.Path) self._core.io.write(f'SOURce<HwInstance>:BB:GNSS:AWGN:RF{path_cmd_val}:FREQuency:TARGet {param}')
[docs] def get(self, path=repcap.Path.Default) -> float: """ ``[SOURce<HW>]:BB:GNSS:AWGN:[RF<CH>]:FREQuency:TARGet`` \n Snippet: ``value: float = driver.source.bb.gnss.awgn.rf.frequency.target.get(path = repcap.Path.Default)`` \n Sets the frequency offset of the sine wave relative to the 'Reference Frequency'. :param path: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Rf') :return: cw_freq_offset: float Range: -250E6 to 250E6 """ path_cmd_val = self._cmd_group.get_repcap_cmd_value(path, repcap.Path) response = self._core.io.query_str(f'SOURce<HwInstance>:BB:GNSS:AWGN:RF{path_cmd_val}:FREQuency:TARGet?') return Conversions.str_to_float(response)