Source code for RsSmw.Implementations.Source.Bb.Wlnn.Fblock.Guard

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


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

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

[docs] def set(self, guard: enums.WlannFbGuard, frameBlock=repcap.FrameBlock.Default) -> None: """ ``[SOURce<HW>]:BB:WLNN:FBLock<CH>:GUARd`` \n Snippet: ``driver.source.bb.wlnn.fblock.guard.set(guard = enums.WlannFbGuard.GD08, frameBlock = repcap.FrameBlock.Default)`` \n Selects which guard interval is used for the OFDM guard. In physical mode green field or legacy, only long guard intervals are possible. In this case, the field is read-only. GD08, GD16 and GD32 are available only for the IEEE 802. 11ax standard. :param guard: SHORt | LONG | GD08 | GD16 | GD32 :param frameBlock: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Fblock') """ param = Conversions.enum_scalar_to_str(guard, enums.WlannFbGuard) frameBlock_cmd_val = self._cmd_group.get_repcap_cmd_value(frameBlock, repcap.FrameBlock) self._core.io.write(f'SOURce<HwInstance>:BB:WLNN:FBLock{frameBlock_cmd_val}:GUARd {param}')
# noinspection PyTypeChecker
[docs] def get(self, frameBlock=repcap.FrameBlock.Default) -> enums.WlannFbGuard: """ ``[SOURce<HW>]:BB:WLNN:FBLock<CH>:GUARd`` \n Snippet: ``value: enums.WlannFbGuard = driver.source.bb.wlnn.fblock.guard.get(frameBlock = repcap.FrameBlock.Default)`` \n Selects which guard interval is used for the OFDM guard. In physical mode green field or legacy, only long guard intervals are possible. In this case, the field is read-only. GD08, GD16 and GD32 are available only for the IEEE 802. 11ax standard. :param frameBlock: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Fblock') :return: guard: SHORt | LONG | GD08 | GD16 | GD32 """ frameBlock_cmd_val = self._cmd_group.get_repcap_cmd_value(frameBlock, repcap.FrameBlock) response = self._core.io.query_str(f'SOURce<HwInstance>:BB:WLNN:FBLock{frameBlock_cmd_val}:GUARd?') return Conversions.str_to_scalar_enum(response, enums.WlannFbGuard)