Source code for RsSmw.Implementations.Source.Bb.C2K.Mstation.LcMask

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


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

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

[docs] def set(self, lc_mask: str, mobileStation=repcap.MobileStation.Default) -> None: """ ``[SOURce<HW>]:BB:C2K:MSTation<ST>:LCMask`` \n Snippet: ``driver.source.bb.c2K.mstation.lcMask.set(lc_mask = rawAbc, mobileStation = repcap.MobileStation.Default)`` \n Sets the mask of the Long Code Generator of the mobile station. :param lc_mask: 42 bits :param mobileStation: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Mstation') """ param = Conversions.value_to_str(lc_mask) mobileStation_cmd_val = self._cmd_group.get_repcap_cmd_value(mobileStation, repcap.MobileStation) self._core.io.write(f'SOURce<HwInstance>:BB:C2K:MSTation{mobileStation_cmd_val}:LCMask {param}')
[docs] def get(self, mobileStation=repcap.MobileStation.Default) -> str: """ ``[SOURce<HW>]:BB:C2K:MSTation<ST>:LCMask`` \n Snippet: ``value: str = driver.source.bb.c2K.mstation.lcMask.get(mobileStation = repcap.MobileStation.Default)`` \n Sets the mask of the Long Code Generator of the mobile station. :param mobileStation: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Mstation') :return: lc_mask: 42 bits """ mobileStation_cmd_val = self._cmd_group.get_repcap_cmd_value(mobileStation, repcap.MobileStation) response = self._core.io.query_str(f'SOURce<HwInstance>:BB:C2K:MSTation{mobileStation_cmd_val}:LCMask?') return trim_str_response(response)