from .......Internal.Core import Core
from .......Internal.CommandsGroup import CommandsGroup
from .......Internal import Conversions
from ....... import repcap
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class FramesCls:
"""
| Commands in total: 1
| Subgroups: 0
| Direct child commands: 1
"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("frames", core, parent)
[docs]
def get(self, sfCfgIxNull=repcap.SfCfgIxNull.Default) -> int:
"""
``[SOURce<HW>]:BB:DVB:DVBR:SFConfig<CH0>:FRAMes`` \n
Snippet: ``value: int = driver.source.bb.dvb.dvbr.sfConfig.frames.get(sfCfgIxNull = repcap.SfCfgIxNull.Default)`` \n
Queries the numer of frames.
:param sfCfgIxNull: optional repeated capability selector. Default value: Nr0 (settable in the interface 'SfConfig')
:return: frames: integer Range: 1 to 10
"""
sfCfgIxNull_cmd_val = self._cmd_group.get_repcap_cmd_value(sfCfgIxNull, repcap.SfCfgIxNull)
response = self._core.io.query_str(f'SOURce<HwInstance>:BB:DVB:DVBR:SFConfig{sfCfgIxNull_cmd_val}:FRAMes?')
return Conversions.str_to_int(response)