Source code for RsSmw.Implementations.Source.Bb.Dvb.Dvbr.SfConfig.FrConfig.Offset

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class OffsetCls: """Offset commands group definition. 1 total commands, 0 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("offset", core, parent)
[docs] def set(self, offset: float, sfCfgIxNull=repcap.SfCfgIxNull.Default, frCfgIxNull=repcap.FrCfgIxNull.Default) -> None: """SCPI: [SOURce<HW>]:BB:DVB:DVBR:SFConfig<CH0>:FRConfig<ST0>:OFFSet \n Snippet: driver.source.bb.dvb.dvbr.sfConfig.frConfig.offset.set(offset = 1.0, sfCfgIxNull = repcap.SfCfgIxNull.Default, frCfgIxNull = repcap.FrCfgIxNull.Default) \n Sets the frequency offset for the selected frame, relative to the center frequency of the super frame. \n :param offset: float Range: -2E8 to 2E8 :param sfCfgIxNull: optional repeated capability selector. Default value: Nr0 (settable in the interface 'SfConfig') :param frCfgIxNull: optional repeated capability selector. Default value: Nr0 (settable in the interface 'FrConfig') """ param = Conversions.decimal_value_to_str(offset) sfCfgIxNull_cmd_val = self._cmd_group.get_repcap_cmd_value(sfCfgIxNull, repcap.SfCfgIxNull) frCfgIxNull_cmd_val = self._cmd_group.get_repcap_cmd_value(frCfgIxNull, repcap.FrCfgIxNull) self._core.io.write(f'SOURce<HwInstance>:BB:DVB:DVBR:SFConfig{sfCfgIxNull_cmd_val}:FRConfig{frCfgIxNull_cmd_val}:OFFSet {param}')
[docs] def get(self, sfCfgIxNull=repcap.SfCfgIxNull.Default, frCfgIxNull=repcap.FrCfgIxNull.Default) -> float: """SCPI: [SOURce<HW>]:BB:DVB:DVBR:SFConfig<CH0>:FRConfig<ST0>:OFFSet \n Snippet: value: float = driver.source.bb.dvb.dvbr.sfConfig.frConfig.offset.get(sfCfgIxNull = repcap.SfCfgIxNull.Default, frCfgIxNull = repcap.FrCfgIxNull.Default) \n Sets the frequency offset for the selected frame, relative to the center frequency of the super frame. \n :param sfCfgIxNull: optional repeated capability selector. Default value: Nr0 (settable in the interface 'SfConfig') :param frCfgIxNull: optional repeated capability selector. Default value: Nr0 (settable in the interface 'FrConfig') :return: offset: float Range: -2E8 to 2E8""" sfCfgIxNull_cmd_val = self._cmd_group.get_repcap_cmd_value(sfCfgIxNull, repcap.SfCfgIxNull) frCfgIxNull_cmd_val = self._cmd_group.get_repcap_cmd_value(frCfgIxNull, repcap.FrCfgIxNull) response = self._core.io.query_str(f'SOURce<HwInstance>:BB:DVB:DVBR:SFConfig{sfCfgIxNull_cmd_val}:FRConfig{frCfgIxNull_cmd_val}:OFFSet?') return Conversions.str_to_float(response)