Source code for RsSmbv.Implementations.Source.Bb.Gsm.Frame.Slot.SubChannel.User.Fcorrection.Fixed.Pattern

from typing import List

from ...........Internal.Core import Core
from ...........Internal.CommandsGroup import CommandsGroup
from ...........Internal.Types import DataType
from ...........Internal.StructBase import StructBase
from ...........Internal.ArgStruct import ArgStruct
from ...........Internal.ArgSingleList import ArgSingleList
from ...........Internal.ArgSingle import ArgSingle
from ........... import repcap


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class PatternCls: """Pattern commands group definition. 1 total commands, 0 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("pattern", core, parent)
[docs] def set(self, pattern: List[str], bitcount: int, frameIx=repcap.FrameIx.Default, slotNull=repcap.SlotNull.Default, subchannel=repcap.Subchannel.Default, userIx=repcap.UserIx.Default) -> None: """SCPI: [SOURce<HW>]:BB:GSM:[FRAMe<DI>]:SLOT<ST0>:[SUBChannel<US>]:[USER<CH>]:FCORrection:FIXed:PATTern \n Snippet: driver.source.bb.gsm.frame.slot.subChannel.user.fcorrection.fixed.pattern.set(pattern = ['rawAbc1', 'rawAbc2', 'rawAbc3'], bitcount = 1, frameIx = repcap.FrameIx.Default, slotNull = repcap.SlotNull.Default, subchannel = repcap.Subchannel.Default, userIx = repcap.UserIx.Default) \n Sets the bit pattern of the FIXED field for the Frequency Correction burst. The length is 142 bits. Superfluous bits are truncated on input. Missing bits are filled with 0. The command is valid only for the selection BB:GSM:SLOT:FCOR:FIX USER and for burst type selection BB:GSM:SLOT:TYPE FCOR. \n :param pattern: numeric :param bitcount: integer Range: 142 to 142 :param frameIx: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Frame') :param slotNull: optional repeated capability selector. Default value: Nr0 (settable in the interface 'Slot') :param subchannel: optional repeated capability selector. Default value: Nr1 (settable in the interface 'SubChannel') :param userIx: optional repeated capability selector. Default value: Nr1 (settable in the interface 'User') """ param = ArgSingleList().compose_cmd_string(ArgSingle.as_open_list('pattern', pattern, DataType.RawStringList, None), ArgSingle('bitcount', bitcount, DataType.Integer)) frameIx_cmd_val = self._cmd_group.get_repcap_cmd_value(frameIx, repcap.FrameIx) slotNull_cmd_val = self._cmd_group.get_repcap_cmd_value(slotNull, repcap.SlotNull) subchannel_cmd_val = self._cmd_group.get_repcap_cmd_value(subchannel, repcap.Subchannel) userIx_cmd_val = self._cmd_group.get_repcap_cmd_value(userIx, repcap.UserIx) self._core.io.write(f'SOURce<HwInstance>:BB:GSM:FRAMe{frameIx_cmd_val}:SLOT{slotNull_cmd_val}:SUBChannel{subchannel_cmd_val}:USER{userIx_cmd_val}:FCORrection:FIXed:PATTern {param}'.rstrip())
# noinspection PyTypeChecker
[docs] class PatternStruct(StructBase): """Response structure. Fields: \n - Pattern: List[str]: numeric - Bitcount: int: integer Range: 142 to 142""" __meta_args_list = [ ArgStruct('Pattern', DataType.RawStringList, None, False, True, 1), ArgStruct.scalar_int('Bitcount')] def __init__(self): StructBase.__init__(self, self) self.Pattern: List[str] = None self.Bitcount: int = None
[docs] def get(self, frameIx=repcap.FrameIx.Default, slotNull=repcap.SlotNull.Default, subchannel=repcap.Subchannel.Default, userIx=repcap.UserIx.Default) -> PatternStruct: """SCPI: [SOURce<HW>]:BB:GSM:[FRAMe<DI>]:SLOT<ST0>:[SUBChannel<US>]:[USER<CH>]:FCORrection:FIXed:PATTern \n Snippet: value: PatternStruct = driver.source.bb.gsm.frame.slot.subChannel.user.fcorrection.fixed.pattern.get(frameIx = repcap.FrameIx.Default, slotNull = repcap.SlotNull.Default, subchannel = repcap.Subchannel.Default, userIx = repcap.UserIx.Default) \n Sets the bit pattern of the FIXED field for the Frequency Correction burst. The length is 142 bits. Superfluous bits are truncated on input. Missing bits are filled with 0. The command is valid only for the selection BB:GSM:SLOT:FCOR:FIX USER and for burst type selection BB:GSM:SLOT:TYPE FCOR. \n :param frameIx: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Frame') :param slotNull: optional repeated capability selector. Default value: Nr0 (settable in the interface 'Slot') :param subchannel: optional repeated capability selector. Default value: Nr1 (settable in the interface 'SubChannel') :param userIx: optional repeated capability selector. Default value: Nr1 (settable in the interface 'User') :return: structure: for return value, see the help for PatternStruct structure arguments.""" frameIx_cmd_val = self._cmd_group.get_repcap_cmd_value(frameIx, repcap.FrameIx) slotNull_cmd_val = self._cmd_group.get_repcap_cmd_value(slotNull, repcap.SlotNull) subchannel_cmd_val = self._cmd_group.get_repcap_cmd_value(subchannel, repcap.Subchannel) userIx_cmd_val = self._cmd_group.get_repcap_cmd_value(userIx, repcap.UserIx) return self._core.io.query_struct(f'SOURce<HwInstance>:BB:GSM:FRAMe{frameIx_cmd_val}:SLOT{slotNull_cmd_val}:SUBChannel{subchannel_cmd_val}:USER{userIx_cmd_val}:FCORrection:FIXed:PATTern?', self.__class__.PatternStruct())