from .........Internal.Core import Core
from .........Internal.CommandsGroup import CommandsGroup
from .........Internal import Conversions
from ......... import repcap
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class CfOffsetCls:
"""
| Commands in total: 1
| Subgroups: 0
| Direct child commands: 1
"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("cfOffset", core, parent)
[docs]
def set(self, cf_offset: int, channel=repcap.Channel.Default) -> None:
"""
``[SOURce<HW>]:BB:BTOoth:DTTest:TABLe:LONG:SET<CH>:CFOFfset`` \n
Snippet: ``driver.source.bb.btooth.dtTest.table.long.set.cfOffset.set(cf_offset = 1, channel = repcap.Channel.Default)`` \n
Sets a carrier frequency offset. The carrier frequency offset shows the deviation of the transmitted initial center
frequency from carrier frequency.
:param cf_offset: integer Range: -150 to 150, Unit: kHz
:param channel: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Set')
"""
param = Conversions.decimal_value_to_str(cf_offset)
channel_cmd_val = self._cmd_group.get_repcap_cmd_value(channel, repcap.Channel)
self._core.io.write(f'SOURce<HwInstance>:BB:BTOoth:DTTest:TABLe:LONG:SET{channel_cmd_val}:CFOFfset {param}')
[docs]
def get(self, channel=repcap.Channel.Default) -> int:
"""
``[SOURce<HW>]:BB:BTOoth:DTTest:TABLe:LONG:SET<CH>:CFOFfset`` \n
Snippet: ``value: int = driver.source.bb.btooth.dtTest.table.long.set.cfOffset.get(channel = repcap.Channel.Default)`` \n
Sets a carrier frequency offset. The carrier frequency offset shows the deviation of the transmitted initial center
frequency from carrier frequency.
:param channel: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Set')
:return: cf_offset: integer Range: -150 to 150, Unit: kHz
"""
channel_cmd_val = self._cmd_group.get_repcap_cmd_value(channel, repcap.Channel)
response = self._core.io.query_str(f'SOURce<HwInstance>:BB:BTOoth:DTTest:TABLe:LONG:SET{channel_cmd_val}:CFOFfset?')
return Conversions.str_to_int(response)