Source code for RsSmw.Implementations.Source.Bbin.Channel.SymbolRate

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


# 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 set(self, bbin_iq_hs_ch_sa_rat: float, channelNull=repcap.ChannelNull.Default) -> None: """ ``[SOURce<HW>]:BBIN:CHANnel<CH0>:SRATe`` \n Snippet: ``driver.source.bbin.channel.symbolRate.set(bbin_iq_hs_ch_sa_rat = 1.0, channelNull = repcap.ChannelNull.Default)`` \n Queries the sample rate per channel. :param bbin_iq_hs_ch_sa_rat: float Range: 400 to 250E6 ('System Config Mode = Advanced') /1250E6 ('System Config Mode = Standard') See also 'Supported digital interfaces and system configuration'. :param channelNull: optional repeated capability selector. Default value: Nr0 (settable in the interface 'Channel') """ param = Conversions.decimal_value_to_str(bbin_iq_hs_ch_sa_rat) channelNull_cmd_val = self._cmd_group.get_repcap_cmd_value(channelNull, repcap.ChannelNull) self._core.io.write(f'SOURce<HwInstance>:BBIN:CHANnel{channelNull_cmd_val}:SRATe {param}')
[docs] def get(self, channelNull=repcap.ChannelNull.Default) -> float: """ ``[SOURce<HW>]:BBIN:CHANnel<CH0>:SRATe`` \n Snippet: ``value: float = driver.source.bbin.channel.symbolRate.get(channelNull = repcap.ChannelNull.Default)`` \n Queries the sample rate per channel. :param channelNull: optional repeated capability selector. Default value: Nr0 (settable in the interface 'Channel') :return: bbin_iq_hs_ch_sa_rat: float Range: 400 to 250E6 ('System Config Mode = Advanced') /1250E6 ('System Config Mode = Standard') See also 'Supported digital interfaces and system configuration'. """ channelNull_cmd_val = self._cmd_group.get_repcap_cmd_value(channelNull, repcap.ChannelNull) response = self._core.io.query_str(f'SOURce<HwInstance>:BBIN:CHANnel{channelNull_cmd_val}:SRATe?') return Conversions.str_to_float(response)